I want to thank those who tried to help with my questions about using the GD libraries.
I still have not gotten them to function using PHP. I've put two screenhots of the phpinfo() page at: www.gonefishingguideservice.com/php_page.htm If you care to take a look at those images, you'll see that I've got php and Apache working with MS Win 98. It also says that directories are enabled. I've searced for the following files that I believe I need for GD Libraries and PHP in 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. At wit's end... 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\extensions" ; 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. ;;;;;;;;;;;;;;;; ; File Uploads ; ;;;;;;;;;;;;;;;; file_uploads=On ; Whether to allow HTTP file uploads ;upload_tmp_dir=; temporary directory for HTTP uploaded files (will use system default if not specified) upload_max_filesize=2M ; Maximum allowed size for uploaded files ;;;;;;;;;;;;;;;;;; ; Fopen wrappers ; ;;;;;;;;;;;;;;;;;; allow_url_fopen=On ; Wheter to allow trating URLs like http:... or ftp:... like files ;;;;;;;;;;;;;;;;;;;;;; ; Dynamic Extensions ; ;;;;;;;;;;;;;;;;;;;;;; ; if you wish to have an extension loaded automaticly, use the ; following syntax: extension=modulename.extension ; for example, on windows, ; extension=msql.dll ; or under UNIX, ; extension=msql.so ; Note that it should be the name of the module only, no directory information ; needs to go here. Specify the location of the extension with the extension_dir directive above. ;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 ;extension=php_gettext.dll ;extension=php_ifx.dll ;extension=php_iisfunc.dll ;extension=php_imap.dll ;extension=php_interbase.dll ;extension=php_java.dll ;extension=php_ldap.dll ;extension=php_mhash.dll ;extension=php_mssql65.dll ;extension=php_mssql70.dll ;extension=php_oci8.dll ;extension=php_openssl.dll ;extension=php_oracle.dll ;extension=php_pdf.dll ;extension=php_pgsql.dll ;extension=php_printer.dll ;extension=php_sablot.dll ;extension=php_snmp.dll ;extension=php_sybase_ct.dll ;extension=php_yaz.dll ;extension=php_zlib.dll -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php