View Issue Details

IDProjectCategoryView StatusLast Update
0026677mantisbtattachmentspublic2020-02-24 16:55
Reportervico10 Assigned Todregad  
PriorityhighSeveritymajorReproducibilityalways
Status closedResolutionno change required 
Product Version2.23.0 
Summary0026677: I can't attach files
Description

First of all, I apologize for my ignorance.
I am very new in this development.
The problem is that every time I try to attach a file in some incident it returns the following error:

INTERNAL APPLICATION ERROR

Already verify the configuration in Config_inc.php and Config_defaults_inc.php.

Would someone be kind enough to give me an example of how the configuration would be?

Thank you

TagsNo tags attached.

Activities

dregad

dregad

2020-02-07 09:36

developer   ~0063593

vico10,

Internal application error usually denotes a PHP error. Without further information, there's not much we can do to help. You should check your system log for further information. Alternatively you can try to temporarily configure your system as follows and try to reproduce the error:

$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;

WARNING - SECURITY RISK: the 'show_detailed_errors' config can cause MantisBT to display sensitive information about your system. We recommend to restrict its activation to a Test environment, only for as long as necessary. If possible, do not turn it ON globally, instead limit it for specific user(s) using the Manage Configuration page.

This is not a bug or feature request for MantisBT (you are asking for help on how to configure the system). I am therefore resolving this issue as "no change required".

Please use the forums to get support on customizing and using MantisBT (refer to http://www.mantisbt.org/support.php for links and further details).

vico10

vico10

2020-02-10 12:07

reporter   ~0063610

Thank you dregad, Keep investigating