Secure Magento admin login with two-factor authentication

wo-Factor Authentication is a great way to secure your Magento admin area. Imagine if a hacker or someone else gains access to your backend? Not only could they destroy data and harass customers, but they could steal valuable business data and the end result could be customers lose confidence in your store. The best two … Read more

Magento Image Optimization

agento Image Optimization is an important performance enhancement that will speed up your Magento page load time. The easiest way to optimize all your Magento images without affecting your existing images is to use the Magento Image Optimization extension for Magento. Why and when is image optimization important in Magento? Image optimization affects every single … Read more

Magento “Can’t get filling percentage” memcached issue

ome Magento store admins report that Magento is returning this exception when using memcached as a backend for either the Magento cache or the Magento Full Page Cache. This issue has its roots in the Zend Framework which returns this exception if memcache fails to return its extended stats. To resolve this is fairly simple. … Read more

Magento Collection Filter by Visible Products

f you are working on a custom project you might want to create a custom block and only show products that are visible. To do this is actually very simple in Magento. All you need to do is use the following code: $collection = Mage::getModel(‘catalog/product’)->getCollection()->addAttributeToSelect(‘*’); $collection->addAttributeToFilter(‘status’, Mage_Catalog_Model_Product_Status::STATUS_ENABLED); $collection->addFieldToFilter(‘visibility’, Mage_Catalog_Model_Product_Visibility::VISIBILITY_BOTH); Don’t spend time re-inventing the wheel. … Read more

Improving First Byte Time in Magento

irst Byte Time is very important for a stores usability and search engine ranking. Improving the First Byte Time can improve customer satisfication and rankings in search engines. The end result is more revenue for the store. What exactly is First Byte Time (FBT)? First Byte Time is one aspect of load time. Load time … Read more

Magento Review Reminder

etting your products reviewed by real customers can boost sales significantly. Unfortunately, many customers forget to write reviews. Magento Review Reminder will help solve this issue for you by sending emails to customers after they have placed an order and reminding them to write a review. The extension is very simple to use. You can … Read more

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