Re: CakePHP 1.3 and AMFPHP

2012-10-29 Thread Doug Hagan
https://github.com/dhagan/cake2-amfphp On Sunday, April 10, 2011 8:15:34 PM UTC-7, sams wrote: > > there is this article > > http://bakery.cakephp.org/articles/vernerd/2009/06/28/flex-remoting-with-cakephp-cpamf-plugin-1 > > in the comments someone says it works well with 1.3 when changing routes

Testing database connection on the fly

2012-10-29 Thread darkangel
Hi, I'm trying to perform a button in one of my views where a user (an admin) can perform a database connection test on the fly, I have an action where I have the following code and I get the error "*Database connection "Sqlserver" is missing, or could not be created."* * * The thing is that I d

Re: HABTM and user login

2012-10-29 Thread lowpass
That's what I've done in the past when I want to include data that Auth doesn't automatically store. IIRC, you can write to the Auth.User key; the data will then be available from the user() method. $this->Session->write('Auth.User.group', $group_data); Retrieve with $this->Auth->user('group') O

Re: How can i retrieve data and put in a radio button

2012-10-29 Thread Nikhil Agrawal
can you explain more about it ? What data are you getting from databse? Is it some html code from db? On Fri, Oct 26, 2012 at 2:31 AM, SITEMETRIA wrote: > I would like to bring data from database and populate a radio button with > this data. How can I do this? > > -- > Like Us on FaceBook > htt

CakePHP TestSuite and ZendStudio v9

2012-10-29 Thread Tokeiito
Hello, I'm stuck on configuring phpUnit bootstrap for running cakephp unit test in Zend Studio 9. Any advice on how to accomplish this is more than welcome.. --- Respectfully, Darius Tumas -- Like Us on FaceBook https://www.facebook.com/CakePHP Find us on Twitter http://twitter.com/CakePHP

HABTM and user login

2012-10-29 Thread Álvaro G . Vicario
I have a *User* model to use built-in authentication. The model has several *$hasOne* relationships and all linked models get saved automatically into session, which is great because I can call *AuthComponent**::user()*whenever I need to perform an action based on user data. Now, I've added a *