Re: simple ajax based form

2008-06-11 Thread Timothée BRENNER
Ok, i've never written any ajax request by hand, and I think you're right but I can't figure out exactly what the with parameter should be in my case. It would be great if you could give me some more advice. Thank you for your time. 2008/6/10 clemos [EMAIL PROTECTED]: Hi teum I think your

Re: hasMany relationship

2008-06-11 Thread Timothée BRENNER
Yeah, if I bind a hasOne relationship to the User model I will get only one comment per user in my result set. I don't need multiple conditions as I only have one field value to be checked. But as I said I expect one to three comment depending on the value of the field. Maybe the method with the

Re: Another does cake fit my needs question

2008-06-09 Thread Timothée BRENNER
I had never heard about SwiftMailer before but itlooks nice ! I may be using it for my future application. BTW, it's written here http://www.swiftmailer.org/wikidocs/v3/faq/hugebatches that the best way to send thousands of emails is to use a SMTP server. I have access to one at the office but I

Re: UTF8 vs Dreamweaver

2008-06-09 Thread Timothée BRENNER
Okay guys thanks for the feedback ! :) And...make love not EditorFlameWar ! 2008/6/7 Marcin Domanski [EMAIL PROTECTED]: Sorry, couldn't resist. EditorFlameWar over? ;o) It's never over! Vim FTW! -- Marcin Domanski http://kabturek.info

Re: Another does cake fit my needs question

2008-06-09 Thread Timothée BRENNER
Yep, I'll do so ! 2008/6/9 b logica [EMAIL PROTECTED]: Yes, that's true. If properly configured, you should only need to specify the IP address for the SMTP box. I suggest that you confer with whomever administers mail for your office. On Mon, Jun 9, 2008 at 3:10 AM, Timothée BRENNER

Re: Auth component : UsersController could not be found

2008-06-06 Thread Timothée BRENNER
Ok, thanks for your help. I've tried to do it this way but I should have done a mistake because it didn't work. Hmm quoting by Dardo, if you have a beforeFilter() in another controller extending AppController, it will not work unless you call parent::beforeFilter() in the child beforeFilter()...

Re: UTF8 vs Dreamweaver

2008-06-06 Thread Timothée BRENNER
Yeah Mark I noticed that today...I told myself it is not possible that such a big application doesn't allow saving files as utf8 but I was kind of stubborn, I wanted this function to be in the window which appears when you save your file or somewhere in the settings so I didn't look further :(

Re: UTF8 vs Dreamweaver

2008-06-06 Thread Timothée BRENNER
* at the same place. 2008/6/6 Timothée BRENNER [EMAIL PROTECTED]: Yeah Mark I noticed that today...I told myself it is not possible that such a big application doesn't allow saving files as utf8 but I was kind of stubborn, I wanted this function to be in the window which appears when you

Re: Auth component : UsersController could not be found

2008-06-05 Thread Timothée BRENNER
I use to do this: Create a private function _setupAuth() in AppController, then in AppController::beforeFilter() call it and in child controller's beforeFilter() just call parent::beforeFilter(). = Do you think it will work as my solution which was about the same technically (except I didn't