wahlhelfer/setup/config/config.php
Klaus-Uwe Mitterer b384099d9b Restructuring a few things
Finally adding the setup files ._.
2016-02-07 23:16:32 +01:00

21 lines
655 B
PHP
Executable file

<?php
$config['header'] = "PHP Setup Wizard";
$config['applicationPath'] = "../../../";
$config['database_file'] = "app/config/database.php";
// INTRODUCTION
$introduction = array();
$introduction["product"] = "PHP Setup Wizard";
$introduction["productVersion"] = "1.0";
$introduction["company"] = "WolveWare e.U.";
// SERVER REQUIREMENTS
$requirements = array();
$requirements["phpVersion"] = "5";
$requirements["extensions"] = array("mysql", "pcre");
// FILE PERMISSIONS
// r = readable, w = writable, x = executable
$filePermissions = array();
$filePermissions["app/config/database.php"] = "rw";
$filePermissions["app/tmp"] = "rw";