Page 1 of 1

Submit on pages times out

Posted: 23 Jun 2008, 18:41
by justindcobb
I am running version 1.1.2 using mysql and apache2. Every time I submit an action that hits the database, the information in the database is posted correctly, but the page never comes back. It sits there and times out after a while. If I close the browser and try and go back into the mantis pages with a new browser window, it just sits there too like the system is busy doing something. I have tried finding some log files to help, but I've got nothing. Has anyone else had this problem?

Re: Submit on pages times out

Posted: 24 Jun 2008, 16:46
by justindcobb
I think whats happening is that the sendmail is causing a long timeout and not returning. Has anyone had a problem with this? Anyone have a quick fix?

Re: Submit on pages times out

Posted: 24 Jun 2008, 18:17
by blueray2048
Hi,

Did you tried some alternate options such as direct smtp ?

$g_phpMailer_method = 2;
$g_smtp_host = 'localhost';
$g_smtp_username = '';
$g_smtp_password = '';

Also the mail queue option ?
$g_email_send_using_cronjob = ON;

Re: Submit on pages times out

Posted: 24 Jun 2008, 18:30
by justindcobb
That seems to work, thanks.