PDA

View Full Version : Warning: main(): stream does not support seeking


gravi
03-18-2004, 02:25 PM
Hi!
I know there was a forum that said how to fix this problem but I don't seem to find it... I am trying to grab the information from one of my blogs into one of my sites... The content of it appears but at the begining it shows this:

Warning: main(): stream does not support seeking in /home/dbzouto/public_html/gravi/test/index.php on line 43


This is the code I am using
<?php include("http://gravi.animepuertorico.com/main.html"); ?>

CubedThree
03-18-2004, 03:49 PM
Originally posted by gravi
Hi!
I know there was a forum that said how to fix this problem but I don't seem to find it... I am trying to grab the information from one of my blogs into one of my sites... The content of it appears but at the begining it shows this:

Warning: main(): stream does not support seeking in /home/dbzouto/public_html/gravi/test/index.php on line 43


This is the code I am using
<?php include("http://gravi.animepuertorico.com/main.html"); ?>

This is a known bug in PHP. You should be able to suppress the error message simply by changing include to @include ...

TomD
03-18-2004, 04:15 PM
There is a HR FAQ (http://support.hostrocket.com/index.php?page=index_v2&id=340&c=15) on this topic.