Re: decrypt password

2008-10-25 Thread Bernhard J. M. Grün
Hi! This is impossible as CakePHP uses a hash function to encrypt them. A hash function is a one way function. So there is no way to decrypt them again. -- Bernhard J. M. Grün 2008/10/25 [EMAIL PROTECTED] [EMAIL PROTECTED]: hi, i m encrypted my password with $this-Auth-password ,but noe i

Re: The HABM h bug!

2008-10-20 Thread Bernhard J. M. Grün
Hi! Just a guess: Do you use afterFind methods in your program? Maybe there is the problem? So that afterFind modifies your data in some cases. -- Bernhard J. M. Grün 2008/10/20 Marcus Silva [EMAIL PROTECTED] Hi everyone, I am not really sure weather the following is a bug

Re: Cake is incorrectly parsing URL's or I'm doing something wrong

2008-10-16 Thread Bernhard J. M. Grün
Hi! This could be a problem with the inflections (singular/plural of the word rss). Maybe you should try to add rss to config/inflections.php -- Bernhard J. M. Grün 2008/10/16 MaxCzap [EMAIL PROTECTED] I'm having some trouble with Cake parsing the URL for my RSS feed. I've got a controller

Re: Cake is incorrectly parsing URL's or I'm doing something wrong

2008-10-16 Thread Bernhard J. M. Grün
Sorry for the double post. Another way would be to rename your controller to feeds and use the router to map to rss. -- Bernhard J. M. Grün 2008/10/16 Bernhard J. M. Grün [EMAIL PROTECTED] Hi! This could be a problem with the inflections (singular/plural of the word rss). Maybe you should

Re: Cake is incorrectly parsing URL's or I'm doing something wrong

2008-10-16 Thread Bernhard J. M. Grün
it and keep in mind that there was some strange thing with RssController. Sorry that I can't solve your problem the right way. -- Bernhard J. M. Grün 2008/10/16 MaxCzap [EMAIL PROTECTED] Hi Bernhard, Thanks for the response. If I'm changing the inflections, would I add '.*rss

Re: Security question: AuthComponent and passwords

2008-10-12 Thread Bernhard J. M. Grün
. M. Grün 2008/10/12 [EMAIL PROTECTED] [EMAIL PROTECTED] http://api.cakephp.org/class_auth_component.html#216d4deefcd62ffeac5d9334b9cc2614 On Oct 11, 5:24 am, Bernhard J. M. Grün [EMAIL PROTECTED] wrote: Hi! Is it correct that the passwords created with the help of the AuthComponent

Security question: AuthComponent and passwords

2008-10-11 Thread Bernhard J. M. Grün
at front of the crypted password. -- Bernhard J. M. Grün --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups CakePHP group. To post to this group, send email to cake-php@googlegroups.com To unsubscribe from this group, send

Re: Encryption/Decryption of data

2008-10-07 Thread Bernhard J. M. Grün
this helps. -- Bernhard J. M. Grün 2008/10/8 David C. Zentgraf [EMAIL PROTECTED] I'm very interested in this topic. I have an application that by it's nature shares objects between multiple participants, each object having different participants. Since those objects contain sensitive data, I

Re: Missing Database Table

2008-09-16 Thread Bernhard J. M. Grün
Hi! This seems to be an ACL table. I think there was a call like cake acl something to generate that tables. HTH Bernhard 2008/9/16 [EMAIL PROTECTED] [EMAIL PROTECTED] Whenever I am oh so sure I have everything setup but I still get strange errors like this it is always one thing...

Re: Transaction in cakephp is just for one table?

2008-09-11 Thread Bernhard J. M. Grün
it rollback? Does $this-User- begin() mean we just start the transation on table User? I'd appreciate your help very much. Thanks, Bo -- Viele Grüße Bernhard J. M. Grün --~--~-~--~~~---~--~~ You received this message because you

Re: find() and deeper associations

2008-09-09 Thread Bernhard J. M. Grün
Hi, This should be solvable with with Containable behavior. Or - if you want to do this with just one query - use the infos you can find in teknoids blog: http://teknoid.wordpress.com/2008/07/17/forcing-an-sql-join-in-cakephp/ Those infos are also present in the manual for 1.2. 2008/9/9 [EMAIL

Re: dropdown with country,state,city

2008-09-07 Thread Bernhard J. M. Grün
Yes it is possible. Look into the manual (FormHelper - input (select box)). There are many examples you can look at. 2008/9/7 Ranju [EMAIL PROTECTED] I want implement dropdown with country ,state,city.It is possible on cakephp .pls help me.

Re: How do i remove the query results

2008-09-03 Thread Bernhard J. M. Grün
results from the bottom of the page, i've created the default.ctp in the layout folder, but the query results still appears at the bottom -- Viele Grüße Bernhard J. M. Grün --~--~-~--~~~---~--~~ You received this message because you are subscribed

Re: Migration from CakePHP 1.1.x to CakePHP 1.2.x - how to acces controller component from view?

2008-08-28 Thread Bernhard J . M . Grün
Hi! This is quite easy. It is just $account = $this-Session-read('Account'); On 28 Aug., 07:35, Pizgin [EMAIL PROTECTED] wrote: Hi! Before was $account = $this-controller-Session-read('Account'); On CakePHP 1.2.x this not work. Have error: Undefined property:  View::$controller