|
The bug appears when you try to use the include/require command
such as,
<?php include('http://www.internet-guide.co.uk/test.php');?>
The Solution
What you need to do is,
- change "include" command to @include
- use a relative path to the file such as - /home/userid/public_html/directory/test.htm
- or use a path such as - include("$DOCUMENT_ROOT/page.html");
Back
|