Blame | Last modification | View Log | RSS feed
<?php/**************************************************************************** Copyright (C) 2009-2011 by Geo Varghese(www.seopanel.in) ** sendtogeo@gmail.com ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Foundation; either version 2 of the License, or ** (at your option) any later version. ** ** This program is distributed in the hope that it will be useful, ** but WITHOUT ANY WARRANTY; without even the implied warranty of ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ** GNU General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with this program; if not, write to the ** Free Software Foundation, Inc., ** 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ****************************************************************************//** the extra config variable of seo panel*/# The seo panel plugin directorydefine('SP_PLUGINDIR', 'plugins');# The seo panel plugin config filedefine('SP_PLUGINCONF', 'conf.php');# The seo panel plugin db filedefine('SP_PLUGINDBFILE', 'database.sql');# The seo panel plugin menu filedefine('SP_PLUGINMENUFILE', 'menu.ctp.php');# seo panel is hosted version or notdefine('SP_HOSTED_VERSION', 0);# seo panel is demo system or notdefine('SP_DEMO', 0);# seo panel language testing modedefine('SP_LANGTESTING', 0);# seo panel multiple cron execution possible same daydefine('SP_MULTIPLE_CRON_EXEC', 1);# seo panel plugin info xml filedefine('SP_PLUGININFOFILE', 'plugin.xml');# seo panel theme info xml filedefine('SP_THEMEINFOFILE', 'theme.xml');# seo panel main sitedefine('SP_MAIN_SITE', 'https://www.seopanel.org');# seo panel plugin site infodefine('SP_PLUGINSITE', SP_MAIN_SITE . '/plugins/');# The seo panel plugin upgrade db filedefine('SP_PLUGINUPGRADEFILE', 'upgrade.sql');# The seo panel pagination defaultdefine('SP_PAGINGNO_DEFAULT', 10);# prevent sql injectiondefine('SP_PREVENT_SQL_INJECTION', true);# database persistent connectiondefine('SP_DB_PERSISTENT_CONNECTION', false);# The seo panel api filedefine('SP_API_FILE', 'api/api.php');# The crawl log clear interval in daysdefine('SP_CRAWL_LOG_CLEAR_TIME', 90);# The api language codedefine('SP_API_LANG_CODE', 'en');# The api language codedefine('SP_CUSTOM_DEV', false);# The seo panel help pagedefine('SP_HELP_LINK', 'https://www.seopanel.org/docs/');# The seo panel forum pagedefine('SP_FORUM_LINK', 'http://forum.seopanel.in/');# The seo panel support pagedefine('SP_SUPPORT_LINK', 'http://support.seofreetools.net/');# The seo panel contact pagedefine('SP_CONTACT_LINK', SP_MAIN_SITE . '/contact/');# The seo panel donate pagedefine('SP_DONATE_LINK', SP_MAIN_SITE . '/donate/');# The seo panel download pagedefine('SP_DOWNLOAD_LINK', SP_MAIN_SITE . '/download/');# The seo panel demo pagedefine('SP_DEMO_LINK', SP_MAIN_SITE . '/demo/');# The seo panel news pagedefine('SP_NEWS_PAGE', SP_MAIN_SITE . '/news.php');# The seo panel sponsorsdefine('SP_SPONSOR_PAGE', SP_MAIN_SITE . '/sponsors.php');# The seo panel version pagedefine('SP_VERSION_PAGE', SP_MAIN_SITE . '/getversion.php');# seo panel theme site urldefine('SP_THEMESITE', SP_MAIN_SITE . '/themes/');# seo panel cloud hosted linkdefine('SP_HOSTED_LINK', "http://www.seopanel.net");# payment related variablesdefine('SP_PAYMENT_CANCEL_LINK', SP_WEBPATH."/payment_cancel.php");define('SP_PAYMENT_RETURN_LINK', SP_WEBPATH."/payment_return.php");# define search engine sync interval in daysdefine('SP_SYNC_SE_INTERVAL', 10);?>