First git commit
This commit is contained in:
14
public_html/lib/bootstrap.php
Normal file
14
public_html/lib/bootstrap.php
Normal file
@ -0,0 +1,14 @@
|
||||
<?php
|
||||
// Single include for every page.
|
||||
require_once __DIR__ . '/config.php';
|
||||
require_once __DIR__ . '/db.php';
|
||||
require_once __DIR__ . '/auth.php';
|
||||
require_once __DIR__ . '/ui.php';
|
||||
require_once __DIR__ . '/mud.php';
|
||||
|
||||
session_boot();
|
||||
db(); // ensure schema exists
|
||||
|
||||
// WAP gateways cache aggressively; force revalidation.
|
||||
header('Cache-Control: no-cache, no-store, must-revalidate');
|
||||
header('Pragma: no-cache');
|
||||
Reference in New Issue
Block a user