Goodday everyone,
I installed magento with the sample data I refreshed the page and everything seemed to work. My complete shop was filled with sample data. A couple
Check out the permission problem, Mage.php may not have the right to load the class 'Varien_Autoload'. http://www.magentocommerce.com/wiki/groups/227/resetting_file_permissions
This error occurs because of the lib
folder is not in the include_path
. This may happen only if the COMPILER_INCLUDE_PATH
constant is defined. Most likely this constant is defined in the includes/config.php
file.
I have the same problem, I did following steps and now it is working :)
Check Compilation mode is disabled or not in include/config.php
file. if not then edit and make sure these two lines should be same as written below :-
#define('COMPILER_INCLUDE_PATH',dirname(__FILE__).DIRECTORY_SEPARATOR.'src');
#define('COMPILER_COLLECT_PATH',dirname(__FILE__).DIRECTORY_SEPARATOR.'stat');
Flush magento cache Storage
sudo rm -rf var/cache/*
Set Correct Permission
sudo chmod -R 755 *
Restart the Webserver (apache/nginx)
Now Verify.