Skip to content

Crontab via exec() not working with PHP 7.4 / Deb 10

Bit of a hard one to debug as I’m working with both a new version of PHP and a new OS on a new server. I have a cron management system in PHP that allows me too add / remove or enable / disable cronjobs. On another current Deb 8 server with PHP 7.2 it works flawlessly using the following

PhpStorm marking used CSS selectors as unused

I wanted to use PHP in my CSS so I changed the file extension of my .css file to .php and instead of using I used require_once to include it into my other file. Now PhpStorm sees the …

Trigger Stripe SCA redirection for authentication

I have this stripe file StripePayment.php and i am charging the card like this This code is able to charge cards but can’t charge cards where 3D/SCA is required i.e European cards. My question, is there a way i can request stripe to redirect the user to the card issuing bank for authentication so that t…