Re: [PHP-DEV] Quick question before submitting a feature request...

2007-11-21 Thread Alexey Zakhlestin
Well, just as there is set_exception_handler, there is set_error_handler function which probably does what you want. Another thing: what stops you from explicitly catching the exception using try/catch blocks? I believe that would solve most of your problems. set_exception_handler is really a "las

[PHP-DEV] Quick question before submitting a feature request...

2007-11-21 Thread Ken Stanley
Hello, I have done my best to look through both the internals archive and the bug database, however I feel that I may have missed something; hence this e-mail. I am working on a project that uses set_exception_handler() so that I can attempt to display a uniform error page, perform logging, etc, o

Re: [PHP-DEV] web applications architectures comparison

2007-11-21 Thread Nuno Lopes
Hi, I was assigned a class work in the university to compare web applications architectures, mainly PHP vs Java+Hibernate+Struts/Stripes. I'll need to provide some benchmarks for some typical web apps. Well, I'm a bit afraid that Java may win, because of the usage of Hibernate, which caches sql

Re: [PHP-DEV] Disabling the built-in POST handler

2007-11-21 Thread Hannes Magnusson
On Nov 21, 2007 6:30 PM, Stefanos Stamatis <[EMAIL PROTECTED]> wrote: > So setting post_max_size to zero for the script with php_value in the > apache configuration disables the built-in post form handler resulting in > the desired behaviour! > > My question is whether this is the expected behavior

Re: [PHP-DEV] web applications architectures comparison

2007-11-21 Thread Gergely Hodicska
Hi! Alexey Zakhlestin wrote: I think a good example of php-technology would be symfony project + caching in memcached With symfony it is worth using Doctrine (a Hibernate-like ORM tool), which has built-in caching possibility. Best Regards, Felhő -- PHP Internals - PHP Runtime Development

[PHP-DEV] CVS Account Request: jschippers

2007-11-21 Thread Jorrit Schippers
As discussed with Helgi in php.pear.qa I will need CVS access to get to work on Net_FTP. -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Disabling the built-in POST handler

2007-11-21 Thread Stefanos Stamatis
Trying to find a way to disable the built-in post form handler for the reasons discussed here: http://marc.info/?l=php-general&m=119160177617046&w=2 I looked at the code of php and found out that inside main/rfc1867.c in function rfc1867_post_handler there is a check whether the posted data content

Re: [PHP-DEV] web applications architectures comparison

2007-11-21 Thread Alexey Zakhlestin
I think a good example of php-technology would be symfony project + caching in memcached it can be made to work really fast On 11/21/07, Nuno Lopes <[EMAIL PROTECTED]> wrote: > Hi, > > I was assigned a class work in the university to compare web > applications architectures, mainly PHP vs > Java+

Re: [PHP-DEV] web applications architectures comparison

2007-11-21 Thread Lukas Kahwe Smith
On 21.11.2007, at 16:26, Nuno Lopes wrote: Hi, I was assigned a class work in the university to compare web applications architectures, mainly PHP vs Java+Hibernate+Struts/Stripes. I'll need to provide some benchmarks for some typical web apps. Well, I'm a bit afraid that Java may win, becaus

[PHP-DEV] web applications architectures comparison

2007-11-21 Thread Nuno Lopes
Hi, I was assigned a class work in the university to compare web applications architectures, mainly PHP vs Java+Hibernate+Struts/Stripes. I'll need to provide some benchmarks for some typical web apps. Well, I'm a bit afraid that Java may win, because of the usage of Hibernate, which caches sql s