As an admin, I want to be able to set the user passwords myself, instead of having them following the email validation process. Besides that I want to be able to change user passwords at any given time.
I have searched the forums and peeked at the code but I couldn't find such functionality. Can ...
Search found 16 matches
- 06 Feb 2012, 16:05
- Forum: Help
- Topic: (pre)set user passwords as admin
- Replies: 1
- Views: 2850
- 17 Dec 2007, 16:18
- Forum: General Discussion
- Topic: Enumeration Custom Fields with Dynamic Possible Values
- Replies: 4
- Views: 12712
Re: Enumeration Custom Fields with Dynamic Possible Values
dynamic enums... yummy!
where's the link victor?
where's the link victor?
- 03 Dec 2007, 14:39
- Forum: Help
- Topic: Possibility to assign a bug to several people
- Replies: 1
- Views: 2615
- 29 Nov 2007, 10:46
- Forum: Customizations
- Topic: multiple attachment upload
- Replies: 9
- Views: 16893
Re:
Fine with me.. I guess you should PM vboctor about this, or make a feature request.fxm wrote:Hello,
This function is very good, but is it possible to integrate it into next version of Mantis ?
Thanks in advance for your answer.
François
- 27 Nov 2007, 11:13
- Forum: Help
- Topic: need help with inserting default values in custom fields
- Replies: 2
- Views: 3300
Re: need help with inserting default values in custom fields
Look at custom_field_table and find the id of the custom field. Do a sub select on bug_table and find all bugs for that project and insert a row into custom_field_string_table for each one.
Thx for your reply, Tinjaw.. figured that much out myself but it'll be too much trouble to do it manually ...
Thx for your reply, Tinjaw.. figured that much out myself but it'll be too much trouble to do it manually ...
- 15 Nov 2007, 13:18
- Forum: Help
- Topic: need help with inserting default values in custom fields
- Replies: 2
- Views: 3300
need help with inserting default values in custom fields
I added a custom field to a long running project. (5000+ bugs) and I was wondering if there is a way to put a default value in this custom field for all previously reported bugs.
These fields are now empty, so they cannot be used for filtering.
I do have access to the database, and have been ...
These fields are now empty, so they cannot be used for filtering.
I do have access to the database, and have been ...
- 02 Jul 2007, 09:25
- Forum: General Discussion
- Topic: Custom fields in printing options and excel reports
- Replies: 12
- Views: 26426
dude, just find the occurrance of
in print_all_bug_page_excel.php, and paste the code on the next line.
good luck!
edit: maybe it is worth mentioning that I am running mantis-1.0.6.
Code: Select all
$t_related_custom_field_ids = custom_field_get_linked_ids( $v_project_id );
good luck!
edit: maybe it is worth mentioning that I am running mantis-1.0.6.
- 07 Jun 2007, 07:34
- Forum: Customizations
- Topic: Need an editor?
- Replies: 10
- Views: 29320
corrected version using 'simple' syle
Well, I got it working anyway, only to find that all html tags that require a parameter (like <img> etc) are not supported. The tags are simply printed to the screen and not rendered.
So here's a version using only the 'simple' style (bold, underline etc.)
code:
# (2) Begin the <head> section ...
So here's a version using only the 'simple' style (bold, underline etc.)
code:
# (2) Begin the <head> section ...
- 06 Jun 2007, 08:20
- Forum: Customizations
- Topic: Need an editor?
- Replies: 10
- Views: 29320
Brilliant idea, but ..
.. even after adding
at the end of your block of code, I still get a javascript error. Are you sure your instructions are correct?
Code: Select all
';
}
- 04 Jun 2007, 07:44
- Forum: Customizations
- Topic: multiple attachment upload
- Replies: 9
- Views: 16893
- 01 Jun 2007, 14:10
- Forum: Customizations
- Topic: multiple attachment upload
- Replies: 9
- Views: 16893
multiple attachment upload
All,
I implemented a little hack that allows for multiple attachment upload. It is rather basic (e.g. no localization) and has not been thoroughly tested, but it seems to suit my needs.
Bear with me, as we will have to modify 5 different files.
(This hack is based on v1.0.6, but should work in ...
I implemented a little hack that allows for multiple attachment upload. It is rather basic (e.g. no localization) and has not been thoroughly tested, but it seems to suit my needs.
Bear with me, as we will have to modify 5 different files.
(This hack is based on v1.0.6, but should work in ...
- 15 May 2007, 12:31
- Forum: General Discussion
- Topic: Mantis-overly complicated..
- Replies: 2
- Views: 5109
Before I switched to Mantis, I was using this: http://phpbt.sourceforge.net/.
I found it's functionality too limited for my use, but it might just be what you're looking for.
I found it's functionality too limited for my use, but it might just be what you're looking for.
- 14 May 2007, 12:50
- Forum: General Discussion
- Topic: Custom fields in printing options and excel reports
- Replies: 12
- Views: 26426
aight, got it fixed
If anyone is interested, the custom fields were not ordered correctly (in relation to their headers). What worked for me:
in print_all_bug_page_excel.php, add
natcasesort($t_related_custom_field_ids);
$t_related_custom_field_ids = array_values($t_related_custom_field_ids);
around line 506, right ...
in print_all_bug_page_excel.php, add
natcasesort($t_related_custom_field_ids);
$t_related_custom_field_ids = array_values($t_related_custom_field_ids);
around line 506, right ...
- 14 May 2007, 08:52
- Forum: General Discussion
- Topic: Custom fields in printing options and excel reports
- Replies: 12
- Views: 26426
- 24 Apr 2007, 07:24
- Forum: Customizations
- Topic: Hack for multiple problem-solvers per Bug
- Replies: 3
- Views: 13393