lukelukeluke
Technical User
Hi there,
i have a problem with include() and require().
It works fine for me to require something into a page with the following order:
but if i try to put the following into a page with the absolute path with url of the page integrated,:
then it gives me this error ontop of the page:
[highlight #FF99FF]
Warning: main(): stream does not support seeking in /home/ on line 2
[/highlight]
(the include works, the site is displayed, but i got the error on top of it. I need an include with the full path... Has this something to do with the CHMOD status of the files on the server??)
Thanks a lot for help!
i have a problem with include() and require().
It works fine for me to require something into a page with the following order:
Code:
<?php
require('../dev/test.php');
?>
Code:
<?php
require('[URL unfurl="true"]http://www.domain.com/testfiles/dev/test.php');[/URL]
?>
[highlight #FF99FF]
Warning: main(): stream does not support seeking in /home/ on line 2
[/highlight]
(the include works, the site is displayed, but i got the error on top of it. I need an include with the full path... Has this something to do with the CHMOD status of the files on the server??)
Thanks a lot for help!