hallo,
habe ein gallery-script, welches mir thumbs und jpg's mit wasserzeichen macht. 30 bis 40 bilder werden problemlos erstellt, doch ab 40 bildern aufwärts, bricht die function mit folgender fehlermeldung ab:
Fatal error: Maximum execution time of 60 seconds exceeded in functions.php on line 641
functions.php - zeile 641:
gibts ne möglichkeit das zu ändern, ohne an der "execution time" rumzuschrauben?
thx & gruss
bastian
habe ein gallery-script, welches mir thumbs und jpg's mit wasserzeichen macht. 30 bis 40 bilder werden problemlos erstellt, doch ab 40 bildern aufwärts, bricht die function mit folgender fehlermeldung ab:
Fatal error: Maximum execution time of 60 seconds exceeded in functions.php on line 641
functions.php - zeile 641:
PHP-Code:
$src_img = imagecreatefromjpeg($src_file);
$text = 'COPYRIGHT 2004 W W W.D O M A I N. C O M';
$fontsize = 1;//1 - 5
$ih = imagecreatefromjpeg($src_file);
$color = imagecolorallocatealpha($ih, 0, 0, 0, 10); // Black
$x = (imagesx($ih) - strlen($text) * imagefontwidth($fontsize)) / 2;
$y = imagesy($ih) - imagefontheight($fontsize) * 1.5; // position unten
imagestring($ih, $fontsize, $x, $y, $text, $color);
imagejpeg($ih, $dest_file);
return $dest_file;
}
thx & gruss
bastian
Kommentar