Quantcast
Channel: Yii Framework Forum
Viewing all articles
Browse latest Browse all 18717

No Input File Specified Yii

$
0
0
i have hosted my site in godaddy shared linux hosting and my .htaccess file contains
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)\?*$ index.php/$1 [L,QSA]
</IfModule>

and main.php file cointains
'urlManager'=>array(
'urlFormat'=>'path',y 'showScriptName'=>false,
'rules'=>array(
'<controller:\w+>/<id:\d+>'=>'<controller>/view',
'<controller:\w+>/<action:\w+>/<id:\d+>'=>'<controller>/<action>',
'<controller:\w+>/<action:\w+>'=>'<controller>/<action>',
),
),
my home page is loading correctly but when i click in any link i am getting a "no input file specified" error
i hosted the same website in website.org and there its working properly.
what should i do to make the site work on godaddy.

Viewing all articles
Browse latest Browse all 18717

Trending Articles