I can't understand what am I doing wrong. I want to have a Subversion Repository in my Shared Hosting and I want to be able to checkout all files to my local PC using e.g. TortoiseSVN
So what I'm doing:
1) I created repository using my SSH in the /home/myaccount/public_html/svn/ folder
svnadmin create public_html/svn
2) it creates the repository with all folders:
- /public_html/svn/conf
- /public_html/svn/db
- /public_html/svn/hooks
- /public_html/svn/locks
3) Then I edited conf/svnserve.conf and conf/passwd
conf/svnserve.conf
anon-access = none
auth-access = write
password-db = passwd
conf/passwd
john = mypassword
Then Start Problems
4) Trying to create /myproject/ folder in /svn/ folder
cd /home/myaccount/public_html/svn/
svn mkdir myproject
It returns "svn: 'public_html/svn' is not a working copy" Why I get this error?
5) Ok, I'm trying to browse my svn directory using TortoiseSVN Browser, I'm inserting this URL: http://xxx.xxx.xxx.xxx/svn/ The xxx... is my Dedicated IP Address of my Shared Hosting
Ok I'm waiting and expecting to see the /svn/ folder but it returns this error:
Redirect Cycle Dedicated for http://xxx.xxx.xxx.xxx/svn/
And that's it, I have two issues now, and I can't understand the reason, please let me know what am I doing wrong.