php-install Digest 29 Jan 2002 20:40:06 -0000 Issue 674
Topics (messages 5803 through 5814):
Re: PHP on Windows XP problem
5803 by: Mike Maltese
5808 by: Poul Theodorsen
Problems with installation on windows98 with apache
5804 by: mark.broad.st.com
5805 by: Ryan Walker
libphp4.so causes coredump when trying to start apache
5806 by: J S
Re: [PHP] PHP and Webmin...
5807 by: Prakash
PHP & Apache
5809 by: Andrew Afliatunov
Can find some extensions but not all
5810 by: Jason Lehman
New Prob. Re: [PHP-INST] Problems with installation on windows98 with apache
5811 by: Suzanne Francis
Build ap-php4
5812 by: Randy Arabie
--enable-ftp in RedHat 7.0
5813 by: Ing. Gustavo Edelstein
Urgent TTF Problem
5814 by: Jonathan Hilgeman
Administrivia:
To subscribe to the digest, e-mail:
[EMAIL PROTECTED]
To unsubscribe from the digest, e-mail:
[EMAIL PROTECTED]
To post to the list, e-mail:
[EMAIL PROTECTED]
----------------------------------------------------------------------
--- Begin Message ---
I've been able to get it to work without ScriptAlias, however it's been a
while and I've been using the Apache module for some time.
Try this:
ScriptAlias /php/ "f:/usr/"
AddType application/x-httpd-php .php .php3 <-- Put both extensions on
this line
Action application/x-httpd-php "/php/php.exe"
You might want to experiment with the module. It's been pretty stable for me
on Win2K Pro and Server.
----- Original Message -----
From: "Poul Theodorsen" <[EMAIL PROTECTED]>
To: "Mike Maltese" <[EMAIL PROTECTED]>
Sent: Monday, January 28, 2002 11:37 PM
Subject: Re: [PHP-INST] PHP on Windows XP problem
> No, it didn't remove the problem - it just changed it. now I get this
error
> instead :
>
> [Tue Jan 29 08:21:22 2002] [error] [client 127.0.0.1] Invalid URI in
request
> GET /myphp/test.php HTTP/1.1
>
> I used this in the config file :
> # ScriptAlias /php/ "/usr/"
> AddType application/x-httpd-php .php
> AddType application/x-httpd-php .php3
> Action application/x-httpd-php "F:/usr/php.exe"
>
> The error seems to be caused by the explicit path in Action .... - if I
> change it back to "Action application/x-httpd-php "/usr/php.exe", I get
the
> same error as before :
>
> [Tue Jan 29 08:23:57 2002] [error] [client 127.0.0.1] File does not exist:
> f:/www/femw.org/web/usr/php.exe/myphp/test.php
>
> For some reason the path from the Action directive is inserted between the
> web root and the path to test.php. I suppose that the idea was that
"Action"
> shoud only tell Apache where to find php.exe. Am I wrong???
>
> Still more confused
> poul
>
>
--- End Message ---
--- Begin Message ---
YES - THANKS
Finally I got the 'hello world' in my browser. So now I can get on with
something more serious. - thanks again
Poul
--- End Message ---
--- Begin Message ---
You need to uncomment/add a line(s) along the lines of :
AddType application/x-httpd-php .php
AddType application/x-httpd-php .phps
AddType application/x-httpd-php .phtml
AddType application/x-httpd-php .php4
Because this is how it knows when to use the action dependant on file extension
type. Note only one per line.
Here is an Example of embedding php in html - save as a .php file
<html><body>
<h1>Hello World</h1>
<?php
phpinfo();
?>
</body><html>
_Hope this helps.______Mark.__________________________________________________
>>>>Hi,
>>>>
>>>>My name is Suzanne and I'm trying to install PHP4 and am having a few
problems.
>>>>
>>>>I have windows 98
>>>>I downloaded Apache
>>>>I downloaded PHP4 windows installer
>>>>
>>>>I followed the wizard for apache and have tested to see that it works (when I
st
>>>>art it I see one MS-Dos window that says its running and one or two others
flash
>>>> onto the screen and disapear.
>>>>
>>>>PHP is loaded into c:/Php
>>>>
>>>>In the Apache httpd.conf file I have put the following information
>>>>
>>>>ServerName localhost
>>>>
>>>>ScriptAlias /php/ ""c:/Php/"" (have also tried /php4/ ""c:/Php/"" )
>>>>
>>>>#AddType application/x-httpd-php .php .phtml .html .php4
>>>>
>>>>Action application/x-httpd-php /Php/php.exe
>>>>
>>>>
>>>>----------------------------------------------------------------------------
----
>>>>
>>>>
>>>>To test PHP I have tried creating the following in notepad
>>>>
>>>><? phpinfo() ?>
>>>>
>>>>saved as phpinfo.php in htdocs of apache.
>>>>Opened in IE6 as http://localhost/phpinfo.php gives screen with
>>>><? phpinfo() ?>
>>>>
>>>>If <html> <body> </html> </body>
>>>>is added around the above I get a blank screen
>>>>
>>>>----------------------------------------------------------------------------
----
>>>>
>>>>
>>>>I have also tried saving the well known Hello World.
>>>>On my computer I get a blank screen.
>>>>If I load it to my web page on free.fr which supports PHP I
>>>>get Hello World.
>>>>
>>>>----------------------------------------------------------------------------
----
>>>>
>>>>
>>>>I guess my computer is not recognizing PHP.
>>>>Can anyone see what could be going wrong.
>>>>Thanks a million
>>>>Suzanne
>>>>
>>>>
_/_/_/_/_/_/_/_/
_/ _/
Regards, _/_/_/_/ _/
Mark Broad ..... _/ _/
_/_/_/_/ _/ (R)
Senior Layout / CAD Support Engineer & Marlow Webmaster.
_ ____________________________________________ _
/ )| STMicroelectronics Ltd. |( \
/ / | Planar House, Parkway, Globe Park, | \ \
_( (_ | _ Marlow, Bucks. SL7 1YL. UK. _ | _) )_
(((\ \>| / ) E-Mail : [EMAIL PROTECTED] ( \ |</ /)))
(\\\\ \|/ / \ \|/ ////)
\ / Tel. : +44 (0)1628 896141 \ /
\ _/ Fax. : +44 (0)1628 896179 \_ /
/ /| (Tina : 066 6141) |\ \
/___/ |_______________________________________ (c) | \___\
Hi,
My name is Suzanne and I'm trying to install PHP4 and am having a few problems.
I have windows 98
I downloaded Apache
I downloaded PHP4 windows installer
I followed the wizard for apache and have tested to see that it works (when I start it
I see one MS-Dos window that says its running and one or two others flash onto the
screen and disapear.
PHP is loaded into c:/Php
In the Apache httpd.conf file I have put the following information
ServerName localhost
ScriptAlias /php/ ""c:/Php/"" (have also tried /php4/ ""c:/Php/"" )
#AddType application/x-httpd-php .php .phtml .html .php4
Action application/x-httpd-php /Php/php.exe
--------------------------------------------------------------------------------
To test PHP I have tried creating the following in notepad
<? phpinfo() ?>
saved as phpinfo.php in htdocs of apache.
Opened in IE6 as http://localhost/phpinfo.php gives screen with
<? phpinfo() ?>
If <html> <body> </html> </body>
is added around the above I get a blank screen
--------------------------------------------------------------------------------
I have also tried saving the well known Hello World.
On my computer I get a blank screen.
If I load it to my web page on free.fr which supports PHP I
get Hello World.
--------------------------------------------------------------------------------
I guess my computer is not recognizing PHP.
Can anyone see what could be going wrong.
Thanks a million
Suzanne
--- End Message ---
--- Begin Message ---
Personally, I prefer:
AddType application/x-httpd-php .php .php3 .php4 .phtml
AddType application/x-httpd-php-source .phps
Note the differentiation between php and php-source, and the
inclusion of multiple extensions in a single type declaration.
Also, I see in your example that you included .html as a valid php
type (though the line is commented out). This would cause all of your
HTML pages to be parsed by the web server. Therefore, you should not
include .html as a php type. Instead, make sure all your pages which
contain php code use one of the php extensions identified in your
AddType declaration.
Ryan
At 9:21 AM +0000 1/29/02, [EMAIL PROTECTED] wrote:
>Content-Type: text/plain; charset=US-ASCII
>Content-Disposition: inline
> ;Creation-Date="Tue, 29 Jan 2002 09:10:10 +0000"
> ;Modification-Date="Tue, 29 Jan 2002 09:21:10 +0000"
>Content-Transfer-Encoding: 7bit
>
>You need to uncomment/add a line(s) along the lines of :
>
>AddType application/x-httpd-php .php
>AddType application/x-httpd-php .phps
>AddType application/x-httpd-php .phtml
>AddType application/x-httpd-php .php4
>
>Because this is how it knows when to use the action dependant on
>file extension
>type. Note only one per line.
>
>Here is an Example of embedding php in html - save as a .php file
>
><html><body>
><h1>Hello World</h1>
><?php
>phpinfo();
>?>
></body><html>
>
>_Hope this helps.______Mark.__________________________________________________
>
>
>>>>>Hi,
>>>>>
>>>>>My name is Suzanne and I'm trying to install PHP4 and am having a few
>problems.
>>>>>
>>>>>I have windows 98
>>>>>I downloaded Apache
>>>>>I downloaded PHP4 windows installer
>>>>>
>>>>>I followed the wizard for apache and have tested to see that it
>>>>>works (when I
>st
>>>>>art it I see one MS-Dos window that says its running and one or two others
>flash
>>>>> onto the screen and disapear.
>>>>>
>>>>>PHP is loaded into c:/Php
>>>>>
>>>>>In the Apache httpd.conf file I have put the following information
>>>>>
>>>>>ServerName localhost
>>>>>
>>>>>ScriptAlias /php/ ""c:/Php/"" (have also tried /php4/ ""c:/Php/"" )
>>>>>
>>>>>#AddType application/x-httpd-php .php .phtml .html .php4
>>>>>
>>>>>Action application/x-httpd-php /Php/php.exe
>>>>>
>>>>>
>>>>>-----------------------------------------------------------------
>>>>>-----------
>----
>>>>>
>>>>>
>>>>>To test PHP I have tried creating the following in notepad
>>>>>
>>>>><? phpinfo() ?>
>>>>>
>>>>>saved as phpinfo.php in htdocs of apache.
>>>>>Opened in IE6 as http://localhost/phpinfo.php gives screen with
>>>>><? phpinfo() ?>
>>>>>
>>>>>If <html> <body> </html> </body>
>>>>>is added around the above I get a blank screen
>>>>>
>>>>>-----------------------------------------------------------------
>>>>>-----------
>----
>>>>>
>>>>>
>>>>>I have also tried saving the well known Hello World.
>>>>>On my computer I get a blank screen.
>>>>>If I load it to my web page on free.fr which supports PHP I
>>>>>get Hello World.
>>>>>
>>>>>-----------------------------------------------------------------
>>>>>-----------
>----
>>>>>
>>>>>
>>>>>I guess my computer is not recognizing PHP.
>>>>>Can anyone see what could be going wrong.
>>>>>Thanks a million
>>>>>Suzanne
>>>>>
>>>>>
> _/_/_/_/_/_/_/_/
> _/ _/
> Regards, _/_/_/_/ _/
> Mark Broad ..... _/ _/
> _/_/_/_/ _/ (R)
> Senior Layout / CAD Support Engineer & Marlow Webmaster.
> _ ____________________________________________ _
> / )| STMicroelectronics Ltd. |( \
> / / | Planar House, Parkway, Globe Park, | \ \
> _( (_ | _ Marlow, Bucks. SL7 1YL. UK. _ | _) )_
> (((\ \>| / ) E-Mail : [EMAIL PROTECTED] ( \ |</ /)))
> (\\\\ \|/ / \ \|/ ////)
> \ / Tel. : +44 (0)1628 896141 \ /
> \ _/ Fax. : +44 (0)1628 896179 \_ /
> / /| (Tina : 066 6141) |\ \
> /___/ |_______________________________________ (c) | \___\
>
>Content-Type: text/plain
>Content-Disposition: inline
> ;Creation-Date="Mon, 28 Jan 2002 21:29:58 +0100"
> ;Modification-Date="Mon, 28 Jan 2002 21:29:58 +0100"
>
>Hi,
>
>My name is Suzanne and I'm trying to install PHP4 and am having a
>few problems.
>
>I have windows 98
>I downloaded Apache
>I downloaded PHP4 windows installer
>
>I followed the wizard for apache and have tested to see that it
>works (when I start it I see one MS-Dos window that says its running
>and one or two others flash onto the screen and disapear.
>
>PHP is loaded into c:/Php
>
>In the Apache httpd.conf file I have put the following information
>
>ServerName localhost
>
>ScriptAlias /php/ ""c:/Php/"" (have also tried /php4/ ""c:/Php/"" )
>
>#AddType application/x-httpd-php .php .phtml .html .php4
>
>Action application/x-httpd-php /Php/php.exe
>
>
>---------------------------------------------------------------------
>-----------
>
>To test PHP I have tried creating the following in notepad
>
><? phpinfo() ?>
>
>saved as phpinfo.php in htdocs of apache.
>Opened in IE6 as http://localhost/phpinfo.php gives screen with
><? phpinfo() ?>
>
>If <html> <body> </html> </body>
>is added around the above I get a blank screen
>
>---------------------------------------------------------------------
>-----------
>
>I have also tried saving the well known Hello World.
>On my computer I get a blank screen.
>If I load it to my web page on free.fr which supports PHP I
>get Hello World.
>
>---------------------------------------------------------------------
>-----------
>
>I guess my computer is not recognizing PHP.
>Can anyone see what could be going wrong.
>Thanks a million
>Suzanne
>
>
>
>--
>PHP Install Mailing List (http://www.php.net/)
>To unsubscribe, e-mail: [EMAIL PROTECTED]
>For additional commands, e-mail: [EMAIL PROTECTED]
>To contact the list administrators, e-mail: [EMAIL PROTECTED]
--- End Message ---
--- Begin Message ---
Hi,
I have built apache1.3.22 on aix4.3.3 and configured it to loadmodule
libphp4.so (PHP4.1.1). The problem is this causes a coredump (segmentation
fault) every time I start apache. Without php it works fine though.
I had exactly the same problem on Solaris a few months ago and managed to
fix it, but I've forgot now what I did!! I think I may have set a path
variable or something but I'm not sure. Here's how I configured it anyway:
./configure ?with-apxs=/opt/apache/bin/apxs \
--with-openssl=/usr/local/openssl ?without-mysql
Does anyone know? Please don't tell me to try the latest snapshot!!
Thanks,
JS.
_________________________________________________________________
Join the world’s largest e-mail service with MSN Hotmail.
http://www.hotmail.com
--- End Message ---
--- Begin Message ---
PLEASE, can someone tell me how may I reach someone that can help me in this
problem ?!?
I've already asked in the PHP-DEV mailing list, but I've seen no answers at
all also there...! IMHO, it can be very useful to use php as a remote
administration language!!!
thanks,
prakash
----- Original Message -----
From: "Prakash" <[EMAIL PROTECTED]>
> Hi,
> I'm trying to execute a Webmin script where I can use php as scripting
> language... (It will be good to work with a language as php in a remote
> administration server, as root! potentially dangerous but good!)
>
> Now the STRANGE problem: (seems to be some env variables (maybe I'm wrong)
> when executing PHP as CGI...)
>
> When I execute a test.cgi program from Webmin, it's executed as root, as
it
> was from command line... that's good. The problem is that Webmin execute
> well _every_ program I tried , EXCEPT php !
>
> It seems that php needs some env variables to work well, and these
variables
> aren't provided from the Webmin interface, so to solve the problem I've
> first to understand WHY php does not work...
>
> ---------------------
>
> Maybe I can better explain with 2 samples:
>
> > file aaa.cgi
> >
> > #!/bin/bash
> > echo "Content-type: text/plain"
> > echo
> > echo "aaa"
> > touch /home/test.txt
>
> > file bbb.cgi
> >
> > #!/usr/local/bin/php -q
> > <?php
> > echo "Content-type: text/plain\n\n";
> > echo "aaa\n";
> > $fd = fopen("/home/test.txt","w");
> > fclose($fd);
> > ?>
>
> Now, the 2 programs are quite the same... (if test.txt does not exist...)
> But, the 2 programs behave the same way only if you execute them _from
> command line_.
> If you execute them from the Webmin interface (very good for remote
> administration, that lets execute programs as user root), they behave
> differently:
> aaa.cgi is the same, displays "aaa" on the remote web-browser, and creates
> (well, if text.txt doesn't exist) a local file.
> bbb.cgi does nothing, sends no http headers, no aaa, and does not create
the
> file...
>
> It seems that PHP needs some env variables, and without them, it suddenly
> stops without parsing the file... am I right ?!?
>
> I've also tried to escape from this problem (until understood and solved)
> with a third program:
>
> > file ccc.cgi
> >
> > #!/bin/bash
> > /usr/bin/at -f /path/bbb.cgi now+1minute
> > touch /home/test2.txt
>
> If I call ccc.cgi from Webmin and then from command line, the 2 executions
> are scheduled properly, and look really the same (root user,same
> program,...) but the task scheduled from Webmin is not executed
> properly...
> the php seems to stop with no output.
>
> Also with a file like this:
>
> > file ddd.cgi
> >
> > #!/bin/bash
> > /path/bbb.cgi 2>&1 > test3.txt
>
> show that php really has no output on stdout or stderr (test3.txt is
> created, but 0 bytes long when invoked from Webmin!)
>
> So, the BIG problem is: if Webmin can execute all programs, running them
as
> root, WHY doesn't work well with php scripts ?!?
> I think that the PHP need something, and not having it it suddenly
stops...
> but what ?!?
>
> Are there some developer that can help ?!?
>
> (Writing Webmin modules in perl is not good, if you work mainly with php,
> and webmin can be the best remote administration utility...)
>
> thanks to all,
> waiting for some news...
> prakash
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
>
--- End Message ---
--- Begin Message ---
When I configured and installed PHP 4.1.1, my apache 1.3.22 failed to
start - it gives this error:
Cannot load /usr/local/apache/libexec/libphp4.so into server: ld.so.1:
/usr/local/apache/bin/httpd: fatal: relocation error: file
/usr/local/apache/libexec/libphp4.so: symbol ap_block_alarms: referenced
symbol not found
Sugessted by somebody here 'configure --enable-shared=max
--enable-rule=SHARED_CORE' for apache didh't work (another error
appeared). What else may be done?
--
Andrew.
--- End Message ---
--- Begin Message ---
Even though I have all the extensions in the same directory I keep getting
the error that such and such extension can't be found.
Here is the list of ones that cant be found but are in the same directory as
the rest:
php_ifx.dll
php_ingres.dll
php_oci8.dll
php_oracle.dll
php_sybase_ct.dll
Here is a list of ones that I would like to get copies of:
php_iisfunc.dll
php_mcrypt.dll
php_printer.dll
php_sablot.dll
Thanks for any help.
--- End Message ---
--- Begin Message ---
Thanks to mike, mark and ryan for their help.
I have looked at your information and tried it.
Since I uncommented the AddType line when I try to open
http://localhost/phpinfo.php I just get a blank screen.
Any more ideas
Thanks
Suzanne
----- Original Message -----
From: "Mike Maltese" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, January 28, 2002 10:02 PM
Subject: Re: [PHP-INST] Problems with installation on windows98 with apache
> 1. Remove the ScriptAlias line
> 2. Uncomment the AddType line (remove the "#")
> 3. Try Action application/x-httpd-php "C:/php/php.exe"
> 4. Restart Apache.
>
> Let us know if you are still having problems.
>
> ----- Original Message -----
> From: "Suzanne Francis" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Monday, January 28, 2002 12:29 PM
> Subject: [PHP-INST] Problems with installation on windows98 with apache
>
>
> Hi,
>
> My name is Suzanne and I'm trying to install PHP4 and am having a few
> problems.
>
> I have windows 98
> I downloaded Apache
> I downloaded PHP4 windows installer
>
> I followed the wizard for apache and have tested to see that it works
(when
> I start it I see one MS-Dos window that says its running and one or two
> others flash onto the screen and disapear.
>
> PHP is loaded into c:/Php
>
> In the Apache httpd.conf file I have put the following information
>
> ServerName localhost
>
> ScriptAlias /php/ ""c:/Php/"" (have also tried /php4/ ""c:/Php/"" )
>
> #AddType application/x-httpd-php .php .phtml .html .php4
>
> Action application/x-httpd-php /Php/php.exe
>
>
> --------------------------------------------------------------------------
--
> ----
>
> To test PHP I have tried creating the following in notepad
>
> <? phpinfo() ?>
>
> saved as phpinfo.php in htdocs of apache.
> Opened in IE6 as http://localhost/phpinfo.php gives screen with
> <? phpinfo() ?>
>
> If <html> <body> </html> </body>
> is added around the above I get a blank screen
>
> --------------------------------------------------------------------------
--
> ----
>
> I have also tried saving the well known Hello World.
> On my computer I get a blank screen.
> If I load it to my web page on free.fr which supports PHP I
> get Hello World.
>
> --------------------------------------------------------------------------
--
> ----
>
> I guess my computer is not recognizing PHP.
> Can anyone see what could be going wrong.
> Thanks a million
> Suzanne
>
>
>
> --
> PHP Install Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
>
>
--- End Message ---
--- Begin Message ---
Hello everyone,
I'm attempting to build ap-php4 on NetBSD 1.5.2 (Alpha).
Apache is 2.0.28, PHP 4.1.1
The ap-php4 compile falls over with the following error:
<SNIP>
Configuring SAPI modules
checking for AOLserver support... no
checking for Apache module support via DSO through APXS...
Sorry, I was not able to successfully run APXS. Possible reasons:
1. Perl is not installed;
2. Apache was not compiled with DSO support (--enable-module=so);
3. 'apxs' is not in your path. Try to use --with-apxs=/path/to/apxs
The output of /usr/pkg/bin/apxs follows
cannot open /usr/pkg/build/config_vars.mk: No such file or directory at
/usr/pkg/bin/apxs line 246.
configure: error: Aborting
*** Error code 1
Stop.
*** Error code 1
</SNIP>
I have perl and apxs. Apache was compiled with DSO support. I don't have a
config_vars.mk file.
Can someone tell me what the config_vars.mk file is? Is that a file unique to the
NetBSD pkgsrc system, or is it a php4 config file?
Thanks in advance!
--
Cheers!
Randy
================================================================
Randy Arabie
GnuPG Key Info --
Fingerprint: 7E25 DFA2 EF72 9551 9C6C 8AA6 6E8C A0F5 7E33 D981
Key ID: 7C603AEF
http://www.arabie.org/keys/rrarabie.gnupg
================================================================
--- End Message ---
--- Begin Message ---
Hi members,
How can I install the PHP4 rpm with ftp support in RedHat 7.0 ?
Thanks,
Ing. Gustavo A. Edelstein
Tech. Mgr.
Equiplus Argentina S.A.
______________________________________
Visit us On Line at www.equiplus.com
Email addresses:
Operations: [EMAIL PROTECTED]
Consulting: [EMAIL PROTECTED]
Technical: [EMAIL PROTECTED]
Web related: [EMAIL PROTECTED]
General: [EMAIL PROTECTED]
--- End Message ---
--- Begin Message ---
I recently tried to upgrade to PHP 4.1.1. I'm using a FreeBSD ports system,
so it has some default options to build with FreeType 2.0.6
(libfreetype.so.8),
GD 1.8.4_5 (libgd.so.2),
but no FreeType 1.x libraries (as I later found out).
The installation went smoothly, and I tried to make a dynamic image with
ImageTTFText, which resulted in the error "Could not find/open font". I
verified that the font existed and then someone else suggested that there
had to be an absolute reference to the font like "/www/site/fonts/arial.ttf"
and not just "fonts/arial.ttf" - I tried changing it and it didn't work
still. Same error.
Next, I heard someone saying that you need to compile and tack on this:
--with-ttf=/usr/local (where my lib and include dirs are). So I manually
added that to the configure statement. Recompiled and installation went
smoothly again - no errors. But the images still don't work. Someone
suggested recompiling and tacking on: --enable-native-gd-ttf (or something
like that), which I did and still didn't work after recompiling.
So I completely remove FreeType2 references in the configure statement, and
recompile. Still doesn't work. I remove --enable-native-gd-ttf (or whatever
it was), and it still doesn't work after recompiling. So at this point I
have GD 1.8.4_5 and FreeType 1.3.1 being used by PHP 4.1.1, but it still
doesn't work. I used to use PHP 4.0.3pl1 with GD 1.8.3 + FreeType 1.3.1, and
THAT worked and still works after undoing the upgrade.
But I now notice that the $php_errormsg variable is no longer saying "Could
not find/open font" but it's now blank. Everything SEEMS as though it should
work, but it's not. Can anyone shed some light?
- Jonathan
--- End Message ---