I'm trying to get GD Libraries to work using MS Win 98 / PHP / Apache
I've put two screenhots of the phpinfo() page at:
www.gonefishingguideservice.com/php_page.htm
I've searced for the following files that I believe I need for GD Libraries and PHP in Win Explorer and found:
php_gd.dll ---------> C:\PHP\extensions
php.ini -----------------> C:\WINDOWS
php4ts.dll -------------> C:\WINDOWS\System
msvcrt.dll -------------> C:\WINDOWS\System
When I load the phpinfo() page, it comes up like you see in the screenshots.
However, when I take out the semi-colon as in the line:
.......................
extension=php_gd.dll //semi-colon taken out
......................
the page - or any page with a file extension.php will _not_load at all using Apache.
However, when I reinsert the semi-colon in the php.ini file, the .php page then loads.
Any advice on how I can get the GD libaries to work will be greatly
appreciated.
Thank you.
Tony Ritter
..................
;;;;;;;;;;;;;;;;;;;;;;;;;
; Paths and Directories ;
;;;;;;;;;;;;;;;;;;;;;;;;;
include_path=; UNIX: "/path1:/path2" Windows: "\path1;\path2"
doc_root=; the root of the php pages, used only if nonempty
user_dir=; the directory under which php opens the script using /~username, used only if nonempty
extension_dir="C:\PHP\" ; directory in which the loadable extensions (modules) reside
enable_dl=On ; Whether or not to enable the dl() function.
; The dl() function does NOT properly work in multithreaded
; servers, such as IIS or Zeus, and is automatically disabled
; on them.
;Windows Extensions
;Note that MySQL and ODBC support is now built in, so no dll is needed for it.
;
;extension=php_bz2.dll
;extension=php_ctype.dll
;extension=php_cpdf.dll
;extension=php_curl.dll
;extension=php_cybercash.dll
;extension=php_db.dll
;extension=php_dba.dll
;extension=php_dbase.dll
;extension=php_domxml.dll
;extension=php_dotnet.dll
;extension=php_exif.dll
;extension=php_fdf.dll
;extension=php_filepro.dll
;extension=php_gd.dll
etc...