Search found 26 matches

by TerranceM
08 Nov 2019, 11:13
Forum: General Discussion
Topic: Multiple unassignment
Replies: 2
Views: 3668

Re: Multiple unassignment

Adding "UnAssign" option will work for you. Changing the default program can rellay prove risky.
by TerranceM
07 Nov 2019, 12:04
Forum: General Discussion
Topic: Hide fields and fields order
Replies: 1
Views: 2979

Re: Hide fields and fields order

Goto page Manage > Manage Configuration > Configuration Report
Enter the following values, after that click "Create Configuration Option"
by TerranceM
07 Nov 2019, 11:59
Forum: General Discussion
Topic: Disconnect all users
Replies: 1
Views: 2829

Re: Disconnect all users

To disable users, go to 'Manage' - 'Manage Users' and click on the hyperlink of the username you wish to disable. Then simply untick the Enabled check box and click 'Update User'
by TerranceM
14 Oct 2019, 14:33
Forum: General Plugin Discussion
Topic: Can't get EasyEnter to work
Replies: 6
Views: 10643

Re: Can't get EasyEnter to work

Version compatibility can be the reason, you can check the compatibility criteria for the plugin.
by TerranceM
14 Oct 2019, 14:27
Forum: General Discussion
Topic: Status lights are all black
Replies: 7
Views: 11763

Re: Status lights are all black

Same issue. Looks like its because of the update.
by TerranceM
11 Oct 2019, 17:28
Forum: Customizations
Topic: How to cancle the drop-down for date?
Replies: 5
Views: 7598

Re: How to cancle the drop-down for date?

function pad(n){return n<10 ? '0'+n : n} var date = new Date(); var selectElement = $('<select>'), optionElement; for (var count =0; count < 90; count++){ date.setDate(date.getDate() + 1); formattedDate = pad(date.getUTCDate()) + '-' + pad(date.getUTCMonth()+1) + '-' + date.getUTCFullYear(); optionE...
by TerranceM
11 Oct 2019, 17:20
Forum: General Discussion
Topic: Viewer does not get checkboxes on print_all_bug_page.php?
Replies: 1
Views: 2850

Re: Viewer does not get checkboxes on print_all_bug_page.php?

You might need to fix it with the print_all_bug_page patch.
by TerranceM
24 Sep 2019, 11:10
Forum: Help
Topic: Trying to backup the Mantis Tracker system
Replies: 3
Views: 3109

Re: Trying to backup the Mantis Tracker system

To completely backup Mantis, the database state must be saved. In addition, you should back up the following files or directories: the upload directory, if Mantis is configured to store attachments on disk; the config_inc.php file any other custom files, like custom_strings_inc.php or custom_constan...
by TerranceM
19 Sep 2019, 19:17
Forum: General Discussion
Topic: Mantis whit SQL server.
Replies: 1
Views: 2401

Re: Mantis whit SQL server.

Seems like your database is broken. Have you tried repairing it?
by TerranceM
12 Sep 2019, 18:24
Forum: General Discussion
Topic: Change New Exchange Server - Error pear_error: message="NO, Server Unavailable.
Replies: 1
Views: 5514

Re: Change New Exchange Server - Error pear_error: message="NO, Server Unavailable.

I've come across this issue twice with 2 different exchange 2013 farms while setting up IMAP to use IMAPSync to migrate mail. The issue only happened when accessing 1 folder with lots of mail messages. A simple test is to use OpenSSL to verify the issue like: openssl s_client -quiet -crlf -connect m...
by TerranceM
05 Sep 2019, 18:23
Forum: General Discussion
Topic: Case insensitivity
Replies: 4
Views: 567000

Re: Case insensitivity

There are a few ways to compare strings. complete strings partial strings/from the beginning partial strings/somewhere for each of these 3 types it can be exact match or case insensitive so 6 different methods: 1) complete string/exact select * from table where "column" = 'value' 2) comple...