Page 1 of 1

Re: Error while rotating of an image: ErrorNoImageRotate

Posted: 19 Sep 2008, 16:02
by Jan
Hi, it seems like your PHP on the server doesn't support the:

imageRotate function

( http://cz.php.net/manual/en/function.imagerotate.php )

e.g. for testing it you can run some php file on your server with following code:

Code: Select all

if(!function_exists("imagerotate")) {
    return 'ErrorNoImageRotate';
}