YaWK  24.1
Yet another WebKit
setup.php
Go to the documentation of this file.
1 <?php
2 session_start();
3 // error_reporting(E_ALL ^ E_STRICT); // show all erros - for development purpose only
4 //error_reporting(0); // ALL ERRORS OFF - DEFAULT FOR PRODUCTION USE!
5  // HIDE ALL NOTICES, ERRORS AND WARNINGS
6 
7 // if installer is not set
8 require_once('system/classes/installer.php');
9 // create new object
10 $installer = new \YAWK\installer();
11 // initialize
12 $installer->init();
$installer
Definition: setup.php:10