Search found 8376 matches

by atrol
15 Feb 2024, 11:11
Forum: Help
Topic: Does Mantis's API get an issue only through bug id?
Replies: 1
Views: 1469

Re: Does Mantis's API get an issue only through bug id?

Which other field do you want to use for it? There is no other field in MantisBT that can be used as a primary key for an issue than the bud id, so any other field could deliver multiple issues. Certainly not exactly what you are asking for, but might help some way. You can get all issues matching a...
by atrol
13 Feb 2024, 18:29
Forum: Help
Topic: Move mantisBT to another Server
Replies: 4
Views: 2350

Re: Move mantisBT to another Server

Search the forum for "migration" and read the Admin Guide.
Finally it's more or less just a database export / import and coyping the attachments from old to new server if attachments are not stored in database.
by atrol
13 Feb 2024, 12:12
Forum: Help
Topic: TypeError: Cannot read properties of null (reading 'label')
Replies: 5
Views: 2259

Re: TypeError: Cannot read properties of null (reading 'label')

I was not able to reproduce your problem with a fresh install of the latest stable MantisBT release (2.26.0 at the moment). Please provide detailed step-by-step instructions (add also screenshot of the error message) to reproduce the issue; the following additional information may also be useful: - ...
by atrol
07 Feb 2024, 19:53
Forum: Help
Topic: APPLICATION ERROR #401 (Errcode: 28 "No space left on device") when attempting to view or report issues
Replies: 17
Views: 6283

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

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.
by atrol
06 Feb 2024, 22:51
Forum: Help
Topic: APPLICATION ERROR #401 (Errcode: 28 "No space left on device") when attempting to view or report issues
Replies: 17
Views: 6283

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

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 neede...
by atrol
06 Feb 2024, 22:40
Forum: Help
Topic: REST Api - adding reporter
Replies: 1
Views: 2039

Re: REST Api - adding reporter

Your REST request is authenticated by a token you provide. This token was created by a user. So the reporter of the issue you created will be the user that created the token. If you want to act as another user, you can do this starting from version 2.26.0 by creating a token for a user, see https://...
by atrol
06 Feb 2024, 21:52
Forum: Help
Topic: APPLICATION ERROR #401 (Errcode: 28 "No space left on device") when attempting to view or report issues
Replies: 17
Views: 6283

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

To free up some disk space run
rm default_error_log-2*

To find out what's going on run
tail default_error_log

Before pasting the result to the forum, ensure that there is no private information in it.
by atrol
06 Feb 2024, 20:42
Forum: Help
Topic: APPLICATION ERROR #401 (Errcode: 28 "No space left on device") when attempting to view or report issues
Replies: 17
Views: 6283

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

So the largest folder is obviously /var/log/httpd where typically the web server logs are stored.
cd /var/log/httpd
ls -lt
by atrol
06 Feb 2024, 20:32
Forum: Help
Topic: Importing attachments
Replies: 15
Views: 6323

Re: Importing attachments

@acoder2020 maybe you missed one of my previous notes Export an issue with a small attachment. I guess you will understand how it works. There is a button for it on the "View Issues" page if the plugin is installed. Concerning the REST API, maybe you did not notice this link from MantisBT ...
by atrol
06 Feb 2024, 19:18
Forum: Help
Topic: APPLICATION ERROR #401 (Errcode: 28 "No space left on device") when attempting to view or report issues
Replies: 17
Views: 6283

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

Next command
du -sk /* 2>/dev/null
Check for the biggest number in the first column,e.g. might be where the second column is /usr
After that, e.g. if it should be /usr
cd /usr
du -sk * 2>/dev/null
by atrol
06 Feb 2024, 08:08
Forum: Help
Topic: APPLICATION ERROR #401 (Errcode: 28 "No space left on device") when attempting to view or report issues
Replies: 17
Views: 6283

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

Don't you have shell / command line access to this server, so that you can check what is stored under /tmp?