Submit on pages times out
Moderators: Developer, Contributor
-
- Posts: 3
- Joined: 23 Jun 2008, 18:37
Submit on pages times out
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?
-
- Posts: 3
- Joined: 23 Jun 2008, 18:37
Re: Submit on pages times out
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?
-
- Posts: 16
- Joined: 04 Oct 2006, 08:48
Re: Submit on pages times out
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;
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;
-
- Posts: 3
- Joined: 23 Jun 2008, 18:37
Re: Submit on pages times out
That seems to work, thanks.