Page 201 of 211,259, showing 20 records out of 4,225,171 total, starting on record 4,001, ending on 4,020
# | Username | Text | |
---|---|---|---|
# | Aug 7th 2008, 21:08 | SamuraiDio | are these validations tules ok? http://pastebin.com/f3bfc3d83 |
# | Aug 7th 2008, 21:09 | zeeneo | best to test them yourself :) |
# | Aug 7th 2008, 21:09 | Jonah | heya foos |
# | Aug 7th 2008, 21:11 | SamuraiDio | i'm not asking if they will work, just if i'm using cakePHP guidelines. i got a bit confused with the validation rules of cakePHP 1.2 |
# | Aug 7th 2008, 21:18 | infantigniter | SamuraiDio: as far as format goes they look fine |
# | Aug 7th 2008, 21:19 | SamuraiDio | freebox, don't do relationship in database, let cake take care of it. |
# | Aug 7th 2008, 21:19 | SamuraiDio | infantigniter, this is not working: 'first_name' => array('allowEmpty' => false) |
# | Aug 7th 2008, 21:19 | SamuraiDio | Warning (2): preg_match() [function.preg-match]: Empty regular expression [CORE/cake/libs/model/model.php, line 2202] |
# | Aug 7th 2008, 21:20 | infantigniter | SamuraiDio: try 'first_name'=>array('rule'=>'alphaNumeric', 'allowEmpty'=>false) |
# | Aug 7th 2008, 21:20 | SamuraiDio | infantigniter, but i don't want alphaNumeric, but anything, even special chars |
# | Aug 7th 2008, 21:20 | infantigniter | SamuraiDio: try 'rule'=>'' |
# | Aug 7th 2008, 21:20 | infantigniter | instead of alphanumeric |
# | Aug 7th 2008, 21:21 | infantigniter | otherwise i don't know what you'd do, besides use VALID_NOT_EMPTY which might be deprecated but still works in my app |
# | Aug 7th 2008, 21:22 | SamuraiDio | yeah, seens the way to do |
# | Aug 7th 2008, 21:23 | Jonah | They should have CakeIgnitorPhony |
# | Aug 7th 2008, 21:24 | t73net | Hey all |
# | Aug 7th 2008, 21:24 | Jonah | real questing: on my user registration form, it is automatically making the email field bold. why? |
# | Aug 7th 2008, 21:24 | Jonah | if anything it should make the username field bold |
# | Aug 7th 2008, 21:25 | SamuraiDio | ohh shit, alphaNumeric don't allow áéíóú 8\ |
# | Aug 7th 2008, 21:26 | SamuraiDio | ok, no pro.... |