RE: Parent Limits?

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Why not set a constants for a base path and then you do not have to do that?

define('BASE_PATH','C:\\inetpub\\vhosts\\yourwebsite.com\\httpdocs\\');
<--windows format for path
define('DIR_INCLUDES', './includes');

require_once(BASE_PATH.DIR_INCLUDES.'ini.inc.php');



Richard L. Buskirk


-----Original Message-----
From: Brian Smither [mailto:bhsmither@xxxxxxxxx] 
Sent: Tuesday, June 21, 2011 12:35 AM
To: php-general@xxxxxxxxxxxxx
Subject:  Parent Limits?


The following works (three parents):
include("../../../includes/ini.inc.php");
require_once("../../../includes/ini.inc.php");

The following works (four parents):
include("../../../../includes/ini.inc.php");

The following does not work (four parents):
require_once("../../../../includes/ini.inc.php");

That is, require_once() with four parents has been reported to have been
disabled for security purposes. But apparently, not disabled is include()
with four parents.

The device or setting which is causing the problem is not known to me. It
may be just the four parents (and include() is getting the data from this
file elsewhere) or it may be the combination.

It has been reported this is not a limit within open_basedir. So, what is
it? What module or php.ini setting would have this effect?

Thank you.






-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux