im getting the errors:
Warning: include_once() [function.include-once]: URL file-access is disabled in the server configuration in .....
Warning: include_once(http://localhost.....) [function.include-once]: failed to open stream: no suitable wrapper could be found in .....
im assuming that i can somehow turn on url file access in php.ini? how would i be able to do that?
You should not use URLs inside include() anyway, as this potentially pulls untrusted code into your server.
But you can turn it on in php.ini as suggested in the docs, or use php_flag in a .htaccess, or php_admin_flag in httpd.conf
Mark