Easiest way is to just alter your
include_path. There are two way you can do this...
Via .htaccess:
Code:
php_value include_path .:/home/www/mysite/vbforums:/home/www/mysite/php-includes
Via PHP:
PHP Code:
ini_set("include_path", ini_get("include_path") . ":/home/www/mysite/vbforums:/home/www/mysite/php-includes");
I prefer using .htaccess because I can put it in my root web directory and the changes are global. It's a lot easier to edit one file than many.
PHP Docs:
ini_set(),
ini_get()