How would i compile PHP, and were would i get the source code.
Script stops at imagecreatefromjpeg in my script.
Collapse
X
-
OK finaly, after restarting PHP and the Server, and using the ini_set function instead of gonig into the php file, i've been able to get every function to work correctly. Thank you, however, i've used the functions to crop a portion of the source image, put the outcome is black, any solutions? Nope got it however thank you all for running me throught my problem, especially pbmods for stating that all i needed to do was reinstall php.Comment
-
Had the same problem and the solution is to add a line of code before imagecreatefrom jpeg:
[PHP]ini_set('memory _limit', '50M');
$handle = @imagecreatefro mjpeg($pict);[/PHP]
virtual@croatiaComment
Comment