Search found 66 matches

by truefriend-cz
15 Feb 2020, 07:26
Forum: Help
Topic: recommend a CRM system
Replies: 1
Views: 3710

recommend a CRM system

Hi.
What would you recommend a CRM system that is compatible with Mantis?
by truefriend-cz
06 Mar 2019, 00:01
Forum: Help
Topic: PHP project cookie validator
Replies: 10
Views: 15261

Re: PHP project cookie validator

Unfortunately, I can not deal with it, because I'm constantly attacking some people in the office for doing good things. As a job, I try to maintain a working relationship with my partner. I have been forcibly cut off from school, from work and from property and from a partner to fight for power by ...
by truefriend-cz
05 Mar 2019, 05:12
Forum: Help
Topic: PHP project cookie validator
Replies: 10
Views: 15261

Re: PHP project cookie validator

Should I upload the entire php scripts to GitHub for better show changes? I can not optimal describe the problem quite well in English.
by truefriend-cz
04 Mar 2019, 14:56
Forum: Help
Topic: PHP project cookie validator
Replies: 10
Views: 15261

Re: PHP project cookie validator

But this is more complex and does not solve security. That's why I'm dealing with this particular thing. From a complicated solution, I worked on a simple one. But the problem has come up and I do not know how to analyze it.
by truefriend-cz
04 Mar 2019, 12:15
Forum: Help
Topic: PHP project cookie validator
Replies: 10
Views: 15261

Re: PHP project cookie validator

I dont know how. I want no loading login_select_project.php if exist cookie.

Before placing this script I had these sections in set_project.php and login.php. And it worked smoothly (in the section where it received data from the user about the selected project). By simplifying the code and ...
by truefriend-cz
03 Mar 2019, 20:30
Forum: Help
Topic: PHP project cookie validator
Replies: 10
Views: 15261

Re: PHP project cookie validator

Yes the code is processed good.

I tested. Adding

echo 'testOK';
exit;

to parts of the code.

And the code works but causes these abnormal situations.
When I comment on the redirection line (print_header_redirect( 'login_select_proj_page.php' );) and clear the cache and browser cookies, it ...
by truefriend-cz
03 Mar 2019, 07:17
Forum: Help
Topic: PHP project cookie validator
Replies: 10
Views: 15261

PHP project cookie validator

Hi all. I make php code for validating MANTIS_PROJECT_COOKIE.

custom_functions_api.php:

$my_project_cookie_valid = false;
// get cookies
$my_cookie_name = config_get_global( 'project_cookie' );
$my_project_id = gpc_get_cookie( $my_cookie_name, null );

if( $my_project_id === 0 || !isset( $my ...
by truefriend-cz
19 Feb 2019, 03:16
Forum: General Discussion
Topic: Cookies crypt
Replies: 3
Views: 4479

Re: Cookies crypt

Have you tried it yet?
by truefriend-cz
16 Feb 2019, 02:18
Forum: General Discussion
Topic: Cookies crypt
Replies: 3
Views: 4479

Cookies crypt

Hi. I make changes Mantis PHP code for i want crypting cookies for users (browser).

Any idea how i can crypted Cookies for users? And decrypting if will be back from browser for Mantis.
Where is best place in PHP scripts for adding this feature?

I find gpc_api.php funtions gpc_get_cookie, etc. And ...
by truefriend-cz
15 Feb 2019, 19:59
Forum: Help
Topic: Disable or hide Clone and Add Comments tickets
Replies: 1
Views: 2991

Re: Disable or hide Clone and Add Comments tickets

My solution is:
changes columns_api.php (1097):

$g_checkboxes_exist = true;
echo '<div class="checkbox no-padding no-margin"><label>';
printf( '<input type="checkbox" name="bug_arr[]" value="%d" class="ace" />', $p_bug->id );
echo '<span class="lbl"></span>';
echo '</label></div>';

to:

if ...
by truefriend-cz
15 Feb 2019, 16:11
Forum: Help
Topic: Disable or hide Clone and Add Comments tickets
Replies: 1
Views: 2991

Disable or hide Clone and Add Comments tickets

Hi all.

I have problem. If i logged as anonymous (reporter) user then show on view_all_bug_page.php select checkbox for tickets where i can operations Clone (to another project) and Add comment/s.

How i can disabled this functions for "reporter" or "Anonymous" in view_all_bug_page.php?

I located ...
by truefriend-cz
05 Feb 2019, 10:19
Forum: Help
Topic: adm_config_report, bug_report_page and custom fields
Replies: 1
Views: 2581

Re: adm_config_report, bug_report_page and custom fields

Devs. Do you can add plane to fixed in next version Mantis please?
by truefriend-cz
04 Feb 2019, 21:36
Forum: Help
Topic: adm_config_report, bug_report_page and custom fields
Replies: 1
Views: 2581

adm_config_report, bug_report_page and custom fields

Hi all.
How i add corrected format for show custom field on bug_report_page from adm_config_report?

I have custom field named as "test" (without define "Link custom field to projects").
And on adm_config_report have defined as:

bug_report_page_fields
complex
array (
0 => 'attachments',
1 ...
by truefriend-cz
03 Feb 2019, 15:31
Forum: Help
Topic: adm_config_report, anonymous and custom fields
Replies: 10
Views: 9644

Re: adm_config_report, anonymous and custom fields

I tested now.
After set to unprotected no solved this problem. (for any arrays (no custom fields only)).

Problem have anonymous account after this:

$g_allow_anonymous_login = ON;
$g_anonymous_account = 'anonymous';

to config_inc.php only. And any other account if set in config_inc.php as ...