I had installed Magento Creare SEO extensions (http://www.magentocommerce.com/magento-connect/creare-seo.html) The extension is good and did what I wanted to achieve. However, the extension override the page title to default page title in these pages, such as Login, Signup, Popular Search Terms, Search Results, etc. So it created duplicate page titles. After researching the code, I found…
Category: Magento
Mangeto Delete Order Extension
Magento – Add Open Graph Tags in Meta
Ah…. Big mistake. Magento has good plugin called Creare SEO (http://www.magentocommerce.com/magento-connect/creare-seo.html). It has Twitter Cards and Open Graph. Install above plugin. —— Discard below contents Open template’s header file and add below after any existing meta tag. Change ‘images/logo.png’ to your logo. Other meta tags will be automatically filled. <meta property=”og:title” content=”<?php echo $this->getTitle() ?>”…
Magento Installation – Fresh Start
1. Install Magento, Theme 2. Set up .htaccess 3. Install SMTP Pro Extension: http://www.magentocommerce.com/magento-connect/aschroder-com-smtp-pro-email-free-and-easy-magento-emailing-for-smtp-gmail-or-google-apps-email.html 4. Install Fontis Australia Extension Extension: http://www.magentocommerce.com/magento-connect/fontis-australia.html 5. Tax Configuration – Go to System -> Sales -> Tax Tax Classes Tax Class for Shipping: Shipping Calculation Settings Tax Calculation Method Based On: Total Tax Calculation Based On: Shipping Address Catalog Prices:…
Magento – rules to fix catalog price rule price
Refer http://www.pacificwebtechnology.com/blog/magento-rules-to-fix-catalog-price-rule-issue/ 1. Make pricerule.php in root folder <?php require_once ‘app/Mage.php’; // if your are not root folder then write the proper path like publichtml/magento/app/Mage.php Mage::app(‘default’); $catalogRule = Mage::getModel(‘catalogrule/rule’); $catalogRule->applyAll(); Mage::app()->removeCache(‘catalog_rules_dirty’); ?> 2. Make cron job 0 0 * * * php /home/~/public_html/pricerule.php
Column not found: 1054 Unknown column ’link.area’ in ’where clause’
Original Article: http://www.magentocommerce.com/boards/viewthread/216269/#t293801 Solution Source http://www.soluvas.com/installing-sample-data-on-magento-1-4-0-1/ You shouldn’t just copy the media/catalog folder before, but do the steps in this tutorial in order: 1.Create database 2.Load sample DB into database 3.Extract Magento 4.Run installation 5.Ensure you get to the configure database page. Magento will complain about un-writeable directories. chmod or chown these folders (app/etc, var, and…
Magento Commerce: Fixing “Exception printing is disabled by default for security reasons”
Original Article: http://screencastworld.com/2010/04/articles/magento-commerce-exception-printing-is-disabled-by-default-for-security-reasons Whenever Magento 1.4.0.1 encounters an error condition you’re likely to see the message There has been an error processing your request Exception printing is disabled by default for security reasons Error log record number: XXXXXXXXXXXXXXX Unlike previous versions of Magento where it used to dump out the error report for the world to…