On 21 Oct 2009, at 10:18, Martin Häcker wrote:

>
>> I've been following the recent discussion about the slowness of Agilo
>> for some users, because we also experience a relatively slow  
>> connection.
>>
>> For example, if I access any of the bug reports in the left menu bar,
>> it takes several seconds to download fully. However, the bottom of  
>> the
>> report indicates:
>>
>>      Agilo 0.7.4.1-r1624-20090611 © 2008 agile42 all rights reserved  
>> (this
>> page was served in: 0.264395 sec.)
>
> This is quite an old version of Agilo, which probably means that you
> also use an older version of Trac. If possible updating both of these
> should result in significant performance gains. (Especially if trac is
> older than 0.11.3
>

No, it's 0.11.4:

System Information

Trac:   0.11.4
Python: 2.5.1 (r251:54863, Jul 10 2008, 17:24:48) [GCC 4.1.2 20070925  
(Red Hat 4.1.2-33)]
setuptools:     0.6c9
SQLite: 3.4.2
pysqlite:       2.3.2
Genshi: 0.5.1
mod_python:     3.3.1
RPC:    1.0.5
Agilo:  0.7.4.1-r1624-20090611
Subversion:     1.6.2 (r37639)
jQuery: 1.2.6


>> which is clearly much much faster.
>>
>> Why would there be such a discrepency between the reported speed and
>> the actual speed?
>
> I believe that this shows the time it took to render that individual
> page. However if mod-python is also responsible for delivering all the
> static content on the page, that is not taken into account there - but
> still slows down the load-speed significantly.
>
> If that is the case, you could try to offload responsibility for  
> static
> files to appache itself and gain a significant speed boost.
>
> This should get you started:
> http://groups.google.com/group/agilo/msg/860eac565cb0a98d

I thought that I had done that. Here's my configuration file:

<VirtualHost 1.2.3.4:80>
         ServerName   agile.foo.com:80
         ServerAdmin  "[email protected]"
         DocumentRoot /var/www/vhosts/subdomains/agile2/httpdocs
         CustomLog  /var/www/vhosts/statistics/logs/access_log plesklog
         ErrorLog  /var/www/vhosts/statistics/logs/error_log
         <IfModule mod_ssl.c>
                 SSLEngine off
         </IfModule>
         <Directory  /var/www/vhosts/subdomains/agile2/httpdocs>
         <IfModule sapi_apache2.c>
                 php_admin_flag engine off
         </IfModule>
         <IfModule mod_php5.c>
                 php_admin_flag engine off
         </IfModule>
         <IfModule mod_python.c>
         <Files ~ (\.py$)>
                 SetHandler python-program
                 PythonHandler   mod_python.cgihandler
         </Files>
         </IfModule>
                 Options -Includes -ExecCGI
         </Directory>

         <Location />
                 SetHandler mod_python
                 PythonInterpreter main_interpreter
                 PythonHandler trac.web.modpython_frontend
                 PythonOption TracEnv /var/trac/agile.foo.com
                 PythonOption TracUriRoot /
         </Location>

         Alias /trac/chrome/common/ "/var/trac/agile.foo.com/www- 
static/htdocs/common/"
         Alias /trac/chrome/site/   "/var/trac/agile.foo.com/www- 
static/htdocs/site/"

         <Location "/trac/chrome/common/">
                 SetHandler None
         </Location>
         <Location "/trac/crome/site/">
                 SetHandler None
         </Location>

</VirtualHost>


What did I do wrong?
Joe


--~--~---------~--~----~------------~-------~--~----~
Follow Agilo on Twitter: http://twitter.com/agiloforscrum
-----
You received this message because you are subscribed to the Google
Groups "Agilo for Scrum" group. This group is moderated by agile42 GmbH 
http://www.agile42.com and is focused in supporting Agilo for Scrum users.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/agilo?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to