OZONE Asylum
FAQ
What does 'Warning: main(): stream does not support seeking' mean?
This page's ID:
5757
Search
QuickChanges
Forums
FAQ
Archives
Register
You are editing "What does 'Warning: main(): stream does not support seeking' mean?"
Who can edit an FAQ?
Anyone registered may edit an FAQ.
Your User Name:
Your Password:
Login Options:
Remember Me On This Computer
Your Text:
Insert Slimies »
Insert UBB Code »
Close
Last Tag
|
All Tags
UBB Help
It means you have done something wrong with your include/require function. The error should point to a line like: [code]include("http://www.domain.com/page.html");[/code] The fix if the site is on the same domain is to do: [code]include("$DOCUMENT_ROOT/page.html");[/code] if you need to include a file from another domain then try: [code]@include("http://www.domain.com/page.html");[/code] [internallink=4643]Tyberius Prime[/internallink] - Note: If you really need to include from a different machine(!), a) that machine must send out the source code, not the output of another php script, b) you'd better not use any $variables within the include(), (now, you better wouldn't do that at all, less an attacker includes code from *her* domain). c) you should really think about what you're doing... this is not gonna be fast, and creates extra traffic on the server. ---------------------------- Relevant links: [url=http://www.phpbuilder.com/board/showthread.php?threadid=10242027]stream does not support seeking?[/url] - discusses the specific problem. [url=http://www.gurusnetwork.com/tutorials/php/phptemplate/phptemplate.html]Template Design with PHP[/url] - excellent tuorial covering the use on includes. [url=http://www.gurusnetwork.com/tutorials/php/phptemplate2/phptemplate2.html]Template Design with PHP part II[/url] - follow up to the above tutorial. _____________________ [internallink=4626]Emperor[/internallink] [small][i](Added by: [url=http://www.ozoneasylum.com/cgi-bin/ubbmisc.cgi?action=getbio&UserName=Emperor]Emperor [/url] on Mon 14-Jul-2003)[/i][/small] [small][i](Edited by: [url=http://www.ozoneasylum.com/cgi-bin/ubbmisc.cgi?action=getbio&UserName=Tyberius+Prime]Tyberius Prime [/url] on Tue 15-Jul-2003)[/i][/small]
Loading...
Options:
Enable Slimies
Enable Linkwords
« Backwards
—
Onwards »