Hallo
Ich habe hier ein Raspberry PI 4 wo noch Buster installiert ist.
Nun hab ich auf einem anderen PI das 64 bit System bookworm installiert und soweit auch alles wieder eingerichtet.
Allerdings funktioniert hier das php Script nicht (mehr)
PHP ist natürlich installiert
Das script fährt den Pi herunter
PHP-Script
PHP
<?php
if ($_GET['run']) {
# This code will run if ?run=true is set.
#exec("/path/to/name.sh");
$script = "sudo /home/pi/off.sh";
$run=`$script`;
}
?>
<!-- This link will add ?run=true to your URL, myfilename.php?run=true -->
<style type="text/css">
a { color: #ff0000; text-decoration: none; }
</style>
<a href="?run=true">PI OFF</a>
Display More
In dem off.sh Script steht
Bei dem alten System funktioniert das einwandfrei.
Hat da jemand nen Tipp für mich?