Re: MySQL replication master / slave setup does not work

2007-08-14 Thread bgmill
A gotcha not documented anywhere with that method is that session queries (when storing in the db) always go to the default db no matter what, at least thats what happened when we used it on a project (cake 1.1)... we ended up having to hack dbo_mysql.php in the core to fix that problem. Also,

Re: MySQL replication master / slave setup does not work

2007-08-14 Thread Masao
Thanks for the response, but i checked, and that's not the problem. 'connect' = 'mysql_connect', On Aug 13, 5:09 pm, Samuel DeVore [EMAIL PROTECTED] wrote: make sure that you are using 'connect' = 'mysql_connect' not pconnect in your db config On 8/13/07, Masao [EMAIL PROTECTED]

MySQL replication master / slave setup does not work

2007-08-13 Thread Masao
I've setup a simple Users table with scaffolding to test the master/ slave setup suggested in this thread: http://groups.google.com/group/cake-php/browse_thread/thread/58ea010f930fab6c/df64d493b24d5a67 But it does not work for me either (as I've read someone else is having the same problem)

Re: MySQL replication master / slave setup does not work

2007-08-13 Thread Samuel DeVore
make sure that you are using 'connect' = 'mysql_connect' not pconnect in your db config On 8/13/07, Masao [EMAIL PROTECTED] wrote: I've setup a simple Users table with scaffolding to test the master/ slave setup suggested in this thread: