Skip to content

Is it possible to change PHP error log output?

I have configured the error_log directive in my php.ini file, like this: And then I configured the error_reporting directive like this: When I check the error_log file, I see normal PHP warning/error text lines: Is there is a way to change output format? I mean, if I can print, for example, the IP address and…

Error: Class ‘Stripe’ not found

I’m trying to use the Stripe php api in a Bolt extension but it’s having trouble finding the class. I added the Stripe library to composer.json: And ran composer install. myextension/vendor/composer/autoload_classmap.php now shows the classes loaded: And now I’m trying to use it in the exten…