I am new to cakephp. Here is my concern, I am practicing to design an online subscription site. The customer arrived on the site clicks on an offer to subscribe and must be redirected to a customer information registration form then after validation, is directed to another page which displays the details of his subscription and finally he confirms his subscription . The problem is that I don’t know how to go about keeping information in memory at each stage of form validation.
Could help me to have a tip or method to overcome this problem. I thank you in advance.
I have a customer table, an offer table and a subscription table and I would like to use the customer table for authentication but this does not go out. I have reserved the user table for the administration part. Do you have a solution for me? I’m grateful to you.
You’re trying to log in with a user record stored in the clients table? What steps have you taken to set that as the table that will be used for authenticating those logins?
Nothing about this changes what table it will be looking in. It changes what controller will be used, but that controller just calls $this->Auth->identify(), and by default that’s going to be using the users table.