![]() |
what should I do to publish my CI web to internet? - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: what should I do to publish my CI web to internet? (/showthread.php?tid=21628) |
what should I do to publish my CI web to internet? - El Forum - 08-16-2009 [eluser]yudahebat[/eluser] what should I do to publish my CI web to internet?? I have a webhosting already and domain also... how to maintenace the file through FTP transfer?? any edit?? because I use normal way it cant load,only the index... the other link can't display correctly what should I do to publish my CI web to internet? - El Forum - 08-16-2009 [eluser]Phil Sturgeon[/eluser] Upload the files with any FTP program and edit the config.php and database.php to match. This article will either help or confuse you: How to: Support multiple production environments in CodeIgniter. what should I do to publish my CI web to internet? - El Forum - 08-16-2009 [eluser]yudahebat[/eluser] I've done that but it doesnt work.. only show the index.. if I click to another page,it wouldn't work they said they cant fint what I request... notice.. I've been edit the HT access to make index.php disappear from the url.. it is this problem because of that? what should I do to publish my CI web to internet? - El Forum - 08-16-2009 [eluser]Phil Sturgeon[/eluser] Could be. First, try switching the uri_protocol to one of the other suggested values. Try all of them in turn and see if it helps. what should I do to publish my CI web to internet? - El Forum - 08-16-2009 [eluser]yudahebat[/eluser] which one is the url_protocol?? sorry my english not so good... I'm from indonesia can you give an example?? thanks what should I do to publish my CI web to internet? - El Forum - 08-16-2009 [eluser]Phil Sturgeon[/eluser] I had noticed! :-) application/config/config.php Code: $config['uri_protocol'] = "AUTO"; Change this to PATH_INFO, QUERY_STRING, REQUEST_URI, ORIG_PATH_INFO, etc until one of them works. what should I do to publish my CI web to internet? - El Forum - 08-16-2009 [eluser]Yorick Peterse[/eluser] Does your server support PHP ? There are still webhosts out there who don't support it. what should I do to publish my CI web to internet? - El Forum - 08-16-2009 [eluser]Phil Sturgeon[/eluser] [quote author="Yorick Peterse" date="1250457046"]Does your server support PHP ? There are still webhosts out there who don't support it.[/quote] "only show the index.. if I click to another page,it wouldn’t work" my translation is that he can see the index page (default controller) but cannot see anything else. This is normally a routing issue or a f**ked up .htaccess. Fiddling with the uri_protocol is the most likly way to get it working in this situation. what should I do to publish my CI web to internet? - El Forum - 08-16-2009 [eluser]brianw1975[/eluser] If i am reading this right it sounds like AllowOverride All hasn't been specified in the Apache config file for the domain. what should I do to publish my CI web to internet? - El Forum - 08-17-2009 [eluser]yudahebat[/eluser] still error even I change the uri_protocol with what you told me. this is the error said if I click to another page : Code: Internal Server Error |