Advertisement
Guest User

Untitled

a guest
Jan 4th, 2018
691
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.84 KB | None | 0 0
  1. <?php
  2. /**
  3. * @package Joomla
  4. * @copyright Copyright (C) 2005 - 2015 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. $_SERVER['DOCUMENT_ROOT'] = "/var/www/vhosts/contabilefc.com.br/httpdocs";
  20.  
  21. class JConfig {
  22. /* Site Settings */
  23. public $offline = '0';
  24. public $offline_message = 'This site is down for maintenance.<br /> Please check back again soon.';
  25. public $display_offline_message = '1';
  26. public $offline_image = '';
  27. public $sitename = 'My CMS'; // Name of Joomla site
  28. public $editor = 'tinymce';
  29. public $captcha = '0';
  30. public $list_limit = '20';
  31. public $access = '1';
  32.  
  33. /* Database Settings */
  34. public $dbtype = 'mysql'; // Normally mysqli
  35. public $host = 'robb0346.locaweb.com.br:3306'; // This is normally set to localhost
  36. public $user = 'santi_joomla_5'; // DB username
  37. public $password = 'l!3LD7F6un'; // DB password
  38. public $db = 'santista_joomla_7'; // DB database name
  39. public $dbprefix = 'jos_'; // Do not change unless you need to!
  40.  
  41. /* Server Settings */
  42. public $secret = 'ciZefSmZNmm5N1ww'; // Change this to something more secure
  43. public $gzip = '0';
  44. public $error_reporting = 'default';
  45. public $helpurl = 'http://help.joomla.org/proxy/index.php?option=com_help&amp;keyref=Help{major}{minor}:{keyref}';
  46. public $ftp_host = '127.0.0.1';
  47. public $ftp_port = '21';
  48. public $ftp_user = '';
  49. public $ftp_pass = '';
  50. public $ftp_root = '';
  51. public $ftp_enable = '0';
  52. public $tmp_path = '/var/www/vhosts/contabilefc.com.br/httpdocs/tmp'; // Please check with your host that this is the correct path to the temp directory. This path needs to be writable by Joomla!
  53. public $log_path = '/var/www/vhosts/contabilefc.com.br/httpdocs/logs'; // Please check with your host that this is the correct path to the logs directory. This path needs to be writable by Joomla!
  54. public $live_site = ''; // Optional, full url to Joomla install.
  55. public $force_ssl = 0; // Force areas of the site to be SSL ONLY. 0 = None, 1 = Administrator, 2 = Both Site and Administrator
  56.  
  57. /* Locale Settings */
  58. public $offset = 'UTC';
  59. public $offset_user = 'UTC';
  60.  
  61. /* Session settings */
  62. public $lifetime = '15'; // Session time
  63. public $session_handler = 'database';
  64.  
  65. /* Mail Settings */
  66. public $mailer = 'mail';
  67. public $mailfrom = 'eliasfc@ibest.com.br';
  68. public $fromname = 'My CMS';
  69. public $sendmail = '/usr/sbin/sendmail';
  70. public $smtpauth = '0';
  71. public $smtpuser = '';
  72. public $smtppass = '';
  73. public $smtphost = 'example.com';
  74. public $smtpsecure = 'none';
  75. public $smtpport = '25';
  76.  
  77. /* Cache Settings */
  78. public $caching = '0';
  79. public $cachetime = '15';
  80. public $cache_handler = 'file';
  81.  
  82. /* Debug Settings */
  83. public $debug = '0';
  84. public $debug_lang = '0';
  85.  
  86. /* Meta Settings */
  87. public $MetaDesc = '';
  88. public $MetaKeys = '';
  89. public $MetaTitle = '1';
  90. public $MetaAuthor = '1';
  91. public $MetaVersion = '0';
  92. public $robots = '';
  93.  
  94. /* SEO Settings */
  95. public $sef = '1';
  96. public $sef_rewrite = '0';
  97. public $sef_suffix = '0';
  98. public $unicodeslugs = '0';
  99.  
  100. /* Feed Settings */
  101. public $feed_limit = '10';
  102. public $feed_email = 'author';
  103. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement