Re: Cakephp, gearman workers and changing database connection on the fly issue

2012-09-15 Thread Dr. Tarique Sani
Are you sending which DB to use in the workload and then switching the DB in the worker accordingly? T On Sat, Sep 15, 2012 at 9:59 AM, Ketan ketan.s...@gmail.com wrote: howdy! We have created a SaaS app using cakephp 1.3 which is pulling in data from a --

Re: Abridged summary of cake-php@googlegroups.com - 14 Messages in 7 Topics

2012-09-15 Thread Alexis d'Oultremont
-- You received this message because you are subscribed to the Google Groups CakePHP group. To post to this group, send email to cake-php@googlegroups.com. To unsubscribe from this group, send email to cake-php+unsubscr...@googlegroups.com. Visit this group at

Re: Cakephp, gearman workers and changing database connection on the fly issue

2012-09-15 Thread Ketan Shah
Thats correct. I am sending the db config info in the workload Sent from my iPhone On 15-Sep-2012, at 4:33 PM, Dr. Tarique Sani tariques...@gmail.com wrote: Are you sending which DB to use in the workload and then switching the DB in the worker accordingly? T On Sat, Sep 15, 2012 at

Firebug log limit has been reach

2012-09-15 Thread Mr. Manager
Dear All, Anyone has an idea because I am using fire to testing for posting information between ajax and cakephp controller; however, currently, my firebug application not worked and has shown information that firebug log limit has been reach, then it showed window.clipboarddata not defined.

Re: Page not found with PayPal IPN plugin

2012-09-15 Thread Daniel
I found the problem was that I had put the routing commands in the wrong part of the routes file. -- You received this message because you are subscribed to the Google Groups CakePHP group. To post to this group, send email to cake-php@googlegroups.com. To unsubscribe from this group, send

Re: Firebug log limit has been reach

2012-09-15 Thread thatsgreat2345
If your firebug is reaching the log limit than you are doing something wrong. You should be using breakpoints and not just logging everything. This is also an easy question to google and really has nothing to do with CakePHP what so ever. But to do it, open firefox, type in about:config. Change

Database scheme question...

2012-09-15 Thread Jeff Prater
I'm getting started with v2.2. I'm trying to layout my database, but I'm unsure how to handle the naming conventions. I have a main table, firms, which stores all the companies/firms For each firm, I want to designate a managing user and contact user from the users table. I need to associate a

Find method with multiple tables

2012-09-15 Thread Mr. Manager
Dear All, I have problem with using find method to retrieve field from many table. I have table as the following: items(id, no, name, price, discount, sample, outside) invoices(id, no, name, patient_id, doctor_id, source_id, discount, paying_date, request_date, exchange_rate, bad)