Re: How to perform a find with HABTM relationship?

2013-04-05 Thread Vinicius Dusso
Hi Leonhart, And if you look from another perspective.. Try to perform a search on the Language model, filtering by laguage_name field and then CakePHP will take care of getting the HABTM results from your Post model. What do you think? On Wednesday, April 3, 2013 6:03:09 PM UTC-3, Leonhart wr

Re: Login and registration form on same page - Flash issue

2013-04-05 Thread Nathan Pierce
Anyone have a solution for this yet? Again, I have one pay with a login and registration form. I want the validation messages from the User model to not show on both email inputs on that page, I want them assigned to only one. This may require changing the login form input to email_login, but

Re: Registration Question - Two Different Users (Not using User table)

2013-04-05 Thread Nathan Pierce
Thanks man! This is helpful information for my learning. I ended up going to one users table and just assigning roles. I am going to setup ACL tonight and learn how it works so wish me luck! Thanks again! On Thursday, April 4, 2013 8:03:07 PM UTC-4, cricket wrote: > > > > > On Sat, Mar 30, 2013

Re: ajax content within ajax page call

2013-04-05 Thread André Luis
I know it´s not a Cake question, but use Google Chrome to test your app, and check the console if it shows any error, in Javascript depending on errors, no other script will fire after the error... Em quinta-feira, 4 de abril de 2013 01h56min48s UTC-3, Chris escreveu: > > hi guys,... can anyone

Re: Console command over HTTP? Cron call. Any clue?

2013-04-05 Thread majna
try with exec() http://www.php.net/manual/en/function.exec.php exec("php /full_path_to/domain.com/app/Console/cake.php NewsletterDaily", $output); print_r($output); On Thursday, April 4, 2013 4:42:17 PM UTC+2, Tomas Dobrotka wrote: > > Is is possible to call console command via HTTP? My