2
I noticed with long contact lists there is a problem with getting and sending emails. The getting is already extented to 600 seconds, but the sending needs to be done as well.
in /xinvite/index.php after line 23 and before line 25 add in the following line.
ini_set("max_execution_time", "3600");
it should look like this
$xoopsTpl->assign('header_title', $xoopsModuleConfig['header_title']);
$xoopsTpl->assign('header_p', $xoopsModuleConfig['header_p']);
$xoopsTpl->assign('message_p', $xoopsModuleConfig['message_p']);
ini_set("max_execution_time", "3600");
switch ((string)$_GET['op'])
This will extend PHP's execution time to 3600 seconds.
Thanks