Unexpected Page not found 404 Error in Server |
[eluser]unsub[/eluser]
have you set your config['base_url'] to the proper place? That might do it. If you were using it on your testing server you probably had it set to http://localhost/codeigniter, or whereever it was, so now you need to open up application/config/config.php and change it to your live server. Or you could use the HTTP_HOST way, I think it's this: Code: $config['base_url'] = "http://".$_SERVER['HTTP_HOST']."your_subdomain_here/"; then you don't have to change it when you move it. |
Messages In This Thread |
Unexpected Page not found 404 Error in Server - by El Forum - 10-16-2009, 02:05 PM
Unexpected Page not found 404 Error in Server - by El Forum - 10-16-2009, 02:17 PM
Unexpected Page not found 404 Error in Server - by El Forum - 10-18-2009, 08:42 AM
|