29
0
mirror of https://github.com/joomla/joomla-cms.git synced 2024-06-28 16:13:42 +00:00
cms/installation/configuration.php-dist
Niels Braczek 2ca2d4ebf0
Converted copyright statement to standard format (#29689)
* Converted copyright statement to standard format

* Converted copyright statement to standard format (re-done without rename heuristic)

* Converted copyright statement to standard format (re-done with new rename algorithm)

* Removed copyright year update

* Fixed tests to allow line feed at eof

* Reverted changes not directly related to copyright statement

* Exchanged copyright sign with '(C)' in SQL files

* Fixed creation date in XML files
(Why do people keep changing that?)

* Changed sw-KE.ini manually

* Removed link from copyright in SQL data
(their source, the XML files, do not contain the link)

* Replaced copyright sign with (C) in XML files

* Converted copyright statement for files in `build/`, `libraries/fof/` and `libraries/joomla/`

* Fixed encoding

* Replaced copyright sign with its ASCII representation '(C)' to avoid conflicts and improve consistency

* Reconstructed creation dates from JoomlaCode and source code

* Changed creationDate to creation date of that specific language file version using ISO format

* Update LegacyFactory.php
2020-08-12 17:57:18 +02:00

154 lines
4.9 KiB
Plaintext

<?php
/**
* @package Joomla.Installation
*
* @copyright (C) 2005 Open Source Matters, Inc. <https://www.joomla.org>
* @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 ie not using the web browser installer
* then rename this file to configuration.php eg
*
* 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.
*
* Finally move this file to the root folder of your Joomla installation eg
*
* UNIX -> mv configuration.php ../
* Windows -> copy configuration.php ../
*
*/
class JConfig
{
/* Site Settings */
public $offline = '0';
public $offline_message = 'This site is down for maintenance.<br /> Please check back again soon.';
public $display_offline_message = '1';
public $offline_image = '';
public $sitename = 'Joomla!'; // Name of Joomla site
public $editor = 'tinymce';
public $captcha = '0';
public $list_limit = '20';
public $access = '1';
public $frontediting = '1';
/* Database Settings */
public $dbtype = 'mysqli'; // Normally mysqli
public $host = 'localhost'; // This is normally set to localhost
public $user = ''; // DB username
public $password = ''; // DB password
public $db = ''; // DB database name
public $dbprefix = 'jos_'; // Do not change unless you need to!
/* Server Settings */
public $secret = 'FBVtggIk5lAzEU9H'; // Change this to something more secure
public $gzip = '0';
public $error_reporting = 'default';
public $helpurl = 'https://help.joomla.org/proxy?keyref=Help{major}{minor}:{keyref}&lang={langcode}';
public $ftp_host = '';
public $ftp_port = '';
public $ftp_user = '';
public $ftp_pass = '';
public $ftp_root = '';
public $ftp_enable = '0';
public $tmp_path = '/tmp'; // This path needs to be writable by Joomla!
public $log_path = '/administrator/logs'; // This path needs to be writable by Joomla!
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';
/* Session settings */
public $lifetime = '15'; // Session time
public $session_handler = 'database';
public $shared_session = '0';
public $session_memcache_server_host = 'localhost';
public $session_memcache_server_port = '11211';
public $session_memcached_server_host = 'localhost';
public $session_memcached_server_port = '11211';
public $session_redis_server_host = 'localhost';
public $session_redis_server_port = '6379';
public $session_redis_server_db = '0';
/* Mail Settings */
public $mailonline = '1';
public $mailer = 'mail';
public $mailfrom = '';
public $fromname = '';
public $massmailoff = '0';
public $replyto = '';
public $replytoname = '';
public $sendmail = '/usr/sbin/sendmail';
public $smtpauth = '0';
public $smtpuser = '';
public $smtppass = '';
public $smtphost = 'localhost';
public $smtpsecure = 'none';
public $smtpport = '25';
/* Cache Settings */
public $caching = '0';
public $cachetime = '15';
public $cache_handler = 'file';
public $cache_platformprefix = '0';
public $memcache_persist = '1';
public $memcache_compress = '0';
public $memcache_server_host = 'localhost';
public $memcache_server_port = '11211';
public $memcached_persist = '1';
public $memcached_compress = '0';
public $memcached_server_host = 'localhost';
public $memcached_server_port = '11211';
public $redis_persist = '1';
public $redis_server_host = 'localhost';
public $redis_server_port = '6379';
public $redis_server_auth = '';
public $redis_server_db = '0';
/* Proxy Settings */
public $proxy_enable = '0';
public $proxy_host = '';
public $proxy_port = '';
public $proxy_user = '';
public $proxy_pass = '';
/* Debug Settings */
public $debug = '0';
public $debug_lang = '0';
public $debug_lang_const = '1';
/* Meta Settings */
public $MetaDesc = 'Joomla! - the dynamic portal engine and content management system';
public $MetaKeys = 'joomla, Joomla';
public $MetaTitle = '1';
public $MetaAuthor = '1';
public $MetaVersion = '0';
public $MetaRights = '';
public $robots = '';
public $sitename_pagetitles = '0';
/* 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 = 'none';
/* Cookie Settings */
public $cookie_domain = '';
public $cookie_path = '';
/* Miscellaneous Settings */
public $asset_id = '1';
}