Search found 8366 matches

by atrol
01 Mar 2024, 08:19
Forum: General Discussion
Topic: Where is REST API 'Authorization' token checking in php?
Replies: 1
Views: 698

Re: Where is REST API 'Authorization' token checking in php?

Run admin/check/index.php
There you might get some errors or warnings that might help.
by atrol
20 Feb 2024, 22:35
Forum: Announcements
Topic: MantisBT 2.26.1 released
Replies: 0
Views: 2755

MantisBT 2.26.1 released

MantisBT 2.26.1 released, have a look at our Blog for more details.

This is a security and maintenance release.
All installations are strongly advised to upgrade as soon as possible!
by atrol
20 Feb 2024, 18:41
Forum: General Discussion
Topic: Where is Administration www8.mantisbt.org??
Replies: 1
Views: 1443

Re: Where is Administration www8.mantisbt.org??

Feel free to write a private message via forum to me.
by atrol
15 Feb 2024, 21:09
Forum: Help
Topic: Move mantisBT to another Server
Replies: 4
Views: 2195

Re: Move mantisBT to another Server

dihaji wrote: 15 Feb 2024, 16:29so I think that i need juste to move files to a new server (php files, configuration files ...etc) and I must install the same php version (old server use php 7.2)
Right, that should work.
by atrol
15 Feb 2024, 11:11
Forum: Help
Topic: Does Mantis's API get an issue only through bug id?
Replies: 1
Views: 1394

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: 2195

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: 1981

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: 5510

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: 5510

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: 1963

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: 5510

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: 5510

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: 5628

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 ...