Annotation of /mambo/branches/4.5.3h/configuration.php-dist
Parent Directory
|
Revision Log
Revision 1414 - (view) (download)
| 1 : | root | 1 | <?php |
| 2 : | /** | ||
| 3 : | elpie | 1414 | * @package Mambo |
| 4 : | * @author Mambo Foundation Inc see README.php | ||
| 5 : | * @copyright Mambo Foundation Inc. | ||
| 6 : | * See COPYRIGHT.php for copyright notices and details. | ||
| 7 : | chanh | 1393 | * @license GNU/GPL Version 2, see LICENSE.php |
| 8 : | elpie | 1414 | * Mambo is free software; you can redistribute it and/or |
| 9 : | * modify it under the terms of the GNU General Public License | ||
| 10 : | * as published by the Free Software Foundation; version 2 of the License. | ||
| 11 : | */ | ||
| 12 : | root | 1 | * |
| 13 : | * ------------------------------------------------------------------------- | ||
| 14 : | * If you are installing Mambo manually i.e. not using the web installer | ||
| 15 : | * then rename this file to configuration.php e.g. | ||
| 16 : | * | ||
| 17 : | * UNIX -> mv configuration.php-dist configuration.php | ||
| 18 : | * Windows -> rename configuration.php-dist configuration.php | ||
| 19 : | * | ||
| 20 : | * Now edit this file and configure the parameters for your site and | ||
| 21 : | * database. | ||
| 22 : | * ------------------------------------------------------------------------- | ||
| 23 : | * Database configuration section | ||
| 24 : | * ------------------------------------------------------------------------- | ||
| 25 : | */ | ||
| 26 : | $mosConfig_offline = '0'; | ||
| 27 : | $mosConfig_host = 'localhost'; // This is normally set to localhost | ||
| 28 : | $mosConfig_user = ''; // MySQL username | ||
| 29 : | $mosConfig_password = ''; // MySQL password | ||
| 30 : | $mosConfig_db = ''; // MySQL database name | ||
| 31 : | $mosConfig_dbprefix = 'mos_'; // Do not change unless you need to! | ||
| 32 : | /** | ||
| 33 : | * ------------------------------------------------------------------------- | ||
| 34 : | * Site specific configuration | ||
| 35 : | * ------------------------------------------------------------------------- | ||
| 36 : | */ | ||
| 37 : | $mosConfig_lang = 'english'; // Site language | ||
| 38 : | $mosConfig_absolute_path = '/path/to/mambo/install'; // No trailing slash | ||
| 39 : | $mosConfig_live_site = 'http://www.your_mambo_site.com'; // No trailing slash. Make sure to use www. | ||
| 40 : | $mosConfig_sitename = 'Mambo'; // Name of Mambo site | ||
| 41 : | $mosConfig_shownoauth = '1'; // Display links & categories users don't have access to | ||
| 42 : | $mosConfig_useractivation = '1'; // Send new registration passwords via e-mail | ||
| 43 : | $mosConfig_uniquemail = '1'; // Require unique email adress for each user | ||
| 44 : | $mosConfig_offline_message = 'This site is down for maintenance.<br /> Please check back again soon.'; | ||
| 45 : | $mosConfig_lifetime = '900'; // Session time | ||
| 46 : | $mosConfig_MetaDesc = 'Mambo - the dynamic portal engine and content management system'; | ||
| 47 : | $mosConfig_MetaKeys = 'mambo, Mambo, Mambo, Mambo'; | ||
| 48 : | $mosConfig_MetaTitle = '1'; | ||
| 49 : | $mosConfig_MetaAuthor = '1'; | ||
| 50 : | $mosConfig_debug = '0'; | ||
| 51 : | $mosConfig_locale = 'en_GB'; | ||
| 52 : | $mosConfig_offset = '0'; // Local time offset | ||
| 53 : | $mosConfig_hideAuthor = '0'; | ||
| 54 : | $mosConfig_hideCreateDate = '0'; | ||
| 55 : | $mosConfig_hideModifyDate = '0'; | ||
| 56 : | $mosConfig_hidePdf = '0'; | ||
| 57 : | $mosConfig_hidePrint = '0'; | ||
| 58 : | $mosConfig_hideEmail = '0'; | ||
| 59 : | $mosConfig_enable_log_items = '0'; | ||
| 60 : | $mosConfig_enable_log_searches = '0'; | ||
| 61 : | $mosConfig_enable_stats = '1'; | ||
| 62 : | $mosConfig_sef = '0'; | ||
| 63 : | $mosConfig_vote = '0'; | ||
| 64 : | $mosConfig_gzip = '0'; | ||
| 65 : | $mosConfig_multipage_toc = '0'; | ||
| 66 : | $mosConfig_allowUserRegistration = '1'; | ||
| 67 : | $mosConfig_error_reporting = -1; | ||
| 68 : | $mosConfig_register_globals = 1; | ||
| 69 : | $mosConfig_error_message = 'This site is temporarily unavailable.<br />Please contact your System Administrator.'; | ||
| 70 : | $mosConfig_link_titles = '0'; | ||
| 71 : | $mosConfig_list_limit = '10'; | ||
| 72 : | $mosConfig_caching = '0'; | ||
| 73 : | $mosConfig_cachepath = '/path/to/mambo/install/cache'; | ||
| 74 : | $mosConfig_cachetime = '900'; | ||
| 75 : | $mosConfig_mailer = 'mail'; | ||
| 76 : | $mosConfig_mailfrom = ''; | ||
| 77 : | $mosConfig_fromname = ''; | ||
| 78 : | $mosConfig_sendmail = '/usr/sbin/sendmail'; | ||
| 79 : | $mosConfig_smtpauth = '0'; | ||
| 80 : | $mosConfig_smtpuser = ''; | ||
| 81 : | $mosConfig_smtppass = ''; | ||
| 82 : | $mosConfig_smtphost = 'localhost'; | ||
| 83 : | $mosConfig_back_button = '0'; | ||
| 84 : | $mosConfig_item_navigation = '1'; | ||
| 85 : | $mosConfig_secret = 'FBVtggIk5lAzEU9H'; //Change this to something more secure | ||
| 86 : | $mosConfig_pagetitles = '1'; | ||
| 87 : | $mosConfig_readmore = '1'; | ||
| 88 : | $mosConfig_hits = '1'; | ||
| 89 : | $mosConfig_icons = '1'; | ||
| 90 : | $mosConfig_favicon = 'favicon.ico'; | ||
| 91 : | $mosConfig_fileperms = ''; | ||
| 92 : | $mosConfig_dirperms = ''; | ||
| 93 : | $mosConfig_mbf_content='0'; | ||
| 94 : | setlocale (LC_TIME, $mosConfig_locale); // Country locale | ||
| 95 : | ?> |
| ViewVC Help | |
| Powered by ViewVC 1.0.0 |
Web Hosting provided by Network Redux.

