Re: [PHP-DB] Limited connections to the database. .

2005-10-27 Thread Jason
Norland, Martin wrote: http://www.google.com/search?q=oracle+limit+client+connections http://www.oracle.com/technology/pub/articles/php_experts/scaling_oracle _and_php.html Summary - either you're not using persistent connections, or your site is just very busy. If it's just that the site is

Re: [PHP-DB] Limited connections to the database. .

2005-10-27 Thread Jason
Sorry, I should've replied to your post first, but, have you tried manually limiting the connections via PHP? Code used from Omega Engine (Copyright Omega Vortex): $ini_data = $engine-ini_data['file']; setup_errors(); if ($ini_data['DB']['connections'] 5) { $engine-error = There are too

RE: [PHP-DB] Limited connections to the database. .

2005-10-17 Thread Norland, Martin
http://www.google.com/search?q=oracle+limit+client+connections http://www.oracle.com/technology/pub/articles/php_experts/scaling_oracle _and_php.html Summary - either you're not using persistent connections, or your site is just very busy. If it's just that the site is busy, best you can do is

RE: [PHP-DB] Limited connections to the database

2005-10-17 Thread Bastien Koert
Some good ideas in this (http://marc.theaimsgroup.com/?l=php-devm=98193543028899w=2) post... Here is one (http://www.oracle.com/technology/pub/articles/deployphp/lim_deployphp.html) from oracle on this as well Bastien From: Marcos R. Cardoso [EMAIL PROTECTED] To: php-db@lists.php.net