Stephane URBANOVSKI wrote:
[EMAIL PROTECTED] a écrit :
Hi:
As you can guess by the questions previously asked I'm trying to
install at http://babel.ls.fi.upm.es/savannah/
The problem I have is that once I create a new Group Type and the
admin project (following INSTALL.verbose), I'm not able to access its
Main Page. The admin project is named savannah-babel which created
succesfully but I get a 404 error when trying to access
https://babel.ls.fi.upm.es/savannah/projects/savannah-babel
Projects access needs special apache configuration. This have been
documented for apache 1.3x and 2.0x.
Yes, I know that, but I followed the instructions from INSTALL.verbose
adding this lines to my httpd.conf (Apache/2.0.40 (Red Hat Linux)):
Alias /savannah/ /usr/local/src/savannah/www/
<Location /savannah/users>
SetHandler application/x-httpd-php
</Location>
<Location /savannah/projects>
SetHandler application/x-httpd-php
</Location>
ErrorDocument 404 /404.php
# Savannah config file :
SetEnv SV_LOCAL_INC_PREFIX /etc/savannah
# php tweaks :
php_admin_flag register_globals On
php_admin_flag file_uploads On
# Disable .htaccess (needed for apache 2.0) :
<Location /savannah>
AllowOverride None
</Location>
# Simulate apache 1.3 behavior
RewriteEngine on
RewriteLog /tmp/rewrite.log
RewriteRule ^/savannah/users(.*) /savannah/users?$1
RewriteRule ^/savannah/projects(.*) /savannah/projects?$1
<Location /savannah/users>
SetOutputFilter PHP
SetInputFilter PHP
LimitRequestBody 524288
</Location>
<Location /savannah/projects>
SetOutputFilter PHP
SetInputFilter PHP
LimitRequestBody 524288
</Location>
I'm not an expert so I can be commiting some basic error ...
Thanks in Advance
Alfonso Acosta