![]() |
Questions - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21) +--- Thread: Questions (/showthread.php?tid=9975) |
Questions - El Forum - 07-15-2008 [eluser]Bl4cKWid0w[/eluser] I develop my websites on my main server and then transfer the files to the server that the domain of the new site is on. I’m assuming the new server would required CodeIgniter to be installed on it? And if this is true, instead of uploading the entire CodeIgniter application into the root directory of my domain, making it more confusing to edit my site further into the future, would I be able to put the files I created in the root directory of my domain with the CodeIgniter application in a seperate directory? Questions - El Forum - 07-15-2008 [eluser]m4rw3r[/eluser] You could put CodeIgniter's system directory wherever you want, just make sure the bootstrap file (index.php) links to it correctly (with $system_folder) and that you have the right permissions set. Example: Code: /home/m4rw3r/mysite/ Index.php: Code: $system_folder = "../system"; |