Search found 13 matches

by MaKARON
24 Aug 2007, 14:13
Forum: Help
Topic: help with blocking issues
Replies: 3
Views: 4163

re:

Change you config_inc.php:

add:
$g_allow_signup = OFF;

deleting depends on user priviledges.
by MaKARON
12 Aug 2007, 16:27
Forum: Customizations
Topic: DokuWiki integration with projects
Replies: 3
Views: 8870

Tests

I tested wiki & mantis integration, but... i have the same problem, and (ATM) i have no solution for this. Another problem - mantis & wiki must be on the same domain (probably not problem for most, but i like to have subdomains per project).
by MaKARON
06 Aug 2007, 09:47
Forum: Customizations
Topic: Change logo and email notificaton
Replies: 10
Views: 28768

no sendmail

You don't have sendmail program to sending mail from localhost. Use external SMTP server (every email account has it - you can use free acounts). my config: $g_phpMailer_method = 2; // use smtp $g_smtp_host = 'poczta.fm'; // server host (free polish provider) $g_smtp_username = 'marcin.kleczek'; // ...
by MaKARON
06 Aug 2007, 07:43
Forum: Customizations
Topic: Change logo and email notificaton
Replies: 10
Views: 28768

Sending emails

It looks like you have problems with main(), try to use SMTP: check config_defaults_inc.php and check:
g_limit_email_domain
g_phpMailer_method (change to smtp)
and then set g_smtp_*
by MaKARON
02 Aug 2007, 19:23
Forum: Customizations
Topic: Change logo and email notificaton
Replies: 10
Views: 28768

Changing logo

You must overwrite mantis_logo.gif, and change core/html_api.php function: html_top_baner() -> change width and hight (or you can even change logo filename).
by MaKARON
31 Jul 2007, 08:01
Forum: Help
Topic: Custom Status in 1.1.0x - different then in 1.0.x?
Replies: 6
Views: 6268

Re: Custom Status in 1.1.0x - different then in 1.0.x?

Hiyas... SYSTEM WARNING: Cannot modify header information - headers already sent by (output started at /srv/aml.iswitch.it/htdocs/mantis-1.1.0a3/custom_constant_inc.php:6) Check this file - I think you add some extra chars in file (space? tab? new line) out of php brackets (or maybe "------&qu...
by MaKARON
28 Jul 2007, 07:05
Forum: Customizations
Topic: Favicon per project
Replies: 1
Views: 7539

Favicon per project

Hello everybody Very simple patch for mantis-1.1.0a4-CVS (but I think you can use it on every version of Mantis) - allow use diffrent favicon for every project. To change favicon use: Manage -> Manage Configuration -> Set Configuration Option (TABLE) Configuration Option: ico_link Type: string Value...
by MaKARON
29 Dec 2005, 13:43
Forum: General Discussion
Topic: Developers
Replies: 1
Views: 5187

Developers

Can you create new forum "Developers" or something similar?

I have some questions, topics, but they aren't "general" :-)

I'm starting with this question: why you don't use phpdoc comments in mantis? It's good idea and it will help new developers.
by MaKARON
21 Dec 2005, 08:38
Forum: Help
Topic: UTF8 with MySQL 4.1
Replies: 6
Views: 8500

utf

I didn't try, but you can :-)
change all create table ...; to:
create table ... ) character set utf8;

or try this all on tables:
ALTER TABLE ___insert_table_name___ CHARACTER SET utf8;

Please report effects on forum.

Regards
by MaKARON
16 Dec 2005, 10:53
Forum: Help
Topic: Upgrade from rc3 to rc4 - htmlspecialchars() system warning
Replies: 2
Views: 4827

quickfix

strings_api.php

change line 663 to

return htmlspecialchars( $p_string, ENT_COMPAT );// mkk_fix NIE MA ISO-8859-2, lang_get( 'charset' ) );
by MaKARON
13 Dec 2005, 08:43
Forum: Customizations
Topic: Graphviz background
Replies: 0
Views: 4828

Graphviz background

Hey If you want to change graphviz backgrounds (useful for customization of all mantis colors - specialy background of a page) use this hack: in config_defaults_inc.php ADD this line (at any place): $g_graphviz_bgcolor = '#c5e5f0'; and in core/relationship_graph_api.php ADD this lines (112 and 119 a...
by MaKARON
13 Dec 2005, 08:35
Forum: General Discussion
Topic: Spended time
Replies: 3
Views: 7995

I found this, but I't simple and (IMO) not so "mantised" (coding) as I want. And it have no statistics. The worst thing is that I made this work again (in my project). I must choose - use that "module" or continue develop my - but I prefer second. I will send a patch after sunday...
by MaKARON
12 Dec 2005, 12:13
Forum: General Discussion
Topic: Spended time
Replies: 3
Views: 7995

Spended time

At first - sorry for my english. I'm a good listener and reader, but I have problems, when I must write (but I'm good PHP programmer :D ). I'm working at little extension - Spended time. Every developer, or updater can add his work time (and it can be assigned to bugnote) to the bug (zero or more ti...