Created
January 27, 2013 17:02
-
-
Save branquito/4649239 to your computer and use it in GitHub Desktop.
configuration-J-generic.php file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class JConfig { | |
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 = 'fidra'; | |
public $editor = 'tinymce'; | |
public $captcha = '0'; | |
public $list_limit = '20'; | |
public $access = '1'; | |
public $debug = '0'; | |
public $debug_lang = '0'; | |
public $dbtype = 'mysqli'; | |
public $host = 'localhost'; | |
public $user = ''; | |
public $password = ''; | |
public $db = 'fidra'; | |
public $dbprefix = 'wafi5_'; | |
public $live_site = ''; | |
public $secret = 'Cio1GptjoGHSucSz'; | |
public $gzip = '0'; | |
public $error_reporting = 'default'; | |
public $helpurl = 'http://help.joomla.org/proxy/index.php?option=com_help&keyref=Help{major}{minor}:{keyref}'; | |
public $ftp_host = '127.0.0.1'; | |
public $ftp_port = '21'; | |
public $ftp_user = ''; | |
public $ftp_pass = ''; | |
public $ftp_root = ''; | |
public $ftp_enable = '0'; | |
public $offset = 'UTC'; | |
public $mailer = 'mail'; | |
public $mailfrom = ''; | |
public $fromname = 'fidra'; | |
public $sendmail = '/usr/sbin/sendmail'; | |
public $smtpauth = '0'; | |
public $smtpuser = ''; | |
public $smtppass = ''; | |
public $smtphost = 'localhost'; | |
public $smtpsecure = 'none'; | |
public $smtpport = '25'; | |
public $caching = '0'; | |
public $cache_handler = 'file'; | |
public $cachetime = '15'; | |
public $MetaDesc = ''; | |
public $MetaKeys = ''; | |
public $MetaTitle = '1'; | |
public $MetaAuthor = '1'; | |
public $MetaVersion = '0'; | |
public $robots = ''; | |
public $sef = '1'; | |
public $sef_rewrite = '0'; | |
public $sef_suffix = '0'; | |
public $unicodeslugs = '0'; | |
public $feed_limit = '10'; | |
public $log_path = '/path/to/logs'; | |
public $tmp_path = '/path/to/tmp'; | |
public $lifetime = '150'; | |
public $session_handler = 'database'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment