# |
Apr 3rd 2019, 15:25 |
birdy247 |
its pretty easy once you get above the clouds |
# |
Apr 3rd 2019, 15:25 |
neon1024 |
The interface for the guys in the call centre is all vue |
# |
Apr 3rd 2019, 15:25 |
birdy247 |
Similar here |
# |
Apr 3rd 2019, 15:25 |
birdy247 |
:+1: |
# |
Apr 3rd 2019, 15:25 |
neon1024 |
S’all good thanks, done a third project now which is up in prod |
# |
Apr 3rd 2019, 15:24 |
birdy247 |
How are you going with vue by the way? |
# |
Apr 3rd 2019, 15:24 |
neon1024 |
Probably variations on the same theme I would imagine |
# |
Apr 3rd 2019, 15:24 |
birdy247 |
will look at array_intersect |
# |
Apr 3rd 2019, 15:23 |
birdy247 |
I used array_diff and extract, as it was only part of the entity |
# |
Apr 3rd 2019, 15:23 |
birdy247 |
nice |
# |
Apr 3rd 2019, 15:23 |
neon1024 |
@birdy247 Also you could just do `array_intersect($first->toArray(), $second->toArray())` I reckon |
# |
Apr 3rd 2019, 15:22 |
neon1024 |
@birdy247 It gets very complicated if you also compare associations! |
# |
Apr 3rd 2019, 15:22 |
neon1024 |
@kieran.bowler I would suggest that your routes.php file still has `/` configured to load the PagesController |
# |
Apr 3rd 2019, 15:20 |
birdy247 |
extract and array diff :+1: |
# |
Apr 3rd 2019, 15:11 |
birdy247 |
Looking to compare 2 entities, trying to think of the most effieict way |
# |
Apr 3rd 2019, 15:09 |
gapiangco |
if yes, follow what @admad said and change the column field's data type from `boolean` to `string` (or varchar) |
# |
Apr 3rd 2019, 15:07 |
gapiangco |
@isaiah, do you mean changing the saved value IN the Database? |
# |
Apr 3rd 2019, 15:05 |
WAGWAN |
Hello |
# |
Apr 3rd 2019, 14:24 |
ricksaccous |
on prod? |
# |
Apr 3rd 2019, 14:24 |
ricksaccous |
is your nginx/apache set up correctly |
# |
Apr 3rd 2019, 13:59 |
kieran.bowler |
Hi all, I'm having an issue on my production server. I'm just getting it setup now - works fine locally but on prod I'm getting: That file does exist though :S |
# |
Apr 3rd 2019, 13:59 |
isaiah |
please how can i do it |
# |
Apr 3rd 2019, 13:58 |
admad |
or in your view check the boolean value and show text value accordingly |
# |
Apr 3rd 2019, 13:58 |
admad |
don't use boolean if you want to save text label |
# |
Apr 3rd 2019, 13:57 |
isaiah |
it saves as 0 in the database i will like to save as the label instead of 0 because the user will not understand what 0 means they want to see the value they checked |
# |
Apr 3rd 2019, 13:56 |
admad |
@development route priority depends on the order in which routes are connected |
# |
Apr 3rd 2019, 13:55 |
admad |
isaiah: change to what value and why? |
# |
Apr 3rd 2019, 13:25 |
isaiah |
so how can i change it to the value because the user will not understand |
# |
Apr 3rd 2019, 13:22 |
ricksaccous |
boolean in cakephp is just 0 or 1 in the database but when loaded into an entity it's recognized as true or false |
# |
Apr 3rd 2019, 13:20 |
neon1024 |
*ja`z hands* |
# |
Apr 3rd 2019, 13:20 |
neon1024 |
Boolean! |
# |
Apr 3rd 2019, 13:19 |
neon1024 |
Then it’ll save a 1 |
# |
Apr 3rd 2019, 13:19 |
neon1024 |
Click it |
# |
Apr 3rd 2019, 13:14 |
isaiah |
How can i change the value of cakephp checkbox its saves as 0 in my database |
# |
Apr 3rd 2019, 13:14 |
development |
I'll just check if the user is inside the plugin for now. I can see that with Router::url(). |
# |
Apr 3rd 2019, 13:13 |
isaiah |
hi |
# |
Apr 3rd 2019, 12:23 |
development |
Hi, I want to add a Router::redirect for file.xml in my app/Config/routes.php but I have a routes.php file in one of my plugins which contains Router::parseExtensions('xml'); and this seems to interfere with my app/Config/routes.php. Does anyone have an idea on how to handle this? Can I give the file.xml rule in app/Config/routes.php priority? Cake 2 by the way. |
# |
Apr 3rd 2019, 12:05 |
challgren |
@livia.scapin yep use $this->loadPlugins() in your testcase |
# |
Apr 3rd 2019, 11:59 |
slackebot2 |
really need in the test cases in which I really need them (which is actually just 2 because I'm mocking a lot in there, the other test cases where I don't use mocks seem to load everything just fine) Am I correct that loadPlugins() is the recommended way to go? |
# |
Apr 3rd 2019, 11:59 |
livia.scapin |
So I can either just bootstrap the application in the tests/bootstrap.php file somewhat like this: `$app = new \App\Application(dirname(__DIR__) . DS . 'config'); $app->bootstrap(); $app->pluginBootstrap();` Or bootstrap a TestApplication like the CakeDC users plugin, but that seems a lot of redundant code to me, which is why I figured I could just bootstrap the 'real' Application instead... Or use loadPlugins() for the plugins I |
# |
Apr 3rd 2019, 11:45 |
admad |
Might need a wee bit knowledge of rst syntax buy can figure it out by seeing other pages |