On 3/28/07, Chris <[EMAIL PROTECTED]> wrote:
> There is a lot of require_once(' ') in the script and if i am not in the
correct folder the script won't work.
That is something php related ;)
Change your require to something like this:
require(dirname(__FILE__) . '/other_file_name.php');
--
Postgresql & php tutorials
http://www.designmagick.com/
Thanks for the hint. I found s solution to execute the php script from the
cron scheduler: add a "&" at the end of the crontab command........
Thank for your help.
yvan