This mail is an automated notification from the bugs tracker of the project: Savane.
/**************************************************************************/ [bugs #490] Latest Modifications: Changes by: Mathieu Roy <[EMAIL PROTECTED]> 'Date: mer 07.07.2004 à 15:55 (Europe/Paris) ------------------ Additional Follow-up Comments ---------------------------- I tend to suggest to remove the SetHandler, following what Stéphane documented and proved to be working :) (I closed that item since we replied already by mail) /**************************************************************************/ [bugs #490] Full Item Snapshot: URL: <http://gna.org/bugs/?func=detailitem&item_id=490> Project: Savane Submitted by: 0 On: lun 05.07.2004 à 13:49 Category: None Severity: 1 - Trivial Priority: C - Normal Resolution: Unreproducible Privacy: Public Assigned to: yeupou Status: Closed Release: Planned Release: Summary: Reassigned item: Issue with savane installation Original Submission: Hi there. I'm currently trying to install Savane 1.0.2-cvs on a server run with redhat9.0. All the needed softwares are installed (cvs, apache, perl, php, mysql, mailman.....) I can create projects and play with the tools savannah offers, but i have a big issue when I want to check my projets. I mean, it gives me a 404 error when I click on my projects in order to manage them or when i want to look at them as a normal user. I thought this issue could have been generated because of some rights on the /savannah/www/projects.php file or on the /savannah/www/project repository, but nothing changed with a chmod a+rxw. I created a SSH key, nothing changed. And the strange thing is that I don't see any file or repository creation when creating a new project... where would I store the projects files ? So, I suspect there is something wrong in my settings, but i can't see where. the URL is www.ocea.li.univ-tours.fr/siteDeveocea/savannah attached files : savannah.conf.pl Commentaires ------------------ ------------------------------------------------------- Date: mer 07.07.2004 à 15:55 By: Mathieu Roy <yeupou> I tend to suggest to remove the SetHandler, following what Stéphane documented and proved to be working :) (I closed that item since we replied already by mail) ------------------------------------------------------- Date: mer 07.07.2004 à 15:33 By: Matteo Settenvini <tchernobog> Hi, I think you cannot use _both_ SetHandler AND SetInput (or Output) filter in the same directive. Keep just SetHandler and retry. Bye, Matteo <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> ------------------------------------------------------- Date: mer 07.07.2004 à 14:39 By: eocea <eocea> 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 ------------------------------------------------------- Date: mar 06.07.2004 à 09:31 By: Mathieu Roy <yeupou> It is frankly hard to handle anonymous posts. ------------------------------------------------------- Date: lun 05.07.2004 à 14:13 By: 0 <None> Uh, I forgot to say that I assume that your Document Root is the savane directory. You'll need either an Alias directive or to change the locations to have this working. ------------------------------------------------------- Date: lun 05.07.2004 à 14:11 By: 0 <None> there are some issues with recent versions of apache2, expecially w/ Set{Input,Output}Filter directive. Try to check this (obviously adapt directories to your needs): - Create a savane.conf file in Apache2 configuration directory, with the following lines: ---------------------- 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) : <Directory /var/www/savane> AllowOverride None Options FollowSymLinks MultiViews Order allow,deny Allow from All </Directory> # Simulate apache 1.3 behavior RewriteEngine On RewriteLog /tmp/rewrite.log RewriteRule ^/users(.*) /users?$1 RewriteRule ^/projects(.*) /projects?$1 <Location /users> SetHandler application/x-httpd-php LimitRequestBody 524288 </Location> <Location /projects> SetHandler application/x-httpd-php LimitRequestBody 524288 </Location> ----------------------------- - Then, add a to your apache2.conf a line that points to the new savane.conf: Include conf/savane.conf - Restart your http server. ------------------------------------------------------- Date: lun 05.07.2004 à 13:53 By: Mathieu Roy <yeupou> Hello, Did you configured apache to execute frontend/php/projects and frontend/php/users as PHP file, as documented in INSTALL.verbose? Regards, ------------------------------------------------------- Date: lun 05.07.2004 à 13:49 By: Mathieu Roy <yeupou> This item has been reassigned from the project Administration support tracker to your tracker. The original report is still available at support #273 Following are the information included in the original report: [field #0] <font class="preinput"><font class="help" title="Unique item identifier">Item ID: </font></font> 273<br>[field #1] <font class="preinput"><font class="help" title="Unique project identifier">Group ID: </font></font> 101<br>[field #2] <font class="preinput"><font class="help" title="Current Status">Status: </font></font> Open<br>[field #3] <font class="preinput"><font class="help" title="Impact of the item on the system (Critical, Major,...)">Severity: </font></font> A - Undefined<br>[field #4] <font class="preinput"><font class="help" title="Determines whether the item can be seen by members of the project only or anybody.">Privacy: </font></font> Public<br>[field #5] <font class="preinput"><font class="help" title="Generally high level modules or functionalities of the software (e.g. User interface, Configuration Manager, etc)">Category: </font></font> None<br>[field #6] <font class="preinput"><font class="help" title="User who originally submitted the item">Submitted by: </font></font> None<br>[field #7] <font class="preinput"><font class="help" title="Who is in charge of handling the item">Assigned to: </font></font> None<br>[field #8] <font class="preinput"><font class="help" title="Date and time of the initial submission">Submitted on: </font></font> lun 05.07.2004 à 13:43<br>[field #9] <font class="preinput"><font class="help" title="One line description of the item">Summary: </font></font> Issue with savane installation<br>[field #10] <font class="preinput"><font class="help" title="Full description of the item">Original Submission: </font></font> Hi there. <br /> <br /> I m currently trying to install Savane 1.0.2-cvs on a server run with redhat9.0. <br /> All the needed softwares are installed (cvs, apache, perl, php, mysql, mailman.....) <br /> <br /> I can create projects and play with the tools savannah offers, but i have a big issue when I want to check my projets. <br /> I mean, it gives me a 404 error when I click on my projects in order to manage them or when i want to look at them as a normal user. <br /> <br /> I thought this issue could have been generated because of some rights on the /savannah/www/projects.php file or on the /savannah/www/project repository, but nothing changed with a chmod a+rxw. <br /> <br /> I created a SSH key, nothing changed. <br /> <br /> And the strange thing is that I don t see any file or repository creation when creating a new project... where would I store the projects files ? <br /> <br /> <br /> <br /> So, I suspect there is something wrong in my settings, but i can t see where. <br /> <br /> the URL is www.ocea.li.univ-tours.fr/siteDeveocea/savannah <br /> <br /> attached files : savannah.conf.pl <br>[field #12] <font class="preinput"><font class="help" title="Characterizes the nature of the item (e.g. Crash Error, Documentation Typo, Installation Problem, etc">Item Group: </font></font> None<br>[field #13] <font class="preinput"><font class="help" title="Current resolution of the item">Resolution: </font></font> None<br>[field #14] <font class="preinput"><font class="help" title="Version of the System Component impacted by the item">Component Version: </font></font> None<br>[field #15] <font class="preinput"><font class="help" title="Name and version of the platform impacted by the item">Platform Version: </font></font> None<br>[field #16] <font class="preinput"><font class="help" title="How easy it is to reproduce the item">Reproducibility: </font></font> None<br>[field #17] <font class="preinput"><font class="help" title="Estimated size of the code to be developed or reworked to handle the item">Size (loc): </font></font> None<br>[field #18] <font class="preinput"><font class="help" title="Release in which the item was actually implemented">Fixed Release: </font></font> None<br>[field #19] <font class="preinput"><font class="help" title="Release in which it is planned to have the item implemented">Planned Release: </font></font> None<br>[field #20] <font class="preinput"><font class="help" title="Number of hours of work needed to handle the item">Effort: </font></font> 0.00<br>[field #24] <font class="preinput"><font class="help" title="How quickly the item should be implemented (Immediate, Normal, Low, Later,...)">Priority: </font></font> 5 - Normal<br>[field #27] <font class="preinput"><font class="help" title="">Percent Complete: </font></font> 0%<br>[field #29] <font class="preinput"><font class="help" title="Release (global version number) impacted by the item">Release: </font></font> None<br>[field #54] <font class="preinput"><font class="help" title="Customizable Select Box (pull down menu with predefined values)">Custom Select Box #1: </font></font> None<br>[field #55] <font class="preinput"><font class="help" title="Customizable Select Box (pull down menu with predefined values)">Custom Select Box #2: </font></font> None<br>[field #56] <font class="preinput"><font class="help" title="Customizable Select Box (pull down menu with predefined values)">Custom Select Box #3: </font></font> None<br>[field #57] <font class="preinput"><font class="help" title="Customizable Select Box (pull down menu with predefined values)">Custom Select Box #4: </font></font> None<br>[field #58] <font class="preinput"><font class="help" title="Customizable Select Box (pull down menu with predefined values)">Custom Select Box #5: </font></font> None<br>[field #59] <font class="preinput"><font class="help" title="Customizable Select Box (pull down menu with predefined values)">Custom Select Box #6: </font></font> None<br>[field #60] <font class="preinput"><font class="help" title="Customizable Select Box (pull down menu with predefined values)">Custom Select Box #7: </font></font> None<br>[field #61] <font class="preinput"><font class="help" title="Customizable Select Box (pull down menu with predefined values)">Custom Select Box #8: </font></font> None<br>[field #62] <font class="preinput"><font class="help" title="Customizable Select Box (pull down menu with predefined values)">Custom Select Box #9: </font></font> None<br>[field #63] <font class="preinput"><font class="help" title="Customizable Select Box (pull down menu with predefined values)">Custom Select Box #10: </font></font> None<br> CC List ------- CC Address | Comment ------------------------------------+----------------------------- root --À-- ocea --POINT-- li --POINT-- univ-tours --POINT-- fr | Documents joints ------------------- ------------------------------------------------------- Date: lun 05.07.2004 à 13:43 Name: savannah.conf.pl Size: 8,13Ko By: None my savane settings http://gna.org/bugs/download.php?item_id=490&item_file_id=24 For detailed info, follow this link: <http://gna.org/bugs/?func=detailitem&item_id=490> _______________________________________________ Message posté via/par Gna! http://gna.org/ _______________________________________________ Savane-dev mailing list [EMAIL PROTECTED] https://mail.gna.org/listinfo/savane-dev