# |
Feb 1st 2018, 13:46 |
netstyler |
found the issue |
# |
Feb 1st 2018, 13:39 |
ooskar1233 |
did you try to run builtin server? |
# |
Feb 1st 2018, 13:38 |
netstyler |
php7.1-sqlite3 <== is installed, I think sqlite is not the issue |
# |
Feb 1st 2018, 13:37 |
netstyler |
okay will check the config |
# |
Feb 1st 2018, 13:37 |
admad |
then it's url rewriting issue |
# |
Feb 1st 2018, 13:37 |
ooskar1233 |
check if you get the error when you run `./bin/cake server`, if not it's server conf. issue |
# |
Feb 1st 2018, 13:36 |
netstyler |
from nginx server |
# |
Feb 1st 2018, 13:36 |
admad |
404 page is from webserver or cakephp? |
# |
Feb 1st 2018, 13:35 |
netstyler |
rest of the app works |
# |
Feb 1st 2018, 13:34 |
netstyler |
it tries to to load /debug_kit/js/toolbar.js?1514950494 but gives 404 |
# |
Feb 1st 2018, 13:34 |
admad |
make sure you have pdo-sqlite installed and URL rewriting enabled for your server |
# |
Feb 1st 2018, 13:33 |
netstyler |
Hi all, I moved from a osx dev env to a linux dev env and now the debug_kit assets are not loaded anymore... someone any hint how come? |
# |
Feb 1st 2018, 13:26 |
ooskar1233 |
`FrozenTime::setToStringFormat('yyyy-MM-dd HH:mm:ss');` in `bootstrap.php` should do the job |
# |
Feb 1st 2018, 13:24 |
madrid998 |
ok, I will read that over |
# |
Feb 1st 2018, 13:23 |
ooskar1233 |
@madrid998 ^ |
# |
Feb 1st 2018, 13:23 |
ooskar1233 |
https://book.cakephp.org/3.0/en/core-libraries/time.html#setting-the-default-locale-and-format-string |
# |
Feb 1st 2018, 13:23 |
ooskar1233 |
check this one out |
# |
Feb 1st 2018, 13:22 |
ooskar1233 |
maybe something is wrong with your default datetime format config |
# |
Feb 1st 2018, 13:17 |
madrid998 |
it works when I do $myDateTime = new DateTime($MyFrozenTime->format('c')) |
# |
Feb 1st 2018, 13:17 |
madrid998 |
Does anyone know why my FozenDateDatime object looses seconds when using it to create a DateTime object like this: $myDateTime = new DateTime($MyFrozenTime)? |
# |
Feb 1st 2018, 11:33 |
gaetansnl |
@hmic It's for multi tenant, I switch the database one time in a middleware but I also need to switch it somewhere in the code. // You mean instead of clearing TableRegistry, I change all tables connections inside his cache ? I think I need a custom TableLocator to do that |
# |
Feb 1st 2018, 11:26 |
hmic |
you can tell the tableregistry to replace an alias |
# |
Feb 1st 2018, 11:26 |
hmic |
gaetansnl: whats the usecase? |
# |
Feb 1st 2018, 11:25 |
gaetansnl |
Hello, when I create a connection alias, I clear the table registry to clear cached tables. It works fine for new calls to TableRegistry::get. But sometimes I have models already loaded in controllers, is there a way to reload them or I need to do it manually ? |
# |
Feb 1st 2018, 11:10 |
turkles |
Text based game, Torn |
# |
Feb 1st 2018, 11:10 |
neon1024 |
Ah, I need a new Destiny 2 clan :P |
# |
Feb 1st 2018, 11:10 |
turkles |
nothing interesting :$ |
# |
Feb 1st 2018, 11:09 |
neon1024 |
What’s the game? :slightly_smiling_face: |
# |
Feb 1st 2018, 11:09 |
neon1024 |
Oh I see, okay :thumbsup: |
# |
Feb 1st 2018, 11:09 |
neon1024 |
Well a custom finder could do that for you when you run the query |
# |
Feb 1st 2018, 11:09 |
turkles |
I'm ripping the data off a games API anyway which provides just the days total |
# |
Feb 1st 2018, 11:09 |
turkles |
yes but then I would need to record each stint to know total days overall, works for the current one |
# |
Feb 1st 2018, 11:08 |
neon1024 |
Well you could use the Timestamp behaviour to write the fields for you automagically |
# |
Feb 1st 2018, 11:08 |
turkles |
meh, they switch between them too often to store the dates |
# |
Feb 1st 2018, 11:07 |
neon1024 |
So you avoid the “magic join table” |
# |
Feb 1st 2018, 11:07 |
neon1024 |
`Gamers hasMany Memberships belongsTo Clans` |
# |
Feb 1st 2018, 11:07 |
neon1024 |
If you’re storing lots of data in the join, I’d be tempted to make a proper join table and name it something relevant |
# |
Feb 1st 2018, 11:06 |
neon1024 |
So you can work out days in your SQL |
# |
Feb 1st 2018, 11:06 |
neon1024 |
I’d recommend storing the `join_datetime` and `leave_datetime` |
# |
Feb 1st 2018, 11:05 |
turkles |
there are other things in my join table which I want to track, like days in clan, which make it also fiddly to record things under an old _clan table |
# |
Feb 1st 2018, 11:05 |
ooskar1233 |
hm, thought that self-referencing would be user hasmany users |