Re: [PHP] A Strange Problem
[email protected] (Daniel Brown)
| Newsgroups | php.general |
|---|---|
| Message-ID | <CAD9cneO70F+vUv1O0GpgikS3TNnFOOOnG0sHQUpDuKq8-9COgg@mail.gmail.com> |
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/