silverstripe-installer/install.php

17 lines
883 B
PHP
Raw Normal View History

<?php
/************************************************************************************
************************************************************************************
** **
** If you can read this text in your browser then you don't have PHP installed. **
** Please install PHP 5.5.0 or higher. **
** **
************************************************************************************
************************************************************************************/
2016-08-30 04:35:44 +02:00
if (!file_exists('framework') || !file_exists('framework/_config.php')) {
2017-05-14 11:48:27 +02:00
include "install-frameworkmissing.html";
2016-08-30 04:35:44 +02:00
} else {
2017-05-14 11:48:27 +02:00
include('./framework/src/Dev/Install/install.php');
2016-08-30 04:35:44 +02:00
}