-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinstall.php
16 lines (14 loc) · 877 Bytes
/
install.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?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. **
** **
************************************************************************************
************************************************************************************/
if (!file_exists('framework') || !file_exists('framework/_config.php')) {
include "install-frameworkmissing.html";
} else {
include('./framework/src/Dev/Install/install.php');
}