webcron/webcron.old/bootstrap.php

13 lines
205 B
PHP

<?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");
}