|
This is not a bug, it is a setting in the php.ini file.
There are two possible outcomes. You can either 1. have just the error, or 2. have the error, and then the content it's suppose to supply.
When you do includes, and it is showing the error AND the content, you can supress the error by adding "@" before the word "include"
i.e( @include('filename.php'); )
To perminantly fix this issue, if you have access to php.ini
Change:
allow_url_fopen = Off
to:
allow_url_fopen = On
save and reupload php.ini...the error will disappear.
__________________
Mark - Co-President/Lead Developer
• avidInteractive Software
• The ServeraSuite 2007 Award Winning Professional Server Monitoring Solution - Click here
|