| [ Index ] |
PHP Cross Reference of Joomla 2.5.4 DE |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * @package Joomla 4 * @copyright Copyright (C) 2005 - 2012 Open Source Matters. All rights reserved. 5 * @license GNU General Public License version 2 or later; see LICENSE.txt 6 * 7 * ------------------------------------------------------------------------- 8 * THIS SHOULD ONLY BE USED AS A LAST RESORT WHEN THE WEB INSTALLER FAILS 9 * 10 * If you are installing Joomla! manually i.e. not using the web browser installer 11 * then rename this file to configuration.php e.g. 12 * 13 * UNIX -> mv configuration.php-dist configuration.php 14 * Windows -> rename configuration.php-dist configuration.php 15 * 16 * Now edit this file and configure the parameters for your site and 17 * database. 18 */ 19 class JConfig { 20 /* Site Settings */ 21 public $offline = '0'; 22 public $offline_message = 'This site is down for maintenance.<br /> Please check back again soon.'; 23 public $display_offline_message = '1'; 24 public $offline_image = ''; 25 public $sitename = 'Joomla!'; // Name of Joomla site 26 public $editor = 'tinymce'; 27 public $captcha = '0'; 28 public $list_limit = '20'; 29 public $root_user = '42'; 30 public $access = '1'; 31 32 /* Database Settings */ 33 public $dbtype = 'mysql'; // Normally mysql 34 public $host = 'localhost'; // This is normally set to localhost 35 public $user = ''; // DB username 36 public $password = ''; // DB password 37 public $db = ''; // DB database name 38 public $dbprefix = 'jos_'; // Do not change unless you need to! 39 40 /* Server Settings */ 41 public $secret = 'FBVtggIk5lAzEU9H'; // Change this to something more secure 42 public $gzip = '0'; 43 public $error_reporting = 'default'; 44 public $helpurl = 'http://help.joomla.org/proxy/index.php?option=com_help&keyref=Help{major}{minor}:{keyref}'; 45 public $ftp_host = ''; 46 public $ftp_port = ''; 47 public $ftp_user = ''; 48 public $ftp_pass = ''; 49 public $ftp_root = ''; 50 public $ftp_enable = ''; 51 public $tmp_path = '/tmp'; 52 public $log_path = '/var/logs'; 53 public $live_site = ''; // Optional, Full url to Joomla install. 54 public $force_ssl = 0; // Force areas of the site to be SSL ONLY. 0 = None, 1 = Administrator, 2 = Both Site and Administrator 55 56 /* Locale Settings */ 57 public $offset = 'UTC'; 58 public $offset_user = 'UTC'; 59 60 /* Session settings */ 61 public $lifetime = '15'; // Session time 62 public $session_handler = 'database'; 63 64 /* Mail Settings */ 65 public $mailer = 'mail'; 66 public $mailfrom = ''; 67 public $fromname = ''; 68 public $sendmail = '/usr/sbin/sendmail'; 69 public $smtpauth = '0'; 70 public $smtpuser = ''; 71 public $smtppass = ''; 72 public $smtphost = 'localhost'; 73 74 /* Cache Settings */ 75 public $caching = '0'; 76 public $cachetime = '15'; 77 public $cache_handler = 'file'; 78 79 /* Debug Settings */ 80 public $debug = '0'; 81 public $debug_lang = '0'; 82 83 /* Meta Settings */ 84 public $MetaDesc = 'Joomla! - the dynamic portal engine and content management system'; 85 public $MetaKeys = 'joomla, Joomla'; 86 public $MetaTitle = '1'; 87 public $MetaAuthor = '1'; 88 public $MetaVersion = '0'; 89 public $robots = ''; 90 91 /* SEO Settings */ 92 public $sef = '1'; 93 public $sef_rewrite = '0'; 94 public $sef_suffix = '0'; 95 public $unicodeslugs = '0'; 96 97 /* Feed Settings */ 98 public $feed_limit = 10; 99 public $feed_email = 'author'; 100 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Tue Apr 3 11:40:28 2012 | Cross-referenced by PHPXref 0.7.1 |