[symfony-users] Http load problem with concurrent users.

2010-09-02 Thread Ivo Az.
Hi. I am using a tool called Siege (http://www.joedog.org/index/siege- home) to test the http load with 50 concurrent users, and the results are bad: HTTP/1.1 200 0.64 secs:4923 bytes == /en HTTP/1.1 200 1.33 secs:4925 bytes == /en HTTP/1.1 200 1.38 secs:4922 bytes == /en

[symfony-users] Re: Http load problem with concurrent users.

2010-09-02 Thread Ivo Az.
On Sep 2, 9:57 pm, Ivo Az. sep...@gmail.com wrote: Hi. I am using a tool called Siege (http://www.joedog.org/index/siege- home) to test the http load with 50 concurrent users, and the results are bad: HTTP/1.1 200   0.64 secs:    4923 bytes == /en HTTP/1.1 200   1.33 secs:    4925 bytes

[symfony-users] Re: Rich text editor with upload image plugin

2010-07-05 Thread Ivo Az.
Try sfMediaBrowserPlugin, it has documentation on how to use it as uploader with TinyMCE. On Jul 1, 11:10 pm, Mariano Sola mariano.s...@gmail.com wrote: Has anyone worked with any rich text editor with the upload image option activated in Symfony 1.4? I did some tests with TinyMCE and

[symfony-users] Re: Route does not add a parameter when its defined as a default one.

2010-06-23 Thread Ivo Az.
 am, Eno symb...@gmail.com wrote: Remember the orderf of routes *does* matter, so you should have most specific route to least specific routes, e.g. using a wildcard will match all routes that start /blog so probably that route should be last. On Tue, 22 Jun 2010, Ivo Az. wrote: Here's examples

[symfony-users] Route does not add a parameter when its defined as a default one.

2010-06-22 Thread Ivo Az.
Here's examples: Link ?php echo link_to($page, '@blog?page='.$page) ? Route 1 blog: url: /blog/* param: { module: blog, action: list } Output: http://localhost/blog/page/2 Route 2 blog: url: