Jump to content

My front page and administrator page displays config.inc.php file


Recommended Posts

I have hosted a site and this displays error of config.inc file in front page as well as administrator login page. 

 

any solution will be great appreciated.

 

@ini_set('display_errors', 'off');define('_PS_DEBUG_SQL_', false);$start_time = microtime(true);/* Compatibility warning */define('_PS_DISPLAY_COMPATIBILITY_WARNING_', false);/* SSL configuration */define('_PS_SSL_PORT_', 443);/* Improve PHP configuration to prevent issues */ini_set('upload_max_filesize', '100M');ini_set('default_charset', 'utf-8');ini_set('magic_quotes_runtime', 0);// correct Apache charset (except if it's too lateif(!headers_sent()) header('Content-Type: text/html; charset=utf-8');/* No settings file? goto installer...*/if (!file_exists(dirname(__FILE__).'/settings.inc.php')){ $dir = ((is_dir($_SERVER['REQUEST_URI']) OR substr($_SERVER['REQUEST_URI'], -1) == '/') ? $_SERVER['REQUEST_URI'] : dirname($_SERVER['REQUEST_URI']).'/'); if(!file_exists(dirname(__FILE__).'/../install')) die('Error: \'install\' directory is missing'); header('Location: install/'); exit;}require_once(dirname(__FILE__).'/settings.inc.php');/* Include all defines */require_once(dirname(__FILE__).'/defines.inc.php');if (!defined('_PS_MAGIC_QUOTES_GPC_')) define('_PS_MAGIC_QUOTES_GPC_',get_magic_quotes_gpc());if (!defined('_PS_MODULE_DIR_')) define('_PS_MODULE_DIR_',_PS_ROOT_DIR_.'/modules/');if (!defined('_PS_MYSQL_REAL_ESCAPE_STRING_')) define('_PS_MYSQL_REAL_ESCAPE_STRING_', function_exists('mysql_real_escape_string'));/* Autoload */require_once(dirname(__FILE__).'/autoload.php');/* Redefine REQUEST_URI if empty (on some webservers...) */if (!isset($_SERVER['REQUEST_URI']) OR empty($_SERVER['REQUEST_URI'])){ if (substr($_SERVER['SCRIPT_NAME'], -9) == 'index.php') $_SERVER['REQUEST_URI'] = dirname($_SERVER['SCRIPT_NAME']).'/'; else { $_SERVER['REQUEST_URI'] = $_SERVER['SCRIPT_NAME']; if (isset($_SERVER['QUERY_STRING']) AND !empty($_SERVER['QUERY_STRING'])) $_SERVER['REQUEST_URI'] .= '?'.$_SERVER['QUERY_STRING']; [spam-filter]/* aliases */function p($var) { return (Tools::P($var));}function d($var) { Tools::D($var);}function ppp($var) { return (Tools::P($var));}function ddd($var) { Tools::D($var);}global $_MODULES;$_MODULES = array();/* Load all configuration keys */Configuration::loadConfiguration();/* Load all language definitions */Language::loadLanguages();/* It is not safe to rely on the system's timezone settings, and this would generate a PHP Strict Standards notice. */if (function_exists('date_default_timezone_set')) @date_default_timezone_set(Configuration::get('PS_TIMEZONE'));/* Smarty */require_once(dirname(__FILE__).'/smarty.config.inc.php');/* Possible value are true, false, 'URL' (for 'URL' append SMARTY_DEBUG as a parameter to the url) default is false for production environment */define('SMARTY_DEBUG_CONSOLE', false);

 

 

 

 

 

Link to comment
Share on other sites

can you provide more information about how you hosted? is it a fresh installation? did you move the site to another server? or what excactely? and any other helpful info like PS version...

thank you

  • Like 1
Link to comment
Share on other sites

Firstly, I thank you so much walidon for replying.

We have changed the hosting server where domain is on godaddy, and next,  I have solved the error, ultimately by replacing the config folder. Then set right all settings.php file. later it worked. But i did not get the real root cause, for what happened and why? the reason behind this is still not known..? :)

Link to comment
Share on other sites

good to hear that:) sometimes errors happen! nothing is for granted! files and scripts are linked together and there is a DB too, traffic and requests:) sometimes even a human being needs some order:)

 

anyway, can you mark the topic as solved:) if you don't know how see my signature.

thank you and happy selling

  • Like 1
Link to comment
Share on other sites

×
×
  • Create New...