Magento

Magento related post

Reduce magento database size

Sometime we may face the problem of huge database size even after all product is deleted. Run the following code in the sql, Sometime we may get error so try to run code one by one. And enable cache for folder only not for database during installation. Source : http://www.tipsaid.com/reduce-magento-database-size/

search by category

Magento Adding search by category in advance search

Sometime we may need to change the options provided by the magento by default. Here are dealing with adding the “Search By Category” in the advance search page. For this case we need to change in the followinf files ➣ app/code/core/Mage/CatalogSearch/Block/Advanced/Form.php ➣ app/code/core/Mage/CatalogSearch/Model/Advanced.php ➣ app/design/yourdesign/yourdesign/template/catalogsearch/advanced/form.phtml At the very end of app/code/core/Mage/CatalogSearch/Block/Advanced/Form.php (before the closing brace), …

Magento Adding search by category in advance search Read More »

Magento – Display Address Fields on Create an Account

By default Magento doesnt show the address fields within “Create an Account”. To make the sign up process more user friendly you can enable the address fields by adding the following: Simple way to show that is to add the below code in customer.xml or in local.xml Source : http://www.pauldonnelly.net/magento-display-address-fields-in-create-an-account/

Customer cannot login to magento 1.8.1.0

Using the free theme sometime may result  of customer not logged in problem issue. To resolve this issue we need to put the for key field in the login form. In app/design/frontend/default/…/template/persistent/customer/form/login.phtml , around line 41 should look like If the code is not seen then add it then customer login works

Magento no input file specified error in Godaddy Hosting

A common error, which usually comes up if you’re hosted by GoDaddy, is the no input file specified error. Try this first: add this to your .htaccess file RewriteEngine On RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-f RewriteRule ^.+.php$ /bogusfile Then try to reload your setup page. If you do not have Magento setup in the root of your …

Magento no input file specified error in Godaddy Hosting Read More »