In this Tutorial, i am explaining you some magento issues those you will face sometime while new installation of magento on localhost or on server.
Issues are written below with high level solution: -
1). Back-end gets disabled and blue screen appear when flush cache in magento after installing sample data with fresh installation.
Shows error : catalog_product_price table already exist in DB
Solution:
1) Drop the current database of new installation.
2) install the sample data file again in to database
3) delete local.XML file from app/etc folder in root directory
4) clean the cache from the var folder
5) Refresh the front-end page , then it will show the installation of magento
6) proceed with that with the same DB name and its will all set to go
2) Footer and others link show, 404 error when open it, or all the tabs shows link not found on the server on Localhost or on live server.
Solution :
1) Enable the rewrite_module in the Apache tab , under Apache modules
Just click on the rewrite_module and then restart the Wamp server.
3) Backend doesn’t open in chrome while works on the firefox
Solution : Go to File at this location :- app\code\core\Mage\Core\Model\Session\Abstract\Varien.php
There comment the following lines of code :
// session cookie params $cookieParams = array( 'lifetime' => $cookie->getLifetime(), 'path' => $cookie->getPath(), 'domain' => $cookie->getConfigDomain(), 'secure' => $cookie->isSecure(), 'httponly' => $cookie->getHttponly() );
You Might Also Read : -
- How to Send Bulk Emails in java Technology.
- How to Check all Checkboxes by clicking one checkbox.
- How to Completely Disable cache for PHP project.
- How to Send data using Ajax and JavaScript into database.
0 comments :
Post a Comment