RE: [PHP-INST] HTTPS & PHP - page cannot be displayed

2003-06-03 Thread Jon Wagoner
IE does not implement SSL according to standards, so the following needs to be in your Apache config to work around this, in your SSL VirtualHosts: SetEnvIf User-Agent ".*MSIE.*" \ nokeepalive ssl-unclean-shutdown \ downgrade-1.0 force-response-1.0 -Original Message- Fr

RE: [PHP-INST] Extension missing?

2002-08-28 Thread Jon Wagoner
At first glance it looks like the php file is expecting register_globals to be on, but it is off for security purposes in recent releases of PHP. You'll need to set register_globals to on in the php.ini file. -Original Message- From: Tj-S [mailto:[EMAIL PROTECTED]] Sent: Wednesday, Aug

[PHP-INST] apache 2.0.35 caching php 4.2.0 pages

2002-05-10 Thread Jon Wagoner
I have set up Apache 2.0.35 and PHP 4.2.0, and everything seems to be working fine, mostly. The only problem is that Apache is returning 304 Not Modified messages for the php pages, so dynamic content is getting lost. I am using SetInputFilter and SetOutputFilter to enable PHP in Apache. Anyo

RE: [PHP-INST] PHP4.1.1, Apache-1.3.23 IMAP doesnt work for me...HELP!!!

2002-01-29 Thread Jon Wagoner
I think that should be --with-imap=../imap/c-client, not --enable-imap -Original Message- From: Ron Simpson [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 29, 2002 2:30 PM To: [EMAIL PROTECTED] Subject: [PHP-INST] PHP4.1.1, Apache-1.3.23 IMAP doesnt work for me...HELP!!! I have insta

RE: [PHP-INST] PHP 4.1.x cannot compile with ssl

2002-01-17 Thread Jon Wagoner
Try doing just ./configure --with-openssl=/usr The script usually tries to apply the subdirectories correctly, so you genererally just need the main directory it's in. -Original Message- From: Matthew Darcy [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 17, 2002 6:36 AM To: [EMAIL P

[PHP-INST] fix for problem with configure script libxml

2002-01-16 Thread Jon Wagoner
A machine I was installing on had both libxml and libxml2. In the configure script test, it has: if test -r $PHP_DOM/include/libxml/tree.h; then DOMXML_DIR=$PHP_DOM elif test -r $PHP_DOM/include/libxml2/libxml/tree.h; then DOMXML_DIR=$PHP_DOM DOMXML_DIR_ADD="/libxml2" Since it

RE: [PHP-INST] My first PHP

2002-01-04 Thread Jon Wagoner
In windows you'll just want to download the windows binaries and use them, instead of trying to compile yourself. -Original Message- From: Morten Nielsen [mailto:[EMAIL PROTECTED]] Sent: Friday, January 04, 2002 6:00 PM To: [EMAIL PROTECTED] Subject: [PHP-INST] My first PHP Hi again I

RE: [PHP-INST] getrusage() not supported

2001-11-13 Thread Jon Wagoner
Looking at the php manual page, I would guess that this is not supported in Windows. It says this php function is an interface to the unix getrusage command. Since windows would not support this command, I imagine they just left it out of the windows port. -Original Message- From: Danie

RE: [PHP-INST] php not working on my localhost

2001-11-12 Thread Jon Wagoner
The normal extension for php4 is .php So, unless you've added .php4 to your httpd.conf, you'll need to use .php -Original Message- From: Landy Roman [mailto:[EMAIL PROTECTED]] Sent: Saturday, November 10, 2001 5:39 PM To: [EMAIL PROTECTED] Subject: [PHP-INST] php not working on my localh

RE: [PHP-INST] RE: config failure on RH6.2

2001-11-09 Thread Jon Wagoner
Do you have 2 copies of gd? One under /usr/local and one just under /usr? -Original Message- From: Justin DeVuyst [mailto:[EMAIL PROTECTED]] Sent: Friday, November 09, 2001 3:23 PM To: [EMAIL PROTECTED] Subject: [PHP-INST] RE: config failure on RH6.2 If I try to run configure with just

[PHP-INST] RE: PHP 4.0.6 printer functions...

2001-09-07 Thread Jon Wagoner
On the main printer page (http://www.php.net/manual/en/ref.printer.php) it says the printer functions are only available under Windows. -Original Message- From: Dave [mailto:[EMAIL PROTECTED]] Sent: Friday, September 07, 2001 9:28 AM To: [EMAIL PROTECTED] Subject: [PHP-INST] PHP 4.0.6 pri

RE: [PHP-INST] problems compiling php 4.0.6 into apache 1.3.20

2001-08-07 Thread Jon Wagoner
It seems that --enable-xslt and --with-xslt-sablot are mutually exclusive. This together with the V_FOPEN/VCWD_FOPEN I e-mailed about earlier got it up and running. -Original Message- From: Jon Wagoner [mailto:[EMAIL PROTECTED]] Sent: Monday, August 06, 2001 5:29 PM To: '[

[PHP-INST] V_FOPEN changed to VCWD_FOPEN?

2001-08-07 Thread Jon Wagoner
I was trying out some modules, just experimenting, and tried to use the Ming module with PHP 4.0.6. PHP compiled fine, but then when I went to compile Apache (1.3.20) with php as a module, apache complained about: modules/php4/libphp4.a(ming.o): In function `php_if_swfmovie_save': /usr/src/php-4

[PHP-INST] problems compiling php 4.0.6 into apache 1.3.20

2001-08-06 Thread Jon Wagoner
I am trying to compile php with many of the options, to try different things out. So far, I have managed to get PHP to compile. Apache seems to compile okay until what seems like the last step, then I start getting errors. The last part of the make returns this: Any help would be appreciated.

[PHP-INST] problem with configure script and fdf support

2001-07-31 Thread Jon Wagoner
We have a client that is using fdf with their current site (asp) and I was curious about the support in php. I found that the configure script had a problem, and was including -l by itself in the LIBS variable. The problem is on line 16436 (this is php 4.0.6, not sure if that matters) This line

[PHP-INST] php & libpng

2001-07-25 Thread Jon Wagoner
option, I get the following lines before it quits: checking for the location of libpng... yes checking for png_info_init in -lpng... no configure: error: libpng not found! Can anyone help with this? The machine is a Pentium 166 with 128MB running Mandrake 8.0 Jon Wagoner