|
I have installed a fresh install on a Godaddy Shared environment. when I got http://www.mysite.com it redirects me to http://www.mysite.com/index.php/install and that says no input file specified but i manually go to http://www.mysite.com/install it goes to the correct page to accept terms of agreement. The problem is when I accept it redirects me to http://www.mysite.com/index.php/install/wizard/beginPost/ and that also returns no input file specified
Here is my .htaccess file that may help:
Options -MultiViews
DirectoryIndex index.php
<IfModule mod_php5.c>
php_value memory_limit 128M php_value max_execution_time 18000
php_flag magic_quotes_gpc off
php_flag session.auto_start off
php_flag suhosin.session.cryptua off
php_flag zend.ze1_compatibility_mode Off
</IfModule>
<IfModule mod_security.c>
SecFilterEngine Off SecFilterScanPOST Off </IfModule>
<IfModule mod_ssl.c>
SSLOptions StdEnvVars
</IfModule>
<IfModule mod_rewrite.c>
Options +FollowSymLinks RewriteEngine on
RewriteBase /
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteCond %{REQUEST_URI} !^/(media|skin|js)/
RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-l
</IfModule>
AddDefaultCharset Off #AddDefaultCharset UTF-8
<IfModule mod_expires.c>
ExpiresDefault \"access plus 1 year\"
</IfModule>
Order allow,deny Allow from all
|