php-windows | 2003032
Date: 03/26/03
- Next message: Anthony Ritter: "[PHP-WIN] Re: ISP Blues"
- Previous message: Anthony Ritter: "[PHP-WIN] ISP Blues"
- In reply to: Anthony Ritter: "[PHP-WIN] ISP Blues"
- Next in thread: Anthony Ritter: "[PHP-WIN] Re: ISP Blues"
- Reply: Anthony Ritter: "[PHP-WIN] Re: ISP Blues"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
>Could somebody please advise how they should be installing the .dll file so
>I can utlize the gd_libraries with php?
>
You only have to contact your ISP if he uses the PHP ISAPI extension
(which is not very probable).
Try to put the following code at the top of your script, if possible,
use php_gd2.dll instead of php_gd.dll (which will be removed in 4.3.2+
versions):
if (!extension_loaded('gd')) {
if (!dl('php_gd.dll')) {
die ('Could not load gd extension');
}
}
-- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
- Next message: Anthony Ritter: "[PHP-WIN] Re: ISP Blues"
- Previous message: Anthony Ritter: "[PHP-WIN] ISP Blues"
- In reply to: Anthony Ritter: "[PHP-WIN] ISP Blues"
- Next in thread: Anthony Ritter: "[PHP-WIN] Re: ISP Blues"
- Reply: Anthony Ritter: "[PHP-WIN] Re: ISP Blues"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

