silverstripe-installer/install.php
2017-10-03 03:19:23 +13:00

17 lines
964 B
PHP

<?php
/************************************************************************************
************************************************************************************
** **
** If you can read this text in your browser then you don't have PHP installed. **
** Please install PHP 5.6.0 or higher. **
** **
************************************************************************************
************************************************************************************/
if (!file_exists(__DIR__ . '/vendor/silverstripe/framework') || !file_exists(__DIR__ . '/vendor/silverstripe/framework/_config.php')) {
include 'install-frameworkmissing.html';
} else {
include './vendor/silverstripe/framework/src/Dev/Install/install.php';
}