[PHP] Re: How to set an absolute include path?

2004-12-27 Thread Brian Dunning
I should add that I'd heard that the following will set the include_path to the server root, no matter where you call includes from: ini_set (include_path, ini_get (include_path) . ':../:../../:../../../:../../../../'); But this doesn't seem to be doing it for me. Also my development server

Re: [PHP] Re: How to set an absolute include path?

2004-12-27 Thread Jeffery Fernandez
Brian Dunning wrote: I should add that I'd heard that the following will set the include_path to the server root, no matter where you call includes from: ini_set (include_path, ini_get (include_path) . ':../:../../:../../../:../../../../'); But this doesn't seem to be doing it for me. Also