|
Posted by Noodle on 07/28/06 07:46
Max wrote:
> Hello -
>
> Just switched to PHP 5 and just realized that all my scripts with
> relative paths for require statements no longer work unless I put the
> absolute path. Usually, if the file is in the same directory I would us
> the following statement:
>
> require 'file.php';
>
> Now I'm having to use:
>
> require '/var/www/html/file.php';
>
> Do I just need to convert everthing to absolute, or is there something
> I'm missing somewhere?
>
> Thanks,
> Max
Have you tried using '.' to represent the current directory?
eg.
require './file.php';
Navigation:
[Reply to this message]
|