Search found 1768 matches

by cas
31 Jan 2025, 10:06
Forum: EmailReporting
Topic: BAD messages in Manage Configuration Options tab
Replies: 5
Views: 7049

Re: BAD messages in Manage Configuration Options tab

you should upload to EmailReporting, so please take off the "-master" and try again :mrgreen:
by cas
31 Jan 2025, 10:04
Forum: General Discussion
Topic: Add a button on the menu to edit project manage page
Replies: 7
Views: 9875

Re: Add a button on the menu to edit project manage page

I had to dig since I recallled struggling withthe same issue.
I did not place the code in config_inc.php bur custom_strings_inc.php
The code I used,adapted to your purpose would be:

if( php_sapi_name() != 'cli' ) {
$t_cookie_name = config_get_global( 'project_cookie' );
if ( $_COOKIE[$t_cookie ...
by cas
30 Jan 2025, 16:24
Forum: Help
Topic: Developer cannot resolve the ticket mantis ver. 2.25.7
Replies: 3
Views: 7788

Re: Developer cannot resolve the ticket mantis ver. 2.25.7

If you think it is a bug, file a bugreport
by cas
30 Jan 2025, 08:37
Forum: Help
Topic: To Add Checkbox Alongside Dropdown in Mantis Custom Field
Replies: 2
Views: 7187

Re: To Add Checkbox Alongside Dropdown in Mantis Custom Field

Suggest to write a small plugin for this :mrgreen:
by cas
30 Jan 2025, 08:36
Forum: General Discussion
Topic: Add a button on the menu to edit project manage page
Replies: 7
Views: 9875

Re: Add a button on the menu to edit project manage page

So you only show the page if you have a project_id, something like

if ( isset( $current_project_id ) ) {
$g_main_menu_custom_options = array(
array(
'url' => 'manage_proj_edit_page.php?project_id=' . $current_project_id,
'title' => 'Manage Current Project',
'access_level' => MANAGER,
'icon ...
by cas
29 Jan 2025, 08:22
Forum: Help
Topic: Developer cannot resolve the ticket mantis ver. 2.25.7
Replies: 3
Views: 7788

Re: Developer cannot resolve the ticket mantis ver. 2.25.7

Suggest 2 things:
- delete this developer en recreate it
- upgrade to 2.27
by cas
23 Jan 2025, 15:33
Forum: EmailReporting
Topic: How to configure cron job?
Replies: 4
Views: 6864

Re: How to configure cron job?

On windows you cannot wotk with a sh file. You need to make a bat- or cmd- file
by cas
14 Jan 2025, 17:50
Forum: Help
Topic: Issue when trying to create global profiles...
Replies: 6
Views: 9533

Re: Issue when trying to create global profiles...

You do need to activate Global profiles in your config:
$g_enable_profiles = ON;
by cas
14 Jan 2025, 15:16
Forum: Help
Topic: How to reset the administrator password?
Replies: 1
Views: 7450

Re: How to reset the administrator password?

See here: viewtopic.php?t=33231
That will get you going
by cas
14 Jan 2025, 15:12
Forum: Help
Topic: Cannot login to Mantis
Replies: 6
Views: 9655

Re: Cannot login to Mantis

@ the commandprompt you give the command 'mysql' followed by Enter.
@ the mysql prompt:
- use your_mantis_database ;
- select * from your_mantis_user_table ;
- insert into your_mantis_user_table (username, realname, email, password,
date_created, last_visit, enabled, protected, access_level,
login ...
by cas
13 Jan 2025, 16:24
Forum: Help
Topic: Cannot login to Mantis
Replies: 6
Views: 9655

Re: Cannot login to Mantis

If you have phpmyadmin, you can set the password directly in the DB.
by cas
11 Jan 2025, 08:10
Forum: Help
Topic: Cannot login to Mantis
Replies: 6
Views: 9655

Re: Cannot login to Mantis

Normally you do not login to Mantis with a user that can login to the database, those are 2 different users. Can you not request a new password through the GUI?
by cas
10 Jan 2025, 15:26
Forum: General Plugin Discussion
Topic: Userdata plugin
Replies: 19
Views: 41975

Re: Userdata plugin

Hi Joselyne,
in the first field you put the username aand next only the fields you want to add.
These fields (email access level protected enabled) are not needed.
Now try again.
by cas
09 Jan 2025, 16:54
Forum: General Discussion
Topic: Is it safe to migrate from utf8_general_ci to utf8mb4_unicode_ci?
Replies: 6
Views: 11215

Re: Is it safe to migrate from utf8_general_ci to utf8mb4_unicode_ci?

This is what I expected hence the advice to work wit a sepaarte test environment :mrgreen:

Converting the database itself to utf8mb4_unicode_ci was easy.

It looks like the Mantis codebase is hardcoded in a ton of places to only use utf8, I'm guessing this is a relic of the past.. because utf8mb4 ...
by cas
09 Jan 2025, 15:13
Forum: General Discussion
Topic: Is it safe to migrate from utf8_general_ci to utf8mb4_unicode_ci?
Replies: 6
Views: 11215

Re: Is it safe to migrate from utf8_general_ci to utf8mb4_unicode_ci?

I think that shpould be fine on MySql level but safesty option of course to test this in a seperate environment to ensure it work from both sides (Mantis/MySql) as expected.