Version 0.10.1 crashes when enabling the EmailReporting plugin

This plugin allows you to report an issue in MantisBT by sending an email to a particular mail account

Moderators: Developer, Contributor

Post Reply
MarisaG2
Posts: 19
Joined: 12 Aug 2022, 02:27
Location: South San Francisco, CA
Contact:

Version 0.10.1 crashes when enabling the EmailReporting plugin

Post by MarisaG2 »

When I install the EmailReporting plugin the website stops working. I have to remove it and run the "update" button again. How should I track down what the issue is?
--- https://mantisbthosting.retro-os.live - Hosting for MantisBT starting at $7
--- https://msbob.org - Support for MS Bob user interface
--- https://pocketmud.com - Support and hosting for the CoffeeMUD MUD engine
SL-Gundam
Posts: 754
Joined: 06 Jul 2011, 14:17

Re: Version 0.10.1 crashes when enabling the EmailReporting plugin

Post by SL-Gundam »

My advise is downloading the EmailReporting 0.11.0-DEV version.
It is stable and should run just fine.
If you still have issues please let me know.
MarisaG2
Posts: 19
Joined: 12 Aug 2022, 02:27
Location: South San Francisco, CA
Contact:

Re: Version 0.10.1 crashes when enabling the EmailReporting plugin

Post by MarisaG2 »

Ok tried that and same issue. It just goes to a plain white screen... Are there some diagnostic commands I can use?
--- https://mantisbthosting.retro-os.live - Hosting for MantisBT starting at $7
--- https://msbob.org - Support for MS Bob user interface
--- https://pocketmud.com - Support and hosting for the CoffeeMUD MUD engine
SL-Gundam
Posts: 754
Joined: 06 Jul 2011, 14:17

Re: Version 0.10.1 crashes when enabling the EmailReporting plugin

Post by SL-Gundam »

You could try adding this to the MantisBT config file

Code: Select all

	# --- detailed error messages -----
	# Shows a list of variables and their values when an error is triggered
	# Only applies to error types configured to 'halt' in $g_display_errors, below
	# WARNING: Potential security hazard.  Only turn this on when you really
	# need it for debugging
	$g_show_detailed_errors	= ON;

	# --- error display ---
	# what errors are displayed and how?
	# The options for display are:
	#  'halt' - stop and display traceback
	#  'inline' - display 1 line error and continue
	#  'none' - no error displayed
	# obsoletes $g_show_notices (E_NOTICE and E_USER_NOTICE) and
	#   $g_show_warnings (E_WARNING and E_USER_WARNING)
	# A developer might set this in config_inc.php as:
	#	$g_display_errors = array(
	#		E_WARNING => 'halt',
	#		E_NOTICE => 'halt',
	#		E_USER_ERROR => 'halt',
	#		E_USER_WARNING => 'none',
	#		E_USER_NOTICE => 'none'
	#	);

	$g_display_errors = array(
		E_RECOVERABLE_ERROR => DISPLAY_ERROR_HALT,
		E_WARNING => DISPLAY_ERROR_HALT,
		E_NOTICE => DISPLAY_ERROR_HALT,
		E_USER_ERROR => DISPLAY_ERROR_HALT,
		E_USER_WARNING => DISPLAY_ERROR_HALT,
		E_USER_NOTICE => DISPLAY_ERROR_HALT,
		E_ALL => DISPLAY_ERROR_HALT,
		E_DEPRECATED => DISPLAY_ERROR_HALT
	);
Post Reply