webcron/webcron.old/bootstrap.php

13 lines
205 B
PHP
Raw Normal View History

2021-04-06 19:33:20 +02:00
<?php
session_start();
require_once "vendor/autoload.php";
if( ini_get('safe_mode') ){
die("Cannot run in safe mode");
}
if (!file_exists(__DIR__ . "/.env")) {
die ("Cannot find config file");
2021-04-06 22:20:18 +02:00
}