# |
Mar 15th 2019, 15:25 |
admad |
@gareth.ellis might be a windows specific issue. I haven't encountered issue with file cache on 7.2 on linux |
# |
Mar 15th 2019, 15:20 |
gareth.ellis |
just wondered if anyone else had seen the same thing with cake |
# |
Mar 15th 2019, 15:20 |
gareth.ellis |
i've read through the php bug list |
# |
Mar 15th 2019, 15:20 |
gareth.ellis |
I can't see any changes in php 7.2 to do with streams/file system |
# |
Mar 15th 2019, 15:20 |
gareth.ellis |
doesn't happen in php 7.1 |
# |
Mar 15th 2019, 15:20 |
gareth.ellis |
then a bunch of errors that happen in php shutdown |
# |
Mar 15th 2019, 15:20 |
gareth.ellis |
so I get green tests |
# |
Mar 15th 2019, 15:19 |
gareth.ellis |
initiated by `Mysql::__destruct` |
# |
Mar 15th 2019, 15:19 |
gareth.ellis |
and then in the shutdown sequence |
# |
Mar 15th 2019, 15:19 |
gareth.ellis |
read/write both get called twice, once setting up cakephp core cache as part of testsuite bootstrap |
# |
Mar 15th 2019, 15:19 |
gareth.ellis |
no i'm using xdebug |
# |
Mar 15th 2019, 15:18 |
neon1024 |
Since swapped to using `Log::debug()` more often now |
# |
Mar 15th 2019, 15:18 |
neon1024 |
Are you certain that it’s not called more than once and you’ve used `var_dump();exit;` so only seeing the first executions passed params? I do that all the time |
# |
Mar 15th 2019, 15:17 |
gareth.ellis |
yes that's a php constant |
# |
Mar 15th 2019, 15:17 |
gareth.ellis |
i've step-debugged it and it creates the `_File` property as an `SplFileObject` in `FileEngine::read()` |
# |
Mar 15th 2019, 15:17 |
neon1024 |
I presume the constant `LOCK_EX` is defined? |
# |
Mar 15th 2019, 15:16 |
gareth.ellis |
this is in `FileEngine::write()` |
# |
Mar 15th 2019, 15:16 |
gareth.ellis |
the middle line there is line 138 |
# |
Mar 15th 2019, 15:16 |
gareth.ellis |
` if ($this->settings['lock']) { $this->_File->flock(LOCK_EX); }` |
# |
Mar 15th 2019, 15:16 |
gareth.ellis |
`Warning: flock(): supplied resource is not a valid stream resource in C:\inetpub\itrans\app\Vendor\cakephp\cakephp\lib\Cake\Cache\Engine\FileEngine.php on line 138 ` |
# |
Mar 15th 2019, 15:15 |
gareth.ellis |
good question |
# |
Mar 15th 2019, 15:15 |
challgren |
Well whats the exact error? |
# |
Mar 15th 2019, 15:15 |
gareth.ellis |
i'd like to understand why this is happening and address it directly |
# |
Mar 15th 2019, 15:15 |
gareth.ellis |
I feel like that just hides the problem |
# |
Mar 15th 2019, 15:13 |
neon1024 |
Perhaps disable cache whilst the tests are running? |
# |
Mar 15th 2019, 15:03 |
gareth.ellis |
:weary: |
# |
Mar 15th 2019, 15:03 |
gareth.ellis |
or when running whole test suite |
# |
Mar 15th 2019, 15:03 |
gareth.ellis |
I haven't seen any problems with it via web |
# |
Mar 15th 2019, 15:03 |
gareth.ellis |
so the test actually passes, but I still get this random noise |
# |
Mar 15th 2019, 15:02 |
gareth.ellis |
if I run a single test which hits the database, when the `Mysql::__destruct()` gets called at the end of the test run, it tries to write to the model method cache, and I get a bunch of warnings/errors |
# |
Mar 15th 2019, 15:02 |
gareth.ellis |
this is a long-shot, but has anyone had any problems with `FileEngine` cache on cake 2.10 and php 7.2? |
# |
Mar 15th 2019, 14:45 |
ricksaccous |
or should i drop the belongsTo and relate it differently based on modified conditions or something |
# |
Mar 15th 2019, 14:45 |
ricksaccous |
would this even make sense |
# |
Mar 15th 2019, 14:45 |
ricksaccous |
but i also want it to belongto the latest record of the model it has many of |
# |
Mar 15th 2019, 14:44 |
ricksaccous |
so i have a model that has many of another model |
# |
Mar 15th 2019, 14:14 |
cakephp-slack |
Nice! Thnx for the info! |
# |
Mar 15th 2019, 14:10 |
neon1024 |
You can nest prefixes too which is a super handy feature I think 8) |
# |
Mar 15th 2019, 14:10 |
neon1024 |
`Router::prefix('admin', function (RouteBuilder $routes) {` |
# |
Mar 15th 2019, 14:10 |
neon1024 |
`Router::scope('/', function (RouteBuilder $routes) { }` |
# |
Mar 15th 2019, 14:10 |
neon1024 |
Yep |
# |
Mar 15th 2019, 14:07 |
cakephp-slack |
Do I put my “default” routing in scope(‘/’) and my prefix routing in prefix(‘admin’)? |