From: August Date: Thu, 9 Sep 2010 02:30:24 +0000 (-0400) Subject: Added notes regarding slash encoding in Catalyst X-Git-Tag: 0.002006~1^2 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FGitalist.git;a=commitdiff_plain;h=67388737e8fb8d1e066cf18248b538cacf016b4c Added notes regarding slash encoding in Catalyst --- diff --git a/README b/README index e0c80c7..2e7feaa 100644 --- a/README +++ b/README @@ -163,7 +163,7 @@ RUNNING #change the below to fastcgi-script if using mod_fcgi SetHandler fcgid-script - + Now to access your gitalist instance, you'll go to gitalist.yourdomain.com/gitalist.fcgi/ (DO NOT FORGET THAT TRAILING /). If you'd like a different URL, of course, you'll likely want to use @@ -171,6 +171,9 @@ RUNNING If you find the need to do some troubleshooting, you can call http://url_to_gitalist.fcgi?dump_info=1 and/or add export GITALIST_DEBUG=1 to the top of you gitalist.fcgi file (just below the shebang line). + + Also, note that Apache will refuse %2F in Gitalist URL's unless configured otherwise. Make sure + "AllowEncodedSlashes On" is in your httpd.conf file in order for this to run smoothly. CONTRIBUTING diff --git a/lib/Gitalist.pm b/lib/Gitalist.pm index 441ea63..499ac7b 100644 --- a/lib/Gitalist.pm +++ b/lib/Gitalist.pm @@ -227,7 +227,7 @@ This example can be seen live here: #change the below to fastcgi-script if using mod_fcgi SetHandler fcgid-script - + Now to access your gitalist instance, you'll go to gitalist.yourdomain.com/gitalist.fcgi/ (DO NOT FORGET THAT TRAILING /). If you'd like a different URL, of course, you'll likely want to use @@ -236,6 +236,9 @@ This example can be seen live here: If you find the need to do some troubleshooting, you can call http://url_to_gitalist.fcgi?dump_info=1 and/or add export GITALIST_DEBUG=1 to the top of you gitalist.fcgi file (just below the shebang line). + Also, note that Apache will refuse %2F in Gitalist URL's unless configured otherwise. Make sure + "AllowEncodedSlashes On" is in your httpd.conf file in order for this to run smoothly. + =head1 CONTRIBUTING