jkkenzie Posted December 16, 2009 Share Posted December 16, 2009 Is it possible to enable GD library from PHP code? OR use INI_SET to allow the use of GD Library.? My host is hard to reach. Thanks Link to comment https://forums.phpfreaks.com/topic/185364-enable-gd-library/ Share on other sites More sharing options...
Zyx Posted December 16, 2009 Share Posted December 16, 2009 In general, there is no universal and 100% reliable method to load an extension from a PHP script. There is dl() function, but it has lots of limitations and it is very possible that it will not work for you: 1. Not supported on multithreaded webservers (i.e. Apache and mod_php). 2. Case sensitive on Unix. 3. Not available with safe_mode. 4. Deprecated in PHP 5.3 5. Removed in PHP 6.0, except CGI, CLI and embed. I would recommend reaching the host . Link to comment https://forums.phpfreaks.com/topic/185364-enable-gd-library/#findComment-978538 Share on other sites More sharing options...
jkkenzie Posted December 21, 2009 Author Share Posted December 21, 2009 thank you very much Link to comment https://forums.phpfreaks.com/topic/185364-enable-gd-library/#findComment-981263 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.