Quick Search:

View

Revision:

Diff

Diff from 1268 to:

Annotations

Annotate by Age | Author | Mixed | None
/fisheye/browse/osCommerce/branches/frank/osc-tickets/install/includes/application.php

Annotated File View

hpdl
1
1 <?php
2 /*
mattice
151
3   $Id: application.php 1268 2007-02-27 00:15:48Z frank $
hpdl
1
4
5   osCommerce, Open Source E-Commerce Solutions
6   http://www.oscommerce.com
7
hpdl
383
8   Copyright (c) 2006 osCommerce
hpdl
1
9
10   Released under the GNU General Public License
11 */
12
13 // Set the level of error reporting
hpdl
471
14   error_reporting(E_ALL & ~E_NOTICE);
hpdl
1
15
hpdl
410
16   define('DEFAULT_LANGUAGE', 'en_US');
hpdl
450
17   define('HTTP_COOKIE_PATH', '');
18   define('HTTPS_COOKIE_PATH', '');
19   define('HTTP_COOKIE_DOMAIN', '');
20   define('HTTPS_COOKIE_DOMAIN', '');
hpdl
383
21
hpdl
1
22   require('../includes/functions/compatibility.php');
23
24   require('../includes/functions/general.php');
25   require('functions/general.php');
26   require('../includes/functions/html_output.php');
27
28   require('../includes/classes/database.php');
hpdl
410
29
frank
1268
30   require('../includes/classes/xml.php');
31
hpdl
977
32   session_start();
33
frank
1261
34   require('../admin/includes/classes/directory_listing.php');
35
hpdl
410
36   require('includes/classes/language.php');
37   $osC_Language = new osC_LanguageInstall();
hpdl
975
38
39   header('Content-Type: text/html; charset=' . $osC_Language->getCharacterSet());
hpdl
1
40 ?>