Ticket Change Details
Not logged in
Overview

Artifact ID: 86a16c77fa2f6399eb87c5d5d05a43624660cca8
Ticket: a5fba652a688656245a9b69b9146394f17877655
remote `fossil clone` failed
User & Date: stephan 2008-12-13 09:05:15
Changes

  1. Appended to comment:
    
    
    <hr><i>stephan added on 2008-12-13 09:05:15:</i><br>
    HTTP code 403 is "forbidden", which makes it sound like you're trying to clone the fossil repository database file directly. When cloning over the net you need to give the URL of either a standalone RUNNING instance of the fossil web server OR a CGI script which runs the fossil app from an existing webserver (e.g. Apache). For example, here's a CGI script for one of my repos:
    
    me@host [~/www.fossil/repos/pegc]# cat index.cgi
    #!/home/me/bin/fossil
    repository: /home/me/fossil/pegc.fsl
    
    And the URL for that repo is:
    
    http://fossil.wanderinghorse.net/repos/pegc/index.cgi
    
    For that to work i had to add a .htaccess file to my top-most directory (so i can run .cgi files in any subdirs):
    
    me@host [~/www.fossil]# cat .htaccess 
    Options +ExecCGI +Indexes
    # doesn't work on my hoster :( AddHandler cgi-script .html
    DirectoryIndex index.cgi index.php index.html
    
    
    
  2. resolution changed to: "Not_A_Bug"