pixtur / streber

Wiki driven project management in PHP
GNU General Public License v2.0
29 stars 14 forks source link

Mixing absolute and relative paths #1

Open Steviey opened 11 years ago

Steviey commented 11 years ago

Warning: error_log(/www/htdocs/w005ed8b/std/../_tmp/errors.log.php) [function.error-log]: failed to open stream: Permission denied in /www/htdocs/w005ed8b/std/errorhandler.inc.php on line 165

Hello,

you are mixing absolute and relative paths in:

std/errorhandler.inc.php

-error_log($error_buffer, 3, dirname(FILE)."/../_tmp/errors.log.php");//Bug: Vermischung von absoluten und relativen Pfaden.

PSL-Fix:

error_log($error_buffer, 3,$_SERVER['DOCUMENT_ROOT']."/_tmp/errors.log.php");

c u

pixtur commented 11 years ago

Thanks,

just fixed it.

On 21.05.2013, at 22:04, Steviey notifications@github.com wrote:

Warning: error_log(/www/htdocs/w005ed8b/std/../_tmp/errors.log.php) [function.error-log]: failed to open stream: Permission denied in /www/htdocs/w005ed8b/std/errorhandler.inc.php on line 165

Hello,

you are mixing absolute and relative paths in:

std/errorhandler.inc.php

-error_log($error_buffer, 3, dirname(FILE)."/../_tmp/errors.log.php");//Bug: Vermischung von absoluten und relativen Pfaden.

PSL-Fix:

error_log($error_buffer, 3,$_SERVER['DOCUMENT_ROOT']."/_tmp/errors.log.php");

c u

— Reply to this email directly or view it on GitHub.