Forum Moderators: coopster
From PHP Manual:
"Files for including are first looked in include_path relative to the current working directory and then in include_path relative to the directory of current script. E.g. if your include_path is ., current working directory is /www/, you included include/a.php and there is include "b.php" in that file, b.php is first looked in /www/ and then in /www/include/."
php_value include_path ".:/usr/www/users/yoursitefolder/includes"
Of course make this path the right one for your server.
Or better yet, keep the includes folder in another directory than your main site folder:
php_value include_path ".:/usr/www/users/includes"
If your development apache server is running on windows, this path would be this:
php_value include_path ".;c:/web_dev/includes"
[note that in this case the ':' is a ';' for windows paths on apache]
Make the path the right one for your system of course