On Thu, Jun 20, 2013 at 2:14 PM, Tedd Sperling <[email protected]> wrote:
> Bastien:
>
> You were right on - by changing the directory to what I needed, everything
> works.
>
> My follow-up question is "Why?"
>
> I have *never* had to specifically tell any script to chdir() -- why with
> that one?
Sounds like either a chroot or virtual environment (such as,
execution of the script in a separate directory) issue. Check the
output of this:
<?php
if (phpversion() >= 5.3) {
echo __DIR__.PHP_EOL;
} else {
echo getcwd().PHP_EOL;
}
?>
--
</Daniel P. Brown>
Network Infrastructure Manager
http://www.php.net/
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php