cancel
Showing results for 
Search instead for 
Did you mean: 

Config Page Blank After Compilation

   Did you know you can see the translated content as per your choice?

Translation is in progress. Please check again after few minutes.

Config Page Blank After Compilation

Hi All,

 

My configuration page goes blank after I run the compilation and enable it.

So far I've tried:

 

 - Turning each community module off then running the compilation and reloading the config page.

 - Set <disable_local_modules> to true - recompiled and reloaded config.

 

Both of the above did not work at all.

 

Any one got any ideas or had a similar problem?

I'm running 1.9.0.1

 

Thanks!

1 REPLY 1

Re: Config Page Blank After Compilation

If you have shell access then run below command:

 

php shell/compiler.php disable

 

Otherwise comment out the two define function calls in includes/config.php path

 

#define('COMPILER_COLLECT_PATH', dirname(__FILE__).DIRECTORY_SEPARATOR.'stat');
#define('COMPILER_INCLUDE_PATH', dirname(__FILE__).DIRECTORY_SEPARATOR.'src');

And check index.php in your magento root directory and comment out the following line if uncommented:

 

/**
* Compilation includes configuration file
*/
/**#$compilerConfig = ‘includes/config.php';
#if (file_exists($compilerConfig)) {
include $compilerConfig;
#} */


Hope it helps you Smiley Happy

 

-
Magento Programmer | Was my answer helpful? You can accept it as a solution.