Remove all category in magento
We can use the following steps to clear the all category for magento by running the sql query. Source : https://gist.github.com/jklance/9664371
Magento related post
We can use the following steps to clear the all category for magento by running the sql query. Source : https://gist.github.com/jklance/9664371
Here’s how to convert passwords from plain text to the alghorithm used by Magento. This can result useful when you need to import users from an external application which was managing passwords with no encryption. So, let’s assume we already imported the customers from magento import tool and they can’t login because their password don’t …
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/
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 »
If we need to add increments in the quantity then we can follow the below simple method . First of all we need to add the jQuery code. Add the following to one of your jQuery js files (or create a new one if that’s your thing). Then Move the file app/design/frontend/base/default/template/catalog/product/view/addtocart.phtml into your theme …
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/
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
I got “Error: 404 Not Found” when transfered my magento installation from one local machine server to another. Now, I cannot login to admin panel and I got “Error: 404 Not Found” The reason for this error is that store_id and website_id for admin should be set to 0 (zero). But, when you import database …
“Error 404 Not Found” in Magento Admin Login Page Read More »
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 »
Just Rename your .htaccess file inside the /media directory to .htaccess–. This will disable wrong .htaccess rules and absolutely resolve your image issue. cd /media/ mv .htaccess .htaccess– Source: http://www.itwebsupport.com/blog/godaddy-magento-product-images-issue-500-internal-server-error