Posts tagged not
Magento fix: while trying to access connect Fatal error: Class Exception not found in Frontend.php on line 90
0Essentially you need to edit the level of error reporting to supress php from throwing this error.
so..
index.php
change
error_reporting(E_ALL | E_STRICT);
to
error_reporting(E_ALL & E_STRICT & ~E_DEPRECATED);
In
lib/Varien/Pear.php
error_reporting(E_ALL & ~E_NOTICE);
to
error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED);
4> downloader/Maged/Pear.php
error_reporting(E_ALL & ~E_NOTICE);
to
error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED);
Magento tip : Fatal error: Class ‘xxxxx’ not found in pathto/httpdocs/app/ Mage.php on line 520
0We have seen this problem listed on just about every magento forum and blog.. Then we hit the error on one of our stores.
Essentially, you install a new module either from command line or Connect and immediately the site starts to throw this error either in backend or front or both.
The simple answer is to turn off compilation.. then install your module and re-run compilation.
Very annoying…
Magento hint : css / js / javascritp files trying to show as absolute server paths
0Essentially you need to tell your installation not to merge javascirpt or css. Turnign this off will allow you to try again. Either try and make sense of the non-css non-javascript backend to get to the developer section under system > config or use the phpmyadmin to alter the settings in core-config-data table.

Recent Comments