Re: CakePhp 3.0 unable to login

2015-02-25 Thread jadb
You aren't defining the custom models you are using. By default Auth expects Users table not Usarios. Read more here: http://book.cakephp.org/3.0/en/controllers/components/authentication.html#configuring-authentication-handlers On Sunday, 22 February 2015 11:05:53 UTC-5, s.m.s...@gmail.com w

Re: Multiple Inserts without a loop

2008-09-30 Thread JadB
array('(1, 2, 3)', '(4, 5, 6)', '(7, 8, 9)'); $fields = array('a','b','c'); I might be wrong, but this works for me so far and isn't really any kind of 'hack', it's just using what's there in the framework. H

Re: validate alphanumeric

2008-09-28 Thread JadB
add a new method in app_model (if you will use that validation in more than one model) or in the model itself with the appropriate regex. i have never played with hungarian chars or anything else than latin actually, so I can't help more but that should get you on the right track. cheers

Re: How to generate URL without ':' that has argument.

2007-09-29 Thread JadB
Overwrite the 'router.php' file found in /cake/libs with a copy of it in your /app/ folder and then change the following: /** * Separator used to join/split/detect named arguments * * @var string * @access private */ var $__argSeparator = ':'; Just replace it with whatever separator