Page 2 of 2

Re: APPLICATION ERROR #401 (Errcode: 28 "No space left on device") when attempting to view or report issues

Posted: 06 Feb 2024, 22:51
by atrol
Check file /home/default/html/config/config_inc.php

It seems you have enabled quite a lot of MantisBT logging.
One of the logging constants is even completely wrong, as there is a typo in it, causing most of the warnings.
It must not be LOG_EMAIL_REIPIENT but LOG_EMAIL_RECIPIENT

Logging is not needed for normal MantisBT operation and should just be activated in case of problems.
I recommend to remove one line completely from /home/default/html/config/config_inc.php
There should be a lime that startes with $g_log_level =
After dropping this line, your error logs will not grow any longer, and MantisBT will operate faster.

Re: APPLICATION ERROR #401 (Errcode: 28 "No space left on device") when attempting to view or report issues

Posted: 07 Feb 2024, 01:19
by dfbugs
I've went ahead and removed the $g_log_level line.
Thank you so much for all your help!! I really appreciated the patience and promptness of the replies :)

Re: APPLICATION ERROR #401 (Errcode: 28 "No space left on device") when attempting to view or report issues

Posted: 07 Feb 2024, 19:53
by atrol
Glad to hear that the issue is fixed.
Maybe you want to learn some Linux basics :wink:
Without that, being responsible for a server can become a pain.