Problem with signup on clean install
Posted: 20 Mar 2024, 03:01
I just completed the installation of MantisBT on my company hosting and I am trying to register the first user, but I keep getting a 1904 error message. I followed the instructions from a post I found about how to activate extender error reporting and now I can see this:
This is my config_inc.php:
Any ideas about what the problem may be solved ?
TIA
Victor Espina
Code: Select all
NTERNAL APPLICATION ERROR
Class "VBoctor\Email\DisposableEmailChecker" not found
Please use the "Back" button in your web browser to return to the previous page. There you can correct whatever problems were identified in this error or select another action. You can also click an option from the menu bar to go directly to a new section.
Detailed error information
Full path: /data/11/0/133/105/785920/user/804992/htdocs/mantis/core/error_api.php
Line number: 92
Stack trace
# Filename Line Class Type Function Args
0 /data/11/0/133/105/785920/user/804992/htdocs/mantis/core/email_api.php 226 - - email_is_disposable <string>'vespinas@gmail.com'
1 /data/11/0/133/105/785920/user/804992/htdocs/mantis/core/user_api.php 736 - - email_ensure_not_disposable <string>'vespinas@gmail.com'
2 /data/11/0/133/105/785920/user/804992/htdocs/mantis/signup.php 84 - - user_signup <string>'victorespina', <string>'vespinas@gmail.com'Code: Select all
<?php
# --- Database Configuration ---
$g_hostname = 'vuxmysql11';
$g_db_username = 'mantis';
$g_db_password = '*****';
$g_database_name = 'tmi_mantisdb';
$g_db_type = 'mysqli';
# --- Security ---
$g_crypto_master_salt = '87879hinijijij8798''; # Random string of at least 16 chars, unique to the installation
# --- Anonymous Access / Signup ---
$g_allow_signup = ON;
$g_allow_anonymous_login = OFF;
$g_anonymous_account = '';
# --- Email Configuration ---
$g_phpMailer_method = PHPMAILER_METHOD_MAIL; # or PHPMAILER_METHOD_SMTP, PHPMAILER_METHOD_SENDMAIL
$g_smtp_host = 'localhost'; # used with PHPMAILER_METHOD_SMTP
$g_smtp_username = ''; # used with PHPMAILER_METHOD_SMTP
$g_smtp_password = ''; # used with PHPMAILER_METHOD_SMTP
$g_webmaster_email = 'webmaster@tercermedio.com';
$g_from_email = 'noreply@tercermedio.com'; # the "From: " field in emails
$g_return_path_email = 'webmaster@tercermedio.com'; # the return address for bounced mail
$g_from_name = 'TMI/Mantis';
$g_email_receive_own = OFF;
$g_email_send_using_cronjob = OFF;
# --- Attachments / File Uploads ---
$g_allow_file_upload = ON;
$g_file_upload_method = DISK; # DATABASE or DISK
$g_absolute_path_default_upload_folder = '/mantis/uploads/'; # used with DISK, must contain trailing \ or /.
$g_max_file_size = 531628032; # in bytes
# $g_preview_attachments_inline_max_size = 256 * 1024;
$g_allowed_files = 'pdf,xls,xlsx,png,jpg,jpeg,txt,csv,doc,docx,dbf,fpt,zip,rar'; # extensions comma separated, e.g. 'php,html,java,exe,pl'
# $g_disallowed_files = ''; # extensions comma separated
# --- Branding ---
$g_window_title = 'TMI/Mantis';
# $g_logo_image = 'images/mantis_logo.png';
# $g_favicon_image = 'images/favicon.ico';
# --- Real names ---
# $g_show_realname = OFF;
# $g_show_user_realname_threshold = NOBODY; # Set to access level (e.g. VIEWER, REPORTER, DEVELOPER, MANAGER, etc)
# --- Others ---
# $g_default_home_page = 'my_view_page.php'; # Set to name of page to go to after login
$g_display_errors = array(
E_WARNING => 'halt',
E_NOTICE => 'halt',
E_USER_ERROR => 'halt',
E_USER_WARNING => 'halt',
E_USER_NOTICE => 'halt'
);
$g_show_detailed_errors = ON;TIA
Victor Espina