Sunday, March 26, 2023

MAGENTO




In market there are many ecommerce development tools. But Magento is raising as robust, Powerful featured Ecommerce system.

Magento is an open source based ecommerce web application. It is based on Zend framework.

Varien, the company owning Magento, formerly worked with osCommerce. They originally planned to fork osCommerce but later decided to rewrite it as Magento.

Magento has number of features. I will discuss features in next post.

Saturday, December 17, 2011

"No input file specified" GODADDY magento error

A common error, which usually comes up if you’re hosted by GoDaddy, is the no "input file specified error".

If you do not have Magento setup in the root of your server, make sure to add the following to your .htaccess file.

RewriteBase /yourbasepath/

Once that is verified, there are a couple things you can do to fix this.

In your web root directory, there should be a file called php.ini. Rename this to php5.ini.

If there is no php5.ini file. Create the file and upload it to your root directory.

If that doesn’t work, add the following to the end of your newly renamed php5.ini file:

cgi.fix_pathinfo = 1

And if you’re still getting the error, add the following to the top of your .htaccess file:

Options -MultiViews

This should resolve your error. I will keep posting new things.