Oleg Matrozov

Results 8 comments of Oleg Matrozov

> Could you provide wider stack trace? This is the full stack trace that I see in the console output in both cases.

It looks like after executing handleFatalError and unset($this->_memoryReserve), a handleException occurs and calls the "unregister" method, which leads to a crash. But I haven't figured out yet why this happens...

I tried experimenting with other fatal errors, such as the memory limit. But on both versions of PHP the result was the same and correct. Probably the problem is in...

> Does it help if you change `unset($this->_memoryReserve)` with `$this->_memoryReserve = null`? Yes, this fixes the crash inside the ErrorHandler and I see the original exception from imap in the...

Yes, it's strange. Because in handleFatalError and handleException I get the same error. I thought that they generally call each other - but this is not so. It seems that...

On php 8.3 I get a serial call: ``` handleFatalError handleError handleException ``` They all cause from outside, and not from each other. On php 8.2 only: ``` handleFatalError handleError...

I am wrong. handleException is the response to throw $exception in handleError. Those. it's essentially an indirect challenge to each other. But in php 8.2 this does not lead to...

I noticed that my new mail server basically forbids creating folders with a dot "." in the title. That is, even if I changed the type of separator, it would...