Search found 226 matches

by istvanb
15 Dec 2010, 22:30
Forum: Help
Topic: How measure the time in Mantis?
Replies: 1
Views: 1570

Re: How measure the time in Mantis?

There is no automated way to do that (you have to write your own routine to do that), however you can check the time on an issue basis if you check the history at the bottom of the page.
by istvanb
10 Dec 2010, 21:14
Forum: Help
Topic: No solution for sending emails
Replies: 2
Views: 2155

Re: No solution for sending emails

can u please try:

$g_phpMailer_method = PHPMAILER_METHOD_SMTP;
$g_smtp_connection_mode = 'ssl';
$g_smtp_host = 'smtp.gmail.com';
$g_smtp_port = 465;
by istvanb
10 Dec 2010, 11:54
Forum: Help
Topic: Error using screen shot feature with Mantis
Replies: 5
Views: 4260

Re: Error using screen shot feature with Mantis

If you dont tell the specifics how should we help?

What is the file extension you want to attach? Can you attach the same extension if you just make a simple screenshot with "print scrn"?
by istvanb
10 Dec 2010, 11:22
Forum: Help
Topic: Error using screen shot feature with Mantis
Replies: 5
Views: 4260

Re: Error using screen shot feature with Mantis

What OS, what Mantis / PHP etc version?

I dont know what is cropper, I guess its just a screen capture program. Have you tried to attach any other files to the issue (like standard txt or jpg or something like that)?
by istvanb
09 Dec 2010, 17:08
Forum: Help
Topic: Subprojects as user default
Replies: 2
Views: 2445

Re: Subprojects as user default

I was able to reproduce the problem. The "default project" can not be a subproject of a project. This is odd, I guess this should be reported in at www.mantisbt.org if it not has been reported yet.

i-
by istvanb
09 Dec 2010, 14:07
Forum: Help
Topic: WIKI integration
Replies: 0
Views: 1751

WIKI integration

Hi,

is there a reliable WIKI integration available? I have seen http://www.mantisbt.org/wiki/doku.php/m ... 53?do=show but this is really outdated both in Mantis and in Dokuwiki versions.

thx,
i-
by istvanb
07 Dec 2010, 20:10
Forum: Help
Topic: Help to send email notifications to other domains
Replies: 2
Views: 2236

Re: Help to send email notifications to other domains

Hey Mike, This reply probably wont help you a lot, but I am using Mantis to send emails to different domains and never had any issues with it. Gmail definitely capable to do that as well as our company server. Are you sure that is not a limitation of the smtp server you use? The $g_limit_email_domai...
by istvanb
06 Dec 2010, 16:08
Forum: Help
Topic: Wrong URL in the registration email
Replies: 3
Views: 4894

Re: Wrong URL in the registration email

I think you have to change this in the config_inc.php $g_path = 'put your url here'; the URL should refer your mantisbt folder. you have to be careful though, what you put here. It can be the IP of the station, or if it has a registered DNS than you can use that. Use nothing else but these, or it wi...
by istvanb
05 Dec 2010, 23:00
Forum: Help
Topic: 1.2.3 - Limit number of projects
Replies: 4
Views: 3163

Re: 1.2.3 - Limit number of projects

The number of projects does not affect the size of the database significantly as far as I am concerned (since a project means only couple entry in the db). What matters is the number of issues. For sure you should send the attachment to an ftp server instead of the db. With this 100 MB will be enoug...
by istvanb
02 Dec 2010, 16:38
Forum: Help
Topic: Please read this if you have problems with emails
Replies: 97
Views: 2570581

Please read this if you have problems with emails

Mantis Email settings Configuring the email settings is challenging task for most of the users start working with Mantis. The confusion is partially caused because PHP (so therefore Mantis) does not give you a very precise description about why it can not deliver emails. The goal of this topic is t...
by istvanb
02 Dec 2010, 14:08
Forum: Help
Topic: Not Send email
Replies: 1
Views: 1704

Re: Not Send email

I am not sure if this is correct

Code: Select all

$g_smtp_host      = 'ssl://smtp.mail.es:25';


if you

Code: Select all

$g_smtp_connection_mode = 'ssl';
$g_smtp_port = 25;
there were like 4-5 posts about emailing in the last week so plz check: http://www.mantisbt.org/forums/viewtopi ... =3&t=14570
by istvanb
30 Nov 2010, 23:36
Forum: Help
Topic: How to skip bug_change_status_page.php?
Replies: 6
Views: 4338

Re: How to skip bug_change_status_page.php?

you are quite welcome, don't forget to contribute to the community by answer questions of the others if you can :)
by istvanb
30 Nov 2010, 23:23
Forum: Help
Topic: Can't view custom fields in the summary page
Replies: 9
Views: 8775

Re: Can't view custom fields in the summary page

It is hard to believe if there is any off the shelf solution exists to your problem. Think about it: how should mantis graph your textbox? It would be easier if you would use an enumerated field (for both the textbox and the radio buttons), but still then I think you should code your own graphs. In ...
by istvanb
30 Nov 2010, 23:15
Forum: Help
Topic: How to skip bug_change_status_page.php?
Replies: 6
Views: 4338

Re: How to skip bug_change_status_page.php?

I can not help you in your first question, it requires some severe mods in the php files. Your second question can be resolved by changing the following line in your bug_update.php: print_successful_redirect_to_bug( $f_bug_id ); to print_successful_redirect( 'view_all_bug_page.php' ); please note th...