stream does not support seeking

MainHosting

New member
stream does not support seeking

How would i fix this? I am thinking of downgrading to 4.3.1. We are running 4.3.2 now. How would i fix this problem?
 
I notice that certain hosts have the problem and others do not, even with similar environments (same versions of Linux and PHP). I am currently asking a question on this to the PHP internals.
 
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.
 
Top