|
Answer
by: Stuart Pierce, Aplus.Net Knowledge
Base Support.
Please
note that the information below is related to Windows-based hosting
plans only. If you have Unix-based hosting and want to modify
your php.ini file, please look here: How do I use the PHP Configuration tool?
With Windows-based
hosting you cannot modify a custom php.ini file. However, you can load
additional PHP extensions by attaching the following line to the
beginning of your PHP files:
if (!extension_loaded('php_extension_name.dll')) dl('php_extension_name.dll');
Note: In the
example above you have to replace php_extension_name.dll
with the actual name of the extension you wish to
load, e.g. php_gd2.dll.
Related links:
|