Strange include error...

flumps

Verified User
Joined
Dec 29, 2003
Messages
107
Warning: include() [function.include]: URL file-access is disabled in the server configuration

any ideas or heads up on whats going on here...

think im having a dum moment as ive drawn a blank think its cause its late and having a fresh pair of eyes in the morning might solve it.

but if somone could suggest somthing that would be great.

cheers.
 
Just set "allow_url_fopen" value to "on" in /usr/local/lib/php.ini and reboot the apache service :)
 
just double checked this and looking at the ini file it already has this set to ON.

im pretty sure the client is proberly including files in correctly I will doubl check this too.

in the meantime if anyone has anything to add would much appricate it.

cheers.
 
create a php-file and include this:

PHP:
<?php 
phpinfo();
?>

Now check the page and see if "allow_url_fopen" is really "ON". You can also check your apache error-logs.
 
Back
Top