Re: Bcrypt / Blowfish login form troubles.

2013-04-08 Thread Atomic Guava
You need to configure auth component in a different way if you're using Blowfish. Please see http://stackoverflow.com/a/14538958 On Sunday, April 7, 2013 11:32:52 PM UTC+1, Branson Lilburn wrote: > > I'm having the exact same problem. Here is BaseAuthenticate::_password() > which is called in Ba

Re: Bcrypt / Blowfish login form troubles.

2013-01-29 Thread Atomic Guava
I was having exactly the same issue, and by using the debug() function on the variables used in the BlowfishAuthenticate class, I made the discovery that my password field's length in my MySQL database table was too short. I had been using 50 characters, but the Blowfish hashes are longer and b

Advice for building a simple CMS

2008-11-12 Thread Atomic Guava
I'm currently developing a CMS which aims to have the following base functionality: a) Auth component with admin routing setup b) Dynamic 'Pages' controller to load pages from the database rather than flat files c) A HTML helper to output navigation at a given level of the hierachy / breadcrumb na

Going live with CakePHP 1.2

2008-05-16 Thread Atomic Guava
Hi, I wonder if anyone can help me? I've had this issue with CakePHP 1.2 and putting it onto a 'live' or 'staging' server. On my Dev server, which runs PHP 5.2.5, everything is just great. My staging server runs PHP 5.2.2. I've set things up in the following way on my staging server: /root /--

Re: Create a MySQL database with cakephp

2008-04-18 Thread Atomic Guava
Is there a way to do this in the model as it instantiates? I had a dig through the API, but couldn't find anything similar to the beforeFilter() controller method - does anything exist like that for models? Basically, I've love to be able to automatically create a table the first time the contr