Search found 4 matches

by jsonr
19 Sep 2019, 02:20
Forum: General Discussion
Topic: use dual URLs
Replies: 1
Views: 2642

Re: use dual URLs

If you unset the $g_path parameter in your config, does it work? Normally, mantis should be able to figure out the server address from the request, but it may depend on your server config. If you really need to set $g_path manually, then some condition that sets it to the correct server for the requ...
by jsonr
19 May 2018, 06:28
Forum: Customizations
Topic: How to add a Header with logo in Excel Report file (in view_all_bug_page.php)
Replies: 2
Views: 5914

Re: How to add a Header with logo in Excel Report file (in view_all_bug_page.php)

The built in Excel export is really very basic. For richer reports, I'd recommend to write your own plugin using PHPSpreadsheet (formerly PHPExcel). Everyone has different needs in this area, often very specific, so there isn't a good generic solution. Otherwise you are stuck with post-processing, a...
by jsonr
18 May 2018, 16:45
Forum: Help
Topic: Keep custom changes after updating version
Replies: 2
Views: 2452

Re: Keep custom changes after updating version

I used to have quite a few local changes which I tracked with a local git branch that I merged releases into. But after dealing with some merge conflicts during the 2.x series, I moved a lot of the changes I had into plugins, leaving just my config, extra css and some changes to strings in the trans...
by jsonr
18 May 2018, 16:27
Forum: General Discussion
Topic: user group based access to issues
Replies: 4
Views: 4194

Re: user group based access to issues

What I do to achieve part of what you want is the following: 1. Make all projects private. This stops the projects and any issues within them from being visible to all users by default. 2. Give internal users a default access level of at least REPORTER. 3. Give external users a default access level ...