Asperon Posted August 15, 2007 Share Posted August 15, 2007 ok, so I got the php_gd2.dll file from the windows binary and copied it into my ext folder for my php5 went to my .ini file and uncommented the extension=php_gd2.dll and ran this code <?php if(extension_loaded('gd')) { echo 'GD is loaded!'; if(function_exists('gd_info')) { echo ' Info: '; echo '<pre>' . print_r(gd_info(), true) . '</pre>'; } } else { echo 'GD is not loaded'; } ?> and I get the Gd is not loaded echo, what am I doing wrong? Quote Link to comment https://forums.phpfreaks.com/topic/65126-solved-gd2-problem/ Share on other sites More sharing options...
Asperon Posted August 15, 2007 Author Share Posted August 15, 2007 I"m using apache for my local server, does it have to recognize the gd2 as well? Quote Link to comment https://forums.phpfreaks.com/topic/65126-solved-gd2-problem/#findComment-325044 Share on other sites More sharing options...
Daniel0 Posted August 15, 2007 Share Posted August 15, 2007 Did you restart apache? Quote Link to comment https://forums.phpfreaks.com/topic/65126-solved-gd2-problem/#findComment-325058 Share on other sites More sharing options...
Asperon Posted August 15, 2007 Author Share Posted August 15, 2007 thank you that did it =p Quote Link to comment https://forums.phpfreaks.com/topic/65126-solved-gd2-problem/#findComment-325108 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.