Free Shipping, Business Levels correction, Products Buying, Fonts

This commit is contained in:
Kevin Adametz 2023-01-25 12:37:29 +01:00
parent 3f2fbd6d5b
commit 0341c9c189
197 changed files with 9161 additions and 329 deletions

View file

@ -41,7 +41,7 @@ class CronController extends Controller
public function action($action = false, $key = false){
if($key !== 'key'){
if($key !== 'CqZHL79FwUCcy9pjvi'){
abort(404);
}
if($action === 'check_payments_account'){
@ -269,4 +269,15 @@ class CronController extends Controller
}
public function runCron($key)
{
if($key !== 'G8ZvEbnP8fEPfnWX4L'){
abort(404);
}
exec("/bin/bash ../cron_script.sh 2>&1", $out, $result);
echo "Returncode: " .$result ."<br>";
echo "Ausgabe des Scripts: " ."<br>";
echo "<pre>"; print_r($out);
}
}