Include extension=php_gd2.dll? What does that mean?
What does it mean when I need to include extension=php_gd2.dll; to my codings?
How do I include it?
Where exactly should I put it?
I got 3 documents that is enquiry.php, enquiry-form.php & captcha.php.
Include extension=php_gd2.dll? What does that mean?home theatreExtensions are always loaded when PHP is first started, from a file called "php.ini"
The file may reside in several different locations, depending on your operating system and version of PHP. It might be, for example, in your Windows folder, or in the executable folder for your web server. Most commonly these days, though, the php.ini file stays in the folder where PHP was installed, and that folder is added to the system path.
If you're in a shared hosting environment, you MIGHT have the option of just writing a php.ini file and putting it in the folder where you need to enable the extension.
Note also that PHP's sample "ini" files have many extensions already in the file - including GD2. However, those extensions are disabled by default... look for a bunch of lines that start with a semi-colon. Remove the semi-colon to enable the extension.
Finally, you also might have to edit another portion of php.ini ... and that is the one that tells PHP the path (folder) where all those extensions (the DLL files) actually reside. Look for a line that starts with "extension_dir"
More Related Questions and Answers ...
The information post by website user , we not guarantee correctness.
