|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2008-09-22 11:48 UTC] t dot moravec at atlas dot cz
[2008-10-07 18:50 UTC] scottmac@php.net
[2008-10-08 06:43 UTC] t dot moravec at atlas dot cz
[2012-01-28 01:16 UTC] drugurkocak at gmail dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 02:00:01 2025 UTC |
Description: ------------ I've logging to remote SVN repository with username and password. First defining SVN_AUTH_PARAM_DEFAULT_USERNAME and SVN_AUTH_PARAM_DEFAULT_PASSWORD through svn_auth_set_parameter() function. But when I want to do anything with repo (log, ls, cat) i had error (svn error(s) occured 175011 (Repository has been moved) Repository moved permanently to.....). But the URL in code is the same as in error. With other clients (Ecllipse subversive, KDEsvn) I can make connection. Reproduce code: --------------- svn_auth_set_parameter(SVN_AUTH_PARAM_DEFAULT_USERNAME, 'username'); svn_auth_set_parameter(SVN_AUTH_PARAM_DEFAULT_PASSWORD, 'password'); var_export(svn_cat("http://link/to/my/repo")); Expected result: ---------------- Show me the content of repo.