Re: Loading a cookie inside a model's constructor

2010-10-15 Thread Raisen
But I need to access the cookie in the model because that model uses a dbconfig that relies in what the cookie is set to. On Oct 14, 4:15 pm, cricket zijn.digi...@gmail.com wrote: On Thu, Oct 14, 2010 at 4:38 PM, Raisen weys...@gmail.com wrote: So I want to read a cookie using the Cakephp's

Re: Loading a cookie inside a model's constructor

2010-10-15 Thread Dr. Tarique Sani
On Fri, Oct 15, 2010 at 9:56 PM, Raisen weys...@gmail.com wrote: But I need to access the cookie in the model because that model uses a dbconfig that relies in what the cookie is set to. Like said above pass the cookie from the controller to the model, in fact just pass the needed value from

Re: Loading a cookie inside a model's constructor

2010-10-15 Thread Raisen
Thank you!! I was missing the initialize method. Also, I don't think I can pass from the controller because it needs to be set at the constructor method otherwise cake will thrown an exception saying that it cannot find the table. On Oct 14, 6:22 pm, Miles J mileswjohn...@gmail.com wrote: You

Re: Loading a cookie inside a model's constructor

2010-10-15 Thread Raisen
Maybe... :) This model is a plugin model though, so it relies on the cookie set by the main application's controller to find out which database configuration to connect to. Thanks all for the replies, the code is working now. On Oct 15, 10:08 am, Dr. Tarique Sani tariques...@gmail.com wrote: On

Loading a cookie inside a model's constructor

2010-10-14 Thread Raisen
So I want to read a cookie using the Cakephp's Cookie class. First, I tried to import only the cookie class and read the cookie, but I was getting an error stating that the cipher key cannot be null. So I imported the Configure class, set the key property of the cookie instance to the respective

Re: Loading a cookie inside a model's constructor

2010-10-14 Thread cricket
On Thu, Oct 14, 2010 at 4:38 PM, Raisen weys...@gmail.com wrote: So I want to read a cookie using the Cakephp's Cookie class. First, I tried to import only the cookie class and read the cookie, but I was getting an error stating that the cipher key cannot be null. So I imported the Configure

Re: Loading a cookie inside a model's constructor

2010-10-14 Thread Miles J
You should be passing the cookie from the controller to the model. $this-Model-cookie = $this-Cookie-read('cookieName'); But to answer your question, you need to initialize the cookie component. $cookie = new CookieComponent(); $cookie-initialize($this, array()); On Oct 14, 4:15 pm, cricket