-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjcore.inc.php
32 lines (24 loc) · 875 Bytes
/
jcore.inc.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
/***************************************************************************
* jcore.inc.php
*
* Jul 05, 07:00:00 2009
* Copyright 2009 Istvan Petres (aka P.I.Julius)
* For licensing, see LICENSE or http://jcore.net/license
****************************************************************************/
define('SQL_HOST', 'localhost');
define('SQL_DATABASE', 'jcore_demo');
define('SQL_USER', 'julius');
define('SQL_PASS', '@julius');
define('SQL_PREFIX', '');
define('SITE_URL', 'http://localhost/projects/jcore.client/');
define('SITE_PATH', '/media/Data/Projects/jcore.client/');
define('JCORE_URL', 'http://localhost/projects/jcore/');
define('JCORE_PATH', '/media/Data/Projects/jcore/');
define('SEO_FRIENDLY_LINKS', true);
/*
* Do Not touch these unless you know what to do
*/
define('JCORE_VERSION', '1.0');
?>