|
Posted by Rik on 12/28/06 17:05
monomaniac21 wrote:
> Rik wrote:
>> monomaniac21 wrote:
>>> Why does this find the file:
>>>
>>> <img
>>> src="<?=$_SERVER['DOCUMENT_ROOT']?>/images/viessmann_header_logo.gif">
>>>
>>> But this does not?
>>>
>>> $right_content =
>>> $_SERVER['DOCUMENT_ROOT']."includes/content/content.php";
>>>
>>> include $right_content;
>>
>> Perhaps:
>> $_SERVER['DOCUMENT_ROOT']."/includes/content/content.php";
(topposting fixed)
> sorry that was typo document root contains the a forward slash
Well then:
ini_set('display_errors',1);
error_reporting(E_ALL);
$right_content = $_SERVER['DOCUMENT_ROOT']."includes/content/content.php";
include($right_content) or die ("File $right_content not found");
And check wether you really can find it in that particular dir manually...
Micheal Fesser also makes a good point:
<img src="<?=$_SERVER['DOCUMENT_ROOT']?>/images/viessmann_header_logo.gif">
Should not work, or only locally, as you document root is not visible to
others, only to yourself. It should fail on every computer except your own,
unless indeed $_SERVER['DOCUMENT_ROOT'] is not set.
--
Rik Wasmus
Navigation:
[Reply to this message]
|