Subversion Repositories cheapmusic

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
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
/*
24
 * the extra config variable of seo panel
25
 */
26
 
27
# The seo panel plugin directory
28
define('SP_PLUGINDIR', 'plugins');
29
 
30
# The seo panel plugin config file
31
define('SP_PLUGINCONF', 'conf.php');
32
 
33
# The seo panel plugin db file
34
define('SP_PLUGINDBFILE', 'database.sql');
35
 
36
# The seo panel plugin menu file
37
define('SP_PLUGINMENUFILE', 'menu.ctp.php');
38
 
39
# seo panel is hosted version or not
40
define('SP_HOSTED_VERSION', 0);
41
 
42
# seo panel is demo system or not
43
define('SP_DEMO', 0);
44
 
45
# seo panel language testing mode
46
define('SP_LANGTESTING', 0);
47
 
48
# seo panel multiple cron execution possible same day
49
define('SP_MULTIPLE_CRON_EXEC', 1);
50
 
51
# seo panel plugin info xml file
52
define('SP_PLUGININFOFILE', 'plugin.xml');
53
 
54
# seo panel theme info xml file
55
define('SP_THEMEINFOFILE', 'theme.xml');
56
 
57
# seo panel main site
58
define('SP_MAIN_SITE', 'https://www.seopanel.org');
59
 
60
# seo panel plugin site info
61
define('SP_PLUGINSITE', SP_MAIN_SITE . '/plugins/');
62
 
63
# The seo panel plugin upgrade db file
64
define('SP_PLUGINUPGRADEFILE', 'upgrade.sql');
65
 
66
# The seo panel pagination default
67
define('SP_PAGINGNO_DEFAULT', 10);
68
 
69
# prevent sql injection
70
define('SP_PREVENT_SQL_INJECTION', true);
71
 
72
# database persistent connection
73
define('SP_DB_PERSISTENT_CONNECTION', false);
74
 
75
# The seo panel api file
76
define('SP_API_FILE', 'api/api.php');
77
 
78
# The crawl log clear interval in days
79
define('SP_CRAWL_LOG_CLEAR_TIME', 90);
80
 
81
# The api language code
82
define('SP_API_LANG_CODE', 'en');
83
 
84
# The api language code
85
define('SP_CUSTOM_DEV', false);
86
 
87
# The seo panel help page
88
define('SP_HELP_LINK', 'https://www.seopanel.org/docs/');
89
 
90
# The seo panel forum page
91
define('SP_FORUM_LINK', 'http://forum.seopanel.in/');
92
 
93
# The seo panel support page
94
define('SP_SUPPORT_LINK', 'http://support.seofreetools.net/');
95
 
96
# The seo panel contact page
97
define('SP_CONTACT_LINK', SP_MAIN_SITE . '/contact/');
98
 
99
# The seo panel donate page
100
define('SP_DONATE_LINK', SP_MAIN_SITE . '/donate/');
101
 
102
# The seo panel download page
103
define('SP_DOWNLOAD_LINK', SP_MAIN_SITE . '/download/');
104
 
105
# The seo panel demo page
106
define('SP_DEMO_LINK', SP_MAIN_SITE . '/demo/');
107
 
108
# The seo panel news page
109
define('SP_NEWS_PAGE', SP_MAIN_SITE . '/news.php');
110
 
111
# The seo panel sponsors
112
define('SP_SPONSOR_PAGE', SP_MAIN_SITE . '/sponsors.php');
113
 
114
# The seo panel version page
115
define('SP_VERSION_PAGE', SP_MAIN_SITE . '/getversion.php');
116
 
117
# seo panel theme site url
118
define('SP_THEMESITE', SP_MAIN_SITE . '/themes/');
119
 
120
# seo panel cloud hosted link
121
define('SP_HOSTED_LINK', "http://www.seopanel.net");
122
 
123
# payment related variables
124
define('SP_PAYMENT_CANCEL_LINK', SP_WEBPATH."/payment_cancel.php");
125
define('SP_PAYMENT_RETURN_LINK', SP_WEBPATH."/payment_return.php");
126
 
127
# define search engine sync interval in days
128
define('SP_SYNC_SE_INTERVAL', 10);
129
?>