when I'm trying to create thumbnails, I'will get the following error:
Phoca Gallery cannot save files on your server
* Image (wrong type or broken image) - remove the image or upload new image via e.g. FTP
* GD Library (not correctly working GD library, not working GD functions) - install or reinstall GD library
* Permissions (no rights to write files or folders) - change the permissions of image/phocagallery folders on your server,
I have uploaded the pictures via ftp. All folders (incl. phocagallery and thumbs) have the permission 777 (just for testing). GD Library is installed and working fine. Here is the GD part of the phpinfo()-output:
GD is working correct. I have tested that with the following code:GD Support enabled
GD Version bundled (2.0.28 compatible)
FreeType Support enabled
FreeType Linkage with freetype
FreeType Version 2.2.1
GIF Read Support enabled
GIF Create Support enabled
JPG Support enabled
PNG Support enabled
WBMP Support enabled
XBM Support enabled
Code: Select all
<?php
header('Content-type: image/png');
$image = @imagecreate(100, 50)
or die('Kann keinen neuen GD-Bild-Stream erzeugen');
$background_color = imagecolorallocate($image, 100, 100, 100);
$text_color = imagecolorallocate($image, 255, 255, 255);
imagestring($image, 1, 5, 5, "we:DevEdge", $text_color);
imagepng($image);
?>What can be the reason that thumbnail creating don't works and gives me that error?

