Beim verschieben folgene Fehlermeldung: Fatal error: Max....
Verfasst: 30.08.2005 14:46
Hallo,
wenn ich versuche einen 50-Seiten langen Thread zu teilen, bekomme ich folgende Fehlermeldung:
wenn ich versuche einen 50-Seiten langen Thread zu teilen, bekomme ich folgende Fehlermeldung:
Zeile 864 ist diese hier (mit dem Pfeil):Fatal error: Maximum execution time of 30 seconds exceeded in /srv/www/htdocs/web61/html/forum1/includes/bbcode.php on line 864
Code: Alles auswählen
function smilies_pass($message)
{
static $orig, $repl;
//-- mod : cache -----------------------------------------------------------------------------------
//-- add
global $phpEx, $phpbb_root_path, $smilies, $board_config;
if ( defined('CACHE_SMILIES') )
{
@include( $phpbb_root_path . './includes/def_smilies.' . $phpEx );
if ( empty($smilies) )
{
cache_smilies();
include( $phpbb_root_path . './includes/def_smilies.' . $phpEx );
ZEILE 864 ------> }
}
else
{
//-- fin mod : cache -------------------------------------------------------------------------------
if (!isset($orig))
{
global $db, $board_config;
$orig = $repl = array();
$sql = 'SELECT * FROM ' . SMILIES_TABLE;
if( !$result = $db->sql_query($sql) )
{
message_die(GENERAL_ERROR, "Couldn't obtain smilies data", "", __LINE__, __FILE__, $sql);
}