103 |
- |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
/***************************************************************************
|
|
|
4 |
* Copyright (C) 2009-2011 by Geo Varghese(www.seopanel.in) *
|
|
|
5 |
* sendtogeo@gmail.com *
|
|
|
6 |
* *
|
|
|
7 |
* This program is free software; you can redistribute it and/or modify *
|
|
|
8 |
* it under the terms of the GNU General Public License as published by *
|
|
|
9 |
* the Free Software Foundation; either version 2 of the License, or *
|
|
|
10 |
* (at your option) any later version. *
|
|
|
11 |
* *
|
|
|
12 |
* This program is distributed in the hope that it will be useful, *
|
|
|
13 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
14 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
15 |
* GNU General Public License for more details. *
|
|
|
16 |
* *
|
|
|
17 |
* You should have received a copy of the GNU General Public License *
|
|
|
18 |
* along with this program; if not, write to the *
|
|
|
19 |
* Free Software Foundation, Inc., *
|
|
|
20 |
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
|
|
21 |
***************************************************************************/
|
|
|
22 |
|
|
|
23 |
# The web path or url to access seo panel through browser.
|
154 |
- |
24 |
define('SP_WEBPATH', 'https://www.dev.findcheapmusic.com/seopanel');
|
103 |
- |
25 |
|
|
|
26 |
# DB settings - You can get this info from your web hosting provider.
|
|
|
27 |
# The name of the database for seo panel
|
|
|
28 |
define('DB_NAME', 'seopanel');
|
|
|
29 |
|
|
|
30 |
# DB database username
|
|
|
31 |
define('DB_USER', 'seopanel');
|
|
|
32 |
|
|
|
33 |
# DB database password
|
|
|
34 |
define('DB_PASSWORD', '!lemapoes!@');
|
|
|
35 |
|
|
|
36 |
# DB hostname
|
|
|
37 |
define('DB_HOST', 'localhost');
|
|
|
38 |
|
|
|
39 |
# The name of the database engine for seo panel
|
|
|
40 |
define('DB_ENGINE', 'mysql');
|
|
|
41 |
|
|
|
42 |
# The version of seo panel installed
|
|
|
43 |
define('SP_INSTALLED', '4.3.0');
|
|
|
44 |
|
|
|
45 |
# The DB debug mode
|
|
|
46 |
define('SP_DEBUG', 0);
|
|
|
47 |
|
|
|
48 |
# The seo panel seconds for session timeout
|
|
|
49 |
define('SP_TIMEOUT', 18000);
|
|
|
50 |
|
|
|
51 |
?>
|