26 lines
768 B
PHP
26 lines
768 B
PHP
|
|
<?php
|
||
|
|
/*
|
||
|
|
$Id: application.php,v 1.5 2003/07/09 01:11:05 hpdl Exp $
|
||
|
|
|
||
|
|
osCommerce, Open Source E-Commerce Solutions
|
||
|
|
http://www.oscommerce.com
|
||
|
|
|
||
|
|
Copyright (c) 2003 osCommerce
|
||
|
|
|
||
|
|
Released under the GNU General Public License
|
||
|
|
*/
|
||
|
|
|
||
|
|
// Set the level of error reporting
|
||
|
|
error_reporting(E_ALL & ~E_NOTICE);
|
||
|
|
|
||
|
|
// Check if register_globals is enabled.
|
||
|
|
// Since this is a temporary measure this message is hardcoded. The requirement will be removed before 2.2 is finalized.
|
||
|
|
if (function_exists('ini_get')) {
|
||
|
|
ini_get('register_globals') or exit('FATAL ERROR: register_globals is disabled in php.ini, please enable it!');
|
||
|
|
}
|
||
|
|
|
||
|
|
require('includes/functions/general.php');
|
||
|
|
require('includes/functions/database.php');
|
||
|
|
require('includes/functions/html_output.php');
|
||
|
|
?>
|