Page 1 of 1

Error 500 IIS 7.5, FastCGI, PHP 5.3.13

Posted: 2012-08-10T02:28:57-07:00
by MrBurns
Hi,

I get HTTP-Error 500.0 - Internal Server Error using Imagick 6.7.8.8. 2012-08-04 Q16

I want to use ImageMagick on a Windows system but could not get it working.
My System is a Windows 7 Professional 32 bit, IIS 7.5 using FastCGI and
PHP 5.3.13. I installed ImageMagick as described under

http://www.elxsy.com/2009/07/installing ... p-imagick/

(although the description is for Apache on Windows)

The DOS commandline tool for ImageMagick is working.
I downloaded the php_imagick.dll from

http://valokuva.org/outside-blog-conten ... lds/php53/

and put it inside ext folder of PHP. I also updated php.ini, inside phpinfo.php I cans see the Imagick section.

If I use simple code to create an image:
(image a.jpg is available inside same folder as my php file)

<?
$im = new imagick( 'a.jpg' );
// resize by 200 width and keep the ratio
$im->thumbnailImage( 200, 0);
// write to disk
$im->writeImage( 'a_thumbnail.jpg' );
?>

I get following error:

HTTP-Error 500.0 - Internal Server Error
C:\Program Files\PHP\v5.3\php-cgi.exe - The FastCGI-Process terminated unexpectedly.

Modul: FastCgiModule
Message: ExecuteRequestHandler
Handler: PHP53_via_FastCGI
Errorcode: 0x000000ff

Is there any way to make imagick working under IIS7.5 and FastCGI / PHP 5.3.13?

Thanks for any support!

Best regards,

T. Burns

Re: Error 500 IIS 7.5, FastCGI, PHP 5.3.13

Posted: 2012-10-04T08:27:10-07:00
by meralaz
Hi MrBurns, My development environment is similar to yours, were you able to have a solution to the imageMagick issue you had?

System:
- windows 2008 server
- II7
- PHP 5.3.10
- imagick is installed (I hope properly)
- Checked if class exists, and it does. (if (class_exists('Imagick')) {})
- Checked if I can create an imagick obj, creates object (new Imagick();)
- applied method and that worked too! ($image ->setResolution(72, 72); )
-But whenever I am trying to work with any image I have in folder, I get a 500 - Internal server error..
Any of the below will generate a 500 error:
- $image = new Imagick('images/logo.jpg'); or
- $image ->readImage("images/logo.jpg"); or anything that involves accessing an image from a folder.

I am confused and been struggling for days installing it and now this.
Your help will be greatly appreciated.
Thanks

Re: Error 500 IIS 7.5, FastCGI, PHP 5.3.13

Posted: 2012-11-02T07:00:36-07:00
by MrBurns
Dera meralaz,

sorry for the late answer.
But unfortunately I still have the same problem and no solution :(

Best regards