|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2008-10-07 23:37 UTC] czerwonka at arcticpenguin dot ca
Description: ------------ Given the bug described at http://pecl.php.net/bugs/bug.php?id=14749 I still need an ability to use the svn extension from Apache and I'm getting a security error: svn_auth_set_parameter(): svn error(s) occured\n13 (Permission denied) Can't open file '/root/.subversion/servers': Permission denied Reproduce code: --------------- Just use any method, svn_log() for example, from Apache and you'll see the error every time. Expected result: ---------------- I expect to see a data structure populated with subversion log information. Actual result: -------------- svn_auth_set_parameter(): svn error(s) occured\n13 (Permission denied) Can't open file '/root/.subversion/servers': Permission denied PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 09 16:00:01 2025 UTC |
This function already exists and has done for a while, it would be great if you could post an actual test script though that is causing you problems. <?php svn_auth_set_parameter(SVN_AUTH_PARAM_CONFIG_DIR, '/www/site/.svn'); print_r(svn_log('/www/site/somefolder'));