Andy Green wrote:
Laci wrote:OK http://mega-feltoltes.tx.hu/index.php?page=imageThis is a free image hosting script. The page is not english. Select an image, and press "feltoltes" button to start upload.After the upload it"s try to create a thumbial of the image using GD. This is the full source code of the script: http://mega-feltoltes.tx.hu/basic.zipHum something is broken with the script somewhere, it does not produce an <img> tag in the HTML in order to show the image, and the HTML is in fact incomplete like the script dropped dead in the middle. I would really expect something about it in /var/log/httpd/error_log
Hm does the apache user have write permissions in the directory this is being served from?
Seems this script touches a lot of things outside of gd that can be making the trouble. Why don't you make a quick php page using this example
<?php header("Content-type: image/png"); $string = $_GET['text']; $im = imagecreatefrompng("images/button1.png"); $orange = imagecolorallocate($im, 220, 210, 60); $px = (imagesx($im) - 7.5 * strlen($string)) / 2; imagestring($im, 3, $px, 9, $string, $orange); imagepng($im); imagedestroy($im); ?> taken from http://www.php.net/gdand see if even that works? Than you know your problem comes from file saving, the upload action, selinux, etc.
-Andy
Attachment:
smime.p7s
Description: S/MIME Cryptographic Signature
-- fedora-list mailing list fedora-list@xxxxxxxxxx To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list