You Are Here: Home » Magento Installation

Everything about magento installation

How to do when admin login not working after Magento Upgrade

Hi everybody, today we will continue with new magento tutorial. This's only a short tip but it will support you in installation magento. If you have recently upgraded your Magento store and you are not able to login to your admin panel, that means the database has got messed up a bit. Here is the fix. Goto phpmyadmin and run this command : SET FOREIGN_KEY_CHECKS=0; UPDATE `core_store` SET store_id = 0 WHERE ...

Read more

Change Image Sizes in Magento Product List or Grid View

Magento product listing and grid listing has a fixed product image, which is not changeable from the backend. You will need to edit the phtml file to get it to your required size. Here is how to do it. Step 1: To change image sizes in Product List or Grid Views go to: app/design/frontend/template/catalog/product/list.phtml and edit the following in list.phtml: <ul class="products-grid"> <?php endif ...

Read more

Filter product collection by multiple categories in Magento

During the past week I’ve dealed with a very weird and stressing thing with my colleagues: filtering a product collection by multiple categories in Magento. Filter by only 1 category Magento offers a type of filter that can be used directly from the collection: $_category = Mage::getModel('catalog/category')->load($category_id);   $collection->addCategoryFilter($_category); Filter by 2 or more categor ...

Read more

A Magento File Custom Option Type Primer

In the following example we are going to take a simple product and add a file option to it to see how the file is being handled by the system. Our test product is “The Get Up Kids: Band Camp Pullover Hoodie (Shirts T)” from the Magento sample data . Its SKU is 4fasd5f5. We would like to allow customers to upload an image file to be printed on the shirt. Open this product in the back-end and switch to the Cu ...

Read more
Scroll to top