Welcome Guest, Not a member yet? Register   Sign In
problem with uploading codeigniter on godaddy hosting
#1

[eluser]adityajoshi[/eluser]
brother one more help i need from you, In local host every thing works but when i try to upload my administrator (codeigniter) folder in my hosting
it is not able to find the page
http://whiteroseart.com/
My code igniter folder is storied in administrator folder
http://whiteroseart.com/administrator/


when i load this page it works
http://whiteroseart.com/administrator/


but i click submit the page is suppose to redirect to
http://whiteroseart.com/administrator/bl...ent_insert

it is not able to find the page
Code:
<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ /administrator/index.php/$1 [L]
</IfModule>
<IfModule !mod_rewrite.c>
    ErrorDocument 404 /administrator/index.php
</IfModule>
#2

[eluser]pickupman[/eluser]
I've ran into this before. [url="http://www.terencechang.com/2008/08/28/codeigniter-no-input-file-specified-php-5-apache-2/"]Read this[/url].

Should try using:
Code:
<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ /administrator/index.php/?$1 [L]
</IfModule>
<IfModule !mod_rewrite.c>
    ErrorDocument 404 /administrator/index.php
</IfModule>
#3

[eluser]ted wong[/eluser]
off topic: I will use go daddy too, just want to ask....which plan do you use? share host?
#4

[eluser]pickupman[/eluser]
I've got a site running on the one plan that is 5/mo




Theme © iAndrew 2016 - Forum software by © MyBB