0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
joomla
/
1.7.2-0
/
standard
/
scripts
/
[
Home
]
File: configuration.php.in
<?php /** * @version $Id: configuration.php-dist 21484 2011-06-08 00:57:51Z dextercowley $ * @package Joomla * @copyright Copyright (C) 2005 - 2011 Open Source Matters. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt * * ------------------------------------------------------------------------- * THIS SHOULD ONLY BE USED AS A LAST RESORT WHEN THE WEB INSTALLER FAILS * * If you are installing Joomla! manually i.e. not using the web browser installer * then rename this file to configuration.php e.g. * * UNIX -> mv configuration.php-dist configuration.php * Windows -> rename configuration.php-dist configuration.php * * Now edit this file and configure the parameters for your site and * database. */ $_SERVER['DOCUMENT_ROOT'] = "@@ROOT_DIR@@"; class JConfig { /* Site Settings */ public $offline = '0'; public $offline_message = 'This site is down for maintenance.<br /> Please check back again soon.'; public $sitename = '@@TITLE@@'; // Name of Joomla site public $editor = 'tinymce'; public $list_limit = '20'; public $root_user = '42'; public $access = '1'; /* Database Settings */ public $dbtype = '@@DB_MAIN_TYPE@@'; // Normally mysql public $host = '@@DB_MAIN_ADDRESS@@'; // This is normally set to localhost public $user = '@@DB_MAIN_LOGIN@@'; // MySQL username public $password = '@@DB_MAIN_PASSWORD@@'; // MySQL password public $db = '@@DB_MAIN_NAME@@'; // MySQL database name public $dbprefix = '@@DB_MAIN_PREFIX@@jos_'; // Do not change unless you need to! /* Server Settings */ public $secret = '@@SECRET_KEY@@'; // Change this to something more secure public $gzip = '0'; public $error_reporting = '-1'; public $helpurl = 'http://help.joomla.org/proxy/index.php?option=com_help&keyref=Help{major}{minor}:{keyref}'; public $ftp_host = ''; public $ftp_port = ''; public $ftp_user = ''; public $ftp_pass = ''; public $ftp_root = ''; public $ftp_enable = ''; public $tmp_path = '@@ROOT_DIR@@/tmp'; public $log_path = '@@ROOT_DIR@@/logs'; public $live_site = ''; // Optional, Full url to Joomla install. public $force_ssl = 0; // Force areas of the site to be SSL ONLY. 0 = None, 1 = Administrator, 2 = Both Site and Administrator /* Locale Settings */ public $offset = 'UTC'; public $offset_user = 'UTC'; /* Session settings */ public $lifetime = '15'; // Session time public $session_handler = 'database'; /* Mail Settings */ public $mailer = '@@MAILER@@'; public $mailfrom = '@@ADMIN_EMAIL@@'; public $fromname = '@@TITLE@@'; public $sendmail = '/usr/sbin/sendmail'; public $smtpauth = '0'; public $smtpuser = ''; public $smtppass = ''; public $smtphost = '@@SMTP_HOST@@'; /* Cache Settings */ public $caching = '0'; public $cachetime = '15'; public $cache_handler = 'file'; /* Debug Settings */ public $debug = '0'; public $debug_lang = '0'; /* Meta Settings */ public $MetaDesc = 'Joomla! - the dynamic portal engine and content management system'; public $MetaKeys = 'joomla, Joomla'; public $MetaAuthor = '1'; /* SEO Settings */ public $sef = '1'; public $sef_rewrite = '0'; public $sef_suffix = '0'; public $unicodeslugs = '0'; /* Feed Settings */ public $feed_limit = 10; public $feed_email = 'author'; } ?>