Reminder Copy to Company Mail

okay my provider tells me… to get the right php cli Version i must explicite execute the right php version with the exec command… is this possible ?

Code example

<?php
exec(/usr/bin/php81 -v);
?>

I can`t finde the right file to look closer

okay i test this and it`s working

exec("php81 -v", $output, $retval);

and

system('php81 -v', $output);

gives me the right cli Version

hi… one of the last update has fixed the Problem reminders currently working

2 Likes

Glad to hear it, thanks for the update!