CodeIgniter Forums
Add chdir - 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: Add chdir (/showthread.php?tid=4971)



Add chdir - El Forum - 12-28-2007

[eluser]Alexxz[/eluser]
I think there is very useful to add in index.php following code

Code:
/*
|---------------------------------------------------------------    
| CHANGE CURRENT DIRECTORY
|---------------------------------------------------------------
|
| Change current working directory if CI have runned from command line.
| Web server does this automatically, but command line scripts need this.
|
*/
if (function_exists('realpath') AND @realpath(dirname(__FILE__)) !== FALSE)
{
    chdir(realpath(dirname(__FILE__)));
}

It is great to see this code in the next release.