18 lines
399 B
PHP
18 lines
399 B
PHP
|
<?php
|
||
|
|
||
|
|
||
|
/* Change to E_ALL for development/debugging */
|
||
|
error_reporting (E_ALL);
|
||
|
|
||
|
/* Database backend, not really tested with other backends, so it's
|
||
|
not functional right now */
|
||
|
define ('DB_BACKEND', 'mysql');
|
||
|
|
||
|
if (! extension_loaded ('mysql'))
|
||
|
die ('Your PHP installation appears to be missing the MySQL extension which is required.');
|
||
|
|
||
|
require_once ('lib/libupdate_manager.php');
|
||
|
|
||
|
flush ();
|
||
|
?>
|