Logs for

Page 262 of 211,262, showing 20 records out of 4,225,223 total, starting on record 5,221, ending on 5,240

# At Username Text
# Aug 8th 2008, 12:19 teknoid np
# Aug 8th 2008, 12:23 lqdice__ is it possible to disable blackhole detection for certain actions ?
# Aug 8th 2008, 12:24 lqdice__ what im doing now is making my own blackholecallback and just returning false
# Aug 8th 2008, 12:25 linked_ why is it even when i set $recursive=0, find('all') still retrieves the related models?
# Aug 8th 2008, 12:26 lqdice__ linked_: $this->modelname->recursive = 0; .. or find('all', array('recursive' => 0))
# Aug 8th 2008, 12:26 lqdice__ you can also do $this->recursive = 0; .. but $recursive = 0 isnt valid
# Aug 8th 2008, 12:27 linked_ lqdice__: hi. yes, i already did that. (put recursive inside find())
# Aug 8th 2008, 12:28 lqdice__ it works for me
# Aug 8th 2008, 12:29 teknoid linked_: try recursive = -1;
# Aug 8th 2008, 12:29 linked_ teknoid: ok, i'll try
# Aug 8th 2008, 12:30 linked_ teknoid: great, just what i need. thanks. (/me posts to logbook)
# Aug 8th 2008, 12:31 vudew in controllers where i use $this->Auth->allow(), $this->Auth->user() isnt working?
# Aug 8th 2008, 12:32 vudew is that normal?
# Aug 8th 2008, 12:36 linked_ best-practices question: is it ideal to use UUIDs as primary keys? (user_id for example)
# Aug 8th 2008, 12:38 freebox2 blergs
# Aug 8th 2008, 12:38 freebox2 autocomplete for cake => fail
# Aug 8th 2008, 12:39 teknoid linked_: if you follow conventions, primary key should be named 'id'...
# Aug 8th 2008, 12:39 teknoid linked_: the rest depends on your app...
# Aug 8th 2008, 12:39 linked_ teknoid: er, yup. i mean ('id)
# Aug 8th 2008, 12:40 teknoid linked_: for many simple cases auto_increment, will be fine... but uuid is probably better when you start dealing with more complex applications