Hello
niks999,
that error is a prob of the php-settings of your server(provider)
Example:
Server-(php)Setting:
maximal_execution_time(10)
Now if the script needs more than 10 seconds for executing,
this error comes up ...
Solution:
Run phpinfo.php on your server and look for the line
maximal_execution_time
If the shown time is 10,
contact your provider and ask for temporary or general
increase that time to 30
If this is cleared, you must open install_main.php and add
this line as shown
-------->
<?php
/**
*
* @package install
* @version $Id: install_main.php,v 1.12 2006/08/06 17:25:29 naderman Exp $
* @copyright (c) 2005 phpBB Group
* @license
http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
/**
*/
set_time_limit(30);
---------->
Hope this can fix that prob.
Regards
Pèdà
*end*