Hello

I didn't find any other way to request your help for the savannah installation, 
so i hope this is the good one.

First of all, i beg for your fogiveness for the spam i made yesterday with my 
request on the main page. 
It wasn't on purpose, looks like a bug to me since the additionnal requests 
have been auto-posted when i hit the refresh page button. *shrug*



Ok, so i'll assume this is the good place to ask for help now.

To sum up:

I installed savane on:
/usr/local/savane

the URL is:
www.ocea.li.univ-tours.fr/siteDeveocea/savannah

the Issue:
www.ocea.li.univ-tours.fr/siteDeveocea/savannah works fine but
www.ocea.li.univ-tours.fr/siteDeveocea/savannah/projects/e-bab/ (as an exemple) 
gives a 404

Apache version: 2.0.40
cvs version 1.11.2-17

I noticed the answer yeupou made to my previous post (asking me if I added some 
specific lines in httpd.conf) and I was indeed missing some of them, but 
nothing changed when i added them.



Here is the httpd.conf setting:
<VirtualHost www.ocea.li.univ-tours.fr:8080>
    ServerAdmin [EMAIL PROTECTED]
    DocumentRoot /var/www/html
    ServerName ocea.univ-tours.fr:8080
    ErrorLog logs/dev.ocea-error_log
    CustomLog logs/dev.ocea-access_log common

#
# Lancement du moteur ModRewrite : reecriture d'URL
# Permet la redirection du client vers la page d'accueil d'e-OCEA for 
Developpers
#
RewriteEngine on
RewriteRule ^/$ /siteDeveocea/index.jsp [R]

#
# On cree un Alias pour avoir acces a un repertoire situé en dehors du 
DocumentRoot
#
Alias /siteDeveocea/ "/var/tomcat4/webapps/siteDeveocea/"

<Directory "/var/tomcat4/webapps/siteDeveocea/">
    Options Indexes FollowSymLinks MultiViews
    AllowOverride None
    Order allow,deny
    Allow from all
</Directory>


Alias /siteDeveocea/ "/var/tomcat4/webapps/siteDeveocea"

<Directory "/var/tomcat4/webapps/siteDeveocea">
    Options Indexes FollowSymLinks MultiViews
    AllowOverride None
    Order allow,deny
    Allow from all
</Directory>


#####################################################################################
##                                     SAVANNAH                                 
   ##
#####################################################################################

Alias /siteDeveocea/savannah/ "/usr/local/savane/www"

<Directory "/usr/local/savane/www">
        Options Indexes FollowSymLinks MultiViews
        AllowOverride None
        Order allow,deny
        Allow from all
        AllowOverride FileInfo
</Directory>

#############fichier de config savannah.conf.php est dans 
/etc/savannah#############
<IfModule mod_env.c>
        SetEnv SV_LOCAL_INC_PREFIX /etc/savannah
</IfModule>

####################################################################################
########################### Instructions pour apache 2.x 
###########################
############################ Installe : apache V 2.0.40 
############################
####################################################################################

php_admin_flag register_globals On
php_admin_flag file_uploads On


<Location /siteDeveocea/savannah>
        AllowOverride None
</Location>

RewriteEngine on
RewriteRule ^/$ /siteDeveocea/savannah/index.php [R]
RewriteRule ^/siteDeveocea/savannah/users(.*) /siteDeveocea/savannah/users?$1
RewriteRule ^/siteDeveocea/savannah/projects(.*) 
/siteDeveocea/savannah/projects?$1

<Location /siteDeveocea/savannah/users>
        SetHandler application/x-httpd-php
        SetOutputFilter PHP
        SetInputFilter PHP
        LimitRequestBody 524288
</Location>

<Location /siteDeveocea/savannah/projects>
        SetHandler application/x-httpd-php
        SetOutputFilter PHP
        SetInputFilter PHP
        LimitRequestBody 524288
</Location>


######################################################################################
##                         Fin des instructions pour Savannah                   
    ##
######################################################################################

ErrorDocument 404 /404.php

</VirtualHost>


Thanks


Reply via email to