Search found 56 matches
- 20 Dec 2013, 16:22
- Forum: Help
- Topic: [RESOLVED]How to share my plugin ?
- Replies: 1
- Views: 2245
Re: How to share my plugin ?
Hi everyone ! But I can't send an email => "You are not allowed to post to this mailing list... ". Someone can help me ? You have to signup to the mailing list to post. I updated the wiki to indicate that. 2- I have also to reference my plugin here : http://www.mantisbt.org/wiki/doku.php/...
- 20 Dec 2013, 16:16
- Forum: Help
- Topic: How to write regular expression for Time
- Replies: 2
- Views: 3523
Re: How to write regular expression for Time
We don't have "time" type custom fields. I suggest instead to use text field with a regular expression to validate the user's input, maybe something like (not tested) [0-2][0-9]:[0-5][0-9]:[0-5][0-9] With regards to the calculation, I can't think of a way to easily do it out of the box. Ma...
- 14 Jul 2013, 06:12
- Forum: Help
- Topic: How to filter for 'A' or 'B' by search?
- Replies: 3
- Views: 4070
Re: How to filter for 'A' or 'B' by search?
You mean 'and', right?atrol wrote: 'A' or 'B'
- 24 Jun 2013, 10:35
- Forum: Help
- Topic: Customizing Mantis 1.2.15 to play with Phpbb 3.0.11
- Replies: 5
- Views: 10930
Re: Customizing Mantis 1.2.15 to play with Phpbb 3.0.11
Gabriel I don't think the approach of altering the schema (be it Mantis or phpBB) is a good one as it will break compatibility and make your upgrade path difficult (for both pieces of software), and potentially make it impossible to get support due to your heavily customized code and modified DB sch...
- 06 May 2013, 16:49
- Forum: General Discussion
- Topic: Release management plugin
- Replies: 5
- Views: 7193
- 28 Sep 2012, 07:58
- Forum: Russian
- Topic: Ошибка SYSTEM WARNING:
- Replies: 10
- Views: 13269
Re: Ошибка SYSTEM WARNING:
Sorry I don't speak Russian, Kirill dragged me into here :) The error message you get, normally is triggered when there is no default timezone set in the system. Based on what you wrote this is not the case, and one of the first things Mantis does (in core.php), is to call date_default_timezone_set(...
- 05 Aug 2012, 08:42
- Forum: Help
- Topic: Users on the monitoring list do not see issue created
- Replies: 3
- Views: 3231
Re: Users on the monitoring list do not see issue created
"Monitoring" means that users will get an email notification whenever the issue is updated.
Your users should see the issues they are monitoring in the "my view" page, under the "Monitored by me" frame.
Your users should see the issues they are monitoring in the "my view" page, under the "Monitored by me" frame.
- 24 Nov 2011, 23:07
- Forum: Help
- Topic: Hyperlinks from Excel and Word
- Replies: 11
- Views: 13980
Re: Hyperlinks from Excel and Word
I have just committed LapinKiller's patch.
- 08 Aug 2011, 16:08
- Forum: Customizations
- Topic: Time Tracking plugin reborn
- Replies: 25
- Views: 27494
Re: Time Tracking plugin reborn
I quite like the design. Comments and bugs: the code does not consistently follow the MantisBT coding conventions, e.g. with regards to spacings, variable names, etc - you might want to align to that System allows entry of negative hours - is that intentional ? users can only delete their own time e...
- 08 Aug 2011, 14:21
- Forum: Customizations
- Topic: Time Tracking plugin reborn
- Replies: 25
- Views: 27494
Re: Time Tracking plugin reborn
Hi Mike, Thanks for the plugin. Just a thought, not having looked at it in detail yet (I'll do it later as time allows) it may not make sense, but to avoid multiplication of similar plugins, would it not have been better to improve the existing timecard plugin by merging/adding your functionality on...
- 06 Jan 2011, 13:25
- Forum: French
- Topic: Compatibilité de Mantis 1.2.1 avec PHP 5.2.15
- Replies: 1
- Views: 2972
Re: Compatibilité de Mantis 1.2.1 avec PHP 5.2.15
J'utilise PHP 5.2.5 et 5.3.3, sans aucun problèmes, avec Mantis 1.2.1 et 1.2.3.
Référence documentation:
http://docs.mantisbt.org/master/en/admi ... QUIREMENTS
Référence documentation:
http://docs.mantisbt.org/master/en/admi ... QUIREMENTS
- 06 Jan 2011, 13:16
- Forum: Help
- Topic: Please read this if you have problems with emails
- Replies: 93
- Views: 431749
Re: Please read this if you have problems with emails
What I personally found useful in troubleshooting e-mail notifications on my LAMP, is to use a "fake" sendmail routine that logs whatever PHP mailer sends into a text file. 1. Save the script below somewhere (e.g. /tmp/fakesendmail), and make it executable (original from http://php.net/man...
- 06 Jan 2011, 12:16
- Forum: General Discussion
- Topic: Plugin repository
- Replies: 20
- Views: 14879
Re: Plugin repository
I think it would be nice, if the plugins could be referenced somewhere on the Mantis web site as well.
Damien
Damien
- 09 Dec 2010, 18:16
- Forum: General Discussion
- Topic: mantis_bug_file_table size, mysql and performance
- Replies: 1
- Views: 2978
mantis_bug_file_table size, mysql and performance
Hi all, On our Mantis implementation, I have approx. 10'000 bugs in the system, with nearly 3'500 attachments. We use MySQL (MyISAM engine) on a SuSE 10 VMWare server. The total DB size is approx. 1.2 GB on disk, and mantis_bug_file_table accounts for 98% of this. Over the past 3-4 months, I have se...
- 04 Oct 2010, 14:40
- Forum: Help
- Topic: Cloning mantis git from behind firewall
- Replies: 4
- Views: 3754
Re: Cloning mantis git from behind firewall
As an alternative, I also noticed that there is a clone of the git repository accessible via HTTP protocol, on http://github.com/mantisbt/mantisbt.git. Doing a clone from this source over http, is obviously much faster than the same operation through socks (41" vs 2'15"). But the repositor...