Magento no input file specified error in Godaddy Hosting

A common error, which usually comes up if you’re hosted by GoDaddy, is the no input file specified error. Try this first: add this to your .htaccess file RewriteEngine On RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-f RewriteRule ^.+.php$ /bogusfile Then try to reload your setup page. If you do not have Magento setup in the root of your […]

Magento no input file specified error in Godaddy Hosting Read More »

Magento change the currency selector dropdown to a flag list

To change the currency selector dropdown to a flag list, you can take following these steps: 1. Open file app/design/frontend/default/your_theme/template/directory/currency.phtml (or app/design/frontend/base/default/template/directory/currency.phtml)and change code from: To: 1. You need to prepare a flag list (images). 2. Upload flag list to root/media/flag directory 3. Rename flags to currency’s code (EX: US Dollar -> usd.jpg, Euro ->

Magento change the currency selector dropdown to a flag list Read More »

Magento – Move Currency Switcher to the Header

If you would like to move the currency switcher from the left column to the header, you can use the following instructions to do so! Open /app/design/frontend/default/default/layout/page.xml Locate: Change to: Open /app/design/frontend/default/default/template/page/html/header.phtml After: Insert: Save, Upload + Clear Cache Make sure you have imported or manually entered your Currency Rates otherwise the switcher will not

Magento – Move Currency Switcher to the Header Read More »

Send newsletter queue in Admin Magento

If newsletter queue is not going to sent by default magento, try to send newsletter manually as following way. Then we can send it by different ways. Here i am going to discuss about 2 methods. Navigate to Configuration>Admin>Security, select “No” in “Add Secret Key to URLs”, save configuration. type http://www.yourdomain.com/admin/newsletter_queue/sending (you will be sent

Send newsletter queue in Admin Magento Read More »

magento error : Fatal error: spl_autoload() [function.spl-autoload]: Class

Magento error:- Fatal error: spl_autoload() [<a href=’function.spl-autoload’>function.spl-autoload</a>]: Class Zend_Log could not be loaded in /magento/app/code/core/Mage/Core/functions.php on line 247 Solution: this error comes most of the times due to lack of disk sapce or disk quota. so you need to update the disk quota for the user. Contact hosting provider for to increase the space

magento error : Fatal error: spl_autoload() [function.spl-autoload]: Class Read More »

Warning: Cannot modify header information – headers already sent by

Most of the time we donot actually care about leaving the blanks spaces before and after the “php” tag which results on “Warning: Cannot modify header information – headers already sent by (output started at /path/blog/somefile.php:4)“” . The above problem could be solved by removing the blank spaces before “<?php” tag and after “?>” tag.

Warning: Cannot modify header information – headers already sent by Read More »