Skip to content
Archive of posts filed under the PHP category.

Warning: main(): stream does not support seeking in /pathto/file.php on line XX

Apparently VeoWeb.Net1 upgraded PHP. This introduced a bug (feature?) which caused the above warning to be displayed even though the php script appears to work correctly. Here’s the solution: The offending line looks something like this: include($URL) ; Replacing it with this: @include($URL) ; fixes this problem. Now defunct.