Re: [symfony-users] symfony 1.2 db connections timing out

2010-04-14 Thread Tom Haskins-Vaughan
Cool. Nice one. On Wed, Apr 14, 2010 at 9:41 AM, Richard U wrote: > Thanks Tom > > I found a way of doing this... by killing the dead connection and > creating a new one... > > Propel::close(); // kill existing > $connection_cdb = Propel::getConnection(); // create new > > > On Wed, Apr 14, 2010

Re: [symfony-users] symfony 1.2 db connections timing out

2010-04-14 Thread Richard U
Thanks Tom I found a way of doing this... by killing the dead connection and creating a new one... Propel::close(); // kill existing $connection_cdb = Propel::getConnection(); // create new On Wed, Apr 14, 2010 at 10:16 PM, Tom Haskins-Vaughan wrote: > I think I came across this after t

Re: [symfony-users] symfony 1.2 db connections timing out

2010-04-14 Thread Tom Haskins-Vaughan
I think I came across this after trying to download a very large file ~100MB between db calls. I don't remember how I fixed it, but I think I just tried to reconnect manuallly to the db. I'll have a dig around and see what I can come up with. Tom On Tue, Apr 13, 2010 at 12:55 AM, Slavka wrote: >