Nialld

Results 8 comments of Nialld

I have a solution which works for me, you need to assign the element in steps as selector 'body' and i also do placement 'mid-center' ``` let orphanCheck = function...

i was also having this issue and i believe it is related to persistence_id when creating a libmemcache instance, if undefined, phalcon will automatically create the instance with persistence_id =...

@nevernet sorry missed your question, can i see your config... i had to set this in both the session cache section and also the general cache section of my config......

@niden ive been porting our app over to v4 and cant get libmemcached session adapter to work at all. I have switched to stream adapter to move on, the data...

related to https://github.com/phalcon/cphalcon/issues/15837 . unserialize object does not initialize itself in the same way as a normally constructed object (which triggers onConstruct) i was using onConstruct to trigger `$this->getModelsManager()->keepSnapshots($this, $true);`...

this issue is happening with caching involved i have some steps to reproduce $somemodel = SomeModel::findFirst(1); // SomeModel descends from \Phalcon\Mvc\Model .. reads the data from the DB /** in...

should also say, i was able to work around this by overriding unserialize in my class that extends \Phalcon\Mvc\Model ``` /** * could be fixed by https://github.com/phalcon/cphalcon/issues/15837 * @param $data...

this issue still exists, ive moved the fix into a custom serialiser as such ``` class CustomPhp extends \Phalcon\Storage\Serializer\Php { public function unserialize($data): void { parent::unserialize($data); if ($this->data instanceof Model)...