Re: Problems including a file referenced from SERVER['DOCUMENT_ROOT']
- From: "Rik" <luiheidsgoeroe@xxxxxxxxxxx>
- Date: Thu, 28 Dec 2006 18:05:04 +0100
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
.
- References:
- Prev by Date: Re: Problems including a file referenced from SERVER['DOCUMENT_ROOT']
- Next by Date: posting with cURL problem
- Previous by thread: Re: Problems including a file referenced from SERVER['DOCUMENT_ROOT']
- Next by thread: Re: Problems including a file referenced from SERVER['DOCUMENT_ROOT']
- Index(es):
Relevant Pages
|