# |
Oct 4th 2016, 15:04 |
Neon1024 |
Although Iâ??m sure youâ??re abstracting a complex case |
# |
Oct 4th 2016, 15:04 |
Neon1024 |
Sounds like poor software design to me |
# |
Oct 4th 2016, 15:03 |
Pika |
but if I have in array 10,20 and 40 then I get back 2 statuses but I need only one (from 100) because status 200 is only when I have all values = 40 |
# |
Oct 4th 2016, 15:02 |
Pika |
@neon1024 actually I need that without foreach, because I have more combinations... I am sending 3 options 100, 200 and 300 and 100 need to filter all values from 10,20,30, option with 200 must filter only values with 40 and value 300 can conatin values from 50,60 |
# |
Oct 4th 2016, 15:02 |
Speud |
and then you have to manage prefix or not, depends where you want to send the user connected |
# |
Oct 4th 2016, 15:01 |
Speud |
http://pastebin.com/HpyztZFW here it is (It can be improved for sure) |
# |
Oct 4th 2016, 15:01 |
Speud |
no in your appController (hold on, I will show you ;) |
# |
Oct 4th 2016, 14:59 |
djboz |
@speud Also, when you said define it in my authComponent, you mean in my AppController, or in my Vendor Cake/Controller/Component/AuthComponent ? |
# |
Oct 4th 2016, 14:58 |
djboz |
What a weird error though, I thought I would want to define my fullBaseURL rather than leave it blank. Odd how that affects the general AuthComponent, maybe I should submit a issue? |
# |
Oct 4th 2016, 14:57 |
Speud |
@djboz, oki always good to know ;) |
# |
Oct 4th 2016, 14:55 |
djboz |
@speud The culprit was that I had defined my fullBaseURL = â??mysite.mysitename.comâ??, by clearning it out, it worked. i.e., `fullBaseURL = â??â??;` |
# |
Oct 4th 2016, 14:54 |
Speud |
sorry it's more => 'authorize' => ['Controller'], |
# |
Oct 4th 2016, 14:54 |
Speud |
@djBoz: in your authComponent, add => ['controller'] => false |
# |
Oct 4th 2016, 14:51 |
mesterjagel |
Moved my init of the table to the constructor and it worked. |
# |
Oct 4th 2016, 14:50 |
djboz |
Trying to get my AuthComponent to work but whenever I try to go to a controller action who I do not have access too, instead of redirecting me to my controller action users(login) it appends my url to the controller and action I requested and then appends the redirection. i.e., `mywebsite.com/users/login`, what could be the issue? |
# |
Oct 4th 2016, 14:48 |
mesterjagel |
Hmm Iâ??m using TableRegistry to import a model to a Component. But when trying to fire a function from within I get a not found error? Does that make sense in anyway ? |
# |
Oct 4th 2016, 14:44 |
Neon1024 |
Just use a foreach() surely? and if a value isnâ??t 40 then break and return false |
# |
Oct 4th 2016, 14:40 |
Pika |
How to make query with matching function that result is true only when all values are X. I have array with (10,20,30,40) and need true result only when all values in array are (40, 40,40,40) everything else is flase? |
# |
Oct 4th 2016, 14:03 |
Neon1024 |
Ta |
# |
Oct 4th 2016, 14:02 |
ndm |
`$this->_View->element('element_name')` |
# |
Oct 4th 2016, 13:58 |
Neon1024 |
I have a helper which outputs quite a bit of markup and Iâ??d like to abstract the markup away from the helper method |
# |
Oct 4th 2016, 13:57 |
Neon1024 |
Or, load an element |
# |
Oct 4th 2016, 13:57 |
Neon1024 |
Is there a way to use a view template in a helper? |
# |
Oct 4th 2016, 13:57 |
xymanek |
https://github.com/cakephp/cakephp/blob/master/src/Database/Type/JsonType.php |
# |
Oct 4th 2016, 13:54 |
xymanek |
I'm pretty sure it was added as a type |
# |
Oct 4th 2016, 13:47 |
TheBreaker |
does query nicly though |
# |
Oct 4th 2016, 13:47 |
ard1m14 |
I agree but I am testing legacy code so don't want to spend too much effort fixing things which were done a while ago |
# |
Oct 4th 2016, 13:46 |
TheBreaker |
1 big ol json obj |
# |
Oct 4th 2016, 13:46 |
TheBreaker |
i fell into that |
# |
Oct 4th 2016, 13:46 |
TheBreaker |
yea |
# |
Oct 4th 2016, 13:46 |
Neon1024 |
Iâ??d be a little cautious that it would make me lazy and save everything as json :p |
# |
Oct 4th 2016, 13:46 |
ard1m14 |
thanks |
# |
Oct 4th 2016, 13:45 |
TheBreaker |
they are pretty nice |
# |
Oct 4th 2016, 13:45 |
Neon1024 |
Probably should really |
# |
Oct 4th 2016, 13:45 |
TheBreaker |
and i have to type cast the col its self as a text col to not crap out |
# |
Oct 4th 2016, 13:45 |
Neon1024 |
Iâ??ve not played with json columns in mysql yet :) |
# |
Oct 4th 2016, 13:45 |
TheBreaker |
i tried it with older 2.0 and i get a bunch of pdo errors |
# |
Oct 4th 2016, 13:45 |
TheBreaker |
yea i am for 1 project |
# |
Oct 4th 2016, 13:45 |
Neon1024 |
Assuming you were on MySQL 5.7+ |
# |
Oct 4th 2016, 13:44 |
Neon1024 |
TheBreaker: Not too sure, but you could certainly write your own data type class for it |
# |
Oct 4th 2016, 13:44 |
TheBreaker |
does 3.3 support mysql json datatype? |