Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 9ee9f2c

Browse files
committedMar 4, 2012
Issue #13998: Logo is not present on new installation.
- Updated config_inc_sample.php to use the new logo filename. - Commented out all configuration options that are optional (i.e. all except db and email).
1 parent 3e11346 commit 9ee9f2c

File tree

1 file changed

+18
-17
lines changed

1 file changed

+18
-17
lines changed
 

‎config_inc.php.sample

+18-17
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323

2424
# This sample file contains the essential files that you MUST
2525
# configure to your specific settings. You may override settings
26-
# from config_defaults_inc.php by assigning new values in this file
26+
# from config_defaults_inc.php by uncommenting the config option
27+
# and setting its value in this file.
2728

2829
# Rename this file to config_inc.php after configuration.
2930

@@ -52,29 +53,29 @@ $g_smtp_username = ''; # used with PHPMAILER_METHOD_SMTP
5253
$g_smtp_password = ''; # used with PHPMAILER_METHOD_SMTP
5354
$g_administrator_email = 'administrator@example.com';
5455
$g_webmaster_email = 'webmaster@example.com';
55-
$g_from_name = 'Mantis Bug Tracker';
5656
$g_from_email = 'noreply@example.com'; # the "From: " field in emails
5757
$g_return_path_email = 'admin@example.com'; # the return address for bounced mail
58-
$g_email_receive_own = OFF;
59-
$g_email_send_using_cronjob = OFF;
58+
# $g_from_name = 'Mantis Bug Tracker';
59+
# $g_email_receive_own = OFF;
60+
# $g_email_send_using_cronjob = OFF;
6061

6162
# --- Attachments / File Uploads ---
62-
$g_allow_file_upload = ON;
63-
$g_file_upload_method = DATABASE; # or DISK
64-
$g_absolute_path_default_upload_folder = ''; # used with DISK, must contain trailing \ or /.
65-
$g_max_file_size = 5000000; # in bytes
66-
$g_preview_attachments_inline_max_size = 256 * 1024;
67-
$g_allowed_files = ''; # extensions comma separated, e.g. 'php,html,java,exe,pl'
68-
$g_disallowed_files = ''; # extensions comma separated
63+
# $g_allow_file_upload = ON;
64+
# $g_file_upload_method = DATABASE; # or DISK
65+
# $g_absolute_path_default_upload_folder = ''; # used with DISK, must contain trailing \ or /.
66+
# $g_max_file_size = 5000000; # in bytes
67+
# $g_preview_attachments_inline_max_size = 256 * 1024;
68+
# $g_allowed_files = ''; # extensions comma separated, e.g. 'php,html,java,exe,pl'
69+
# $g_disallowed_files = ''; # extensions comma separated
6970

7071
# --- Branding ---
71-
$g_window_title = 'MantisBT';
72-
$g_logo_image = 'images/mantis_logo.gif';
73-
$g_favicon_image = 'images/favicon.ico';
72+
# $g_window_title = 'MantisBT';
73+
# $g_logo_image = 'images/mantis_logo_232x80.png';
74+
# $g_favicon_image = 'images/favicon.ico';
7475

7576
# --- Real names ---
76-
$g_show_realname = OFF;
77-
$g_show_user_realname_threshold = NOBODY; # Set to access level (e.g. VIEWER, REPORTER, DEVELOPER, MANAGER, etc)
77+
# $g_show_realname = OFF;
78+
# $g_show_user_realname_threshold = NOBODY; # Set to access level (e.g. VIEWER, REPORTER, DEVELOPER, MANAGER, etc)
7879

7980
# --- Others ---
80-
$g_default_home_page = 'my_view_page.php'; # Set to name of page to go to after login
81+
# $g_default_home_page = 'my_view_page.php'; # Set to name of page to go to after login

0 commit comments

Comments
 (0)
Please sign in to comment.