My client Magento not working for cronjob from someday, all configuration is good , excuter cron job in liunx cli is good but AOE sechule not found cronjob is working .after long time checki , I found one issus article...
Category: Issue Magento
magento price format rewriter
public function format($price, $options = array(), $includeContainer = true, $addBrackets = false) { return $this->formatPrecision($price, 0, $options, $includeContainer, $addBrackets); } Mage->Directory->Model->Currency.php
Solving problems with Category tree database information
Did you ever had a problem where you can not see all available categories in “Categories” tab while editing a product? Does your Indexer process hangs when updating “Catalog URL rewrites”? At the same time your category tree looks just...
CUSTOM OPTIONS SET PRICE TO 0 IN MAGENTO 1.7
I’m working on a side project with Magento… There is a bug in 1.7 where when you use custom options, and your theme doesn’t include it’s own options.phtml file, the price will set to $0 (zero) when a user selects...
magento contact form handle
<contacts_index_index translate="label"> <label>Contact Us Form</label> <reference name="root"> <action method="setTemplate"><template>page/2columns-right.phtml</template></action> <action method="setHeaderTitle" translate="title" module="contacts"><title>Contact Us</title></action> </reference> <reference name="content"> <block type="core/template" name="contactForm" template="contacts/form.phtml"/> </reference> </contacts_index_index>
Magento – Missing “Header” & “Footer” tabs from Config->Design
If you are wanting to make changes to the header or footer sections in Magento (for example, change the copyright notice or change the logo) then the place to do this is in Configuration->General->Design and then under the “Header” and...
adding a block in
<checkout_cart_index> <reference name="checkout.cart"> <block type="mdeprojects_discount/remainder" name="mdeprojects.remainder" as="mdeprojects.remainder" template="discount/remainder.phtml" /> </reference> </checkout_cart_index>
Call to undefined method Mage_Core_Model_Locale::getDateFormatWithLongYear() in /home/…/public_html/…/app/code/core/Mage/Adminhtml/Block/Widget/Form.php on line 207
Probleme Call to undefined method Mage_Core_Model_Locale::getDateFormatWithLongYear() in /home/.../public_html/.../app/code/core/Mage/Adminhtml/Block/Widget/Form.php on line 207 Solutions I fixed by copying /app/code/core/Mage/Adminhtml/Block/Widget/Form.php to /app/code/local/Mage/Adminhtml/Block/Widget/Form.php Changing line 207 to read: $element->setFormat(Mage::app()->getLocale()->getDateFormat(Mage_Core_Model_Locale::FORMAT_TYPE_SHORT));