Magento Product Attachments

ome products such as electronics, software, appliances, etc, might have electronic user guides, license agreements, and more. Magento Product Attachments will enable you to upload and associate these files with products, so that your customers can download them. The extension is very simple to use. Attachments can be categorized and can be restricted by user … Read more

Stopping Spam in Magento

pam is very annoying. Unfortunately, running a popular platform like Magento will make your store vulnerable to spam as bots exist that target Magento store. The biggest problem with spam is that it requires you to filter reviewed, support emails, etc, which wastes your time. Fortunately, we have a couple Magento extensions that can reduce … Read more

Update Product Inventory Programmatically in Magento

sing our Magento product grid extension or Magento bulk product editing extension can make it easy to update product information. However, sometimes you need ultimate flexibility that is only possible with a script. If you need to update product inventory programmatically you can use the following: $productId = 169; $stockItem = Mage::getModel(‘cataloginventory/stock_item’)->loadByProduct($productId); if ($stockItem->getId() > … Read more

Fixing Magento “Service Temporarily Unavailable” error

ometimes Magento will display a “Service Temporarily Unavailable” message. The message will look like the following: The most common cause of this issue is a file located at [Magento root]/maintenance.flag. If this file exists, then Magento will display this message. The purpose of the file is to put the store into maintenance mode when doing … Read more