Stanislav Ilnytskyi

Results 65 comments of Stanislav Ilnytskyi

I think the dump can be converted into https://www.speedscope.app/ compatible format but a custom watcher script needed. Probably related discussion: https://github.com/NoiseByNorthwest/php-spx/issues/197

Maybe native API for observation `zend_observer_fcall_handlers` and `zend_observer_fcall_register` can be added for PHP > 8 instead of overriding `zend_execute_ex`. The only disadvantage it does not capture internal functions calls, but...

I wanted to set up dev environment to dig into source code of spx and php, and nothing worked :( `--enable-debug` did not work. Thanks for suggestion, I look through...

There is php function `get_defined_vars();` if called at the beginning of the method will return arguments and names. Then some custom serializer needed to produce nice output. (smth like `json_encode`...

I checked xdebug tracer and it looks like it does almost exactly what I reported: In machine traced format it outputs simplified arguments. Running xdebug tracer with config like this....

You might take a look at my PR https://github.com/magento/magento2/pull/34226 I suggested replacement of repo for simple insert on duplicate, migth fix some performance

@sidolov well, ok. But for some cases it's not suitable. In my case I faced this issue when wanted to add some additional handlers for payment method in adminhtml area,...

@kandy my case if the same as I described and what magento team confirmed as a bug. `I believe that if you add base configuration to your area configuration, all...

UPD: after some more googling it's just: https://forum.strapi.io/t/how-do-i-use-the-seo-plugin/20638/2 it needs to use url like this ``` api.example.com/api/articles?populate=*,seo.metaImage ``` Did you manage to find some solution / workaround? I also faced...