[PHP-INST] php 4.0.6 configure script fails

2001-11-20 Thread Tony White
Hi there, I seems to have discovered a problem with the configure script when you use the option --with-apxs2 (so you can use php4 under Apache 2.0). this is the command I try: ./configure --with-mysql --enable-force-cgi-redirect --with-apxs2=/usr/local /apache2/bin/apxs it fails with: -- ch

php-install Digest 20 Nov 2001 23:16:16 -0000 Issue 565

2001-11-20 Thread php-install-digest-help
php-install Digest 20 Nov 2001 23:16:16 - Issue 565 Topics (messages 5038 through 5050): Re: Your Info Has Arrived 5038 by: usa.registeredsite.com Upgrade problems 5039 by: Youvnor Re: configure: error: cannot find output from lex; giving 5040 by: Martin Grünzweig

[PHP-INST] help!!!

2001-11-20 Thread JIM MARTIN
i dont know, i just spent 2+ weeks tinkering, and it just dont work. trying to get "omni" / "php" to work and then with "mysql." gone though docs completely, but, stumped, stone cold. just the basics would help. thanks, jim which operating system, what PHP version, what web server, if ou a

[PHP-INST] Re: cannot load MySQL extension

2001-11-20 Thread chandra
> I´ve php4 installed in my Red Hat 7.2 linux server and I´m sure I > have everything properly installed (php - client, server, lib and apache) > according to the > manuals and comments that I found in this site... the problem is > that when I try to open a php3 extension page in the server, I g

[PHP-INST] using php with existing ldap server

2001-11-20 Thread Jeffrey_N_Dyke
Hello All, i am new to this list and have a question. I apologize if this has been answered in previous threads, but i have searched through the archives and did not see what i was looking for, but there is a distinct possibility that i am blind. I am running Apache1.3.19/PHP/MYSQL(not that it

RE: [PHP-INST] Server 500 Error....

2001-11-20 Thread Corn Vollney-R7019C
Likewise, did you configure IIS 4 for the .php suffix? Also might help to open the .exe etc files to IIS 4's default users, sorry I cant remember what their called anymore, but there are two of them, one for regular web users and the other to execute scripts. Voll -Original Message-

Re: [PHP-INST] Server 500 Error....

2001-11-20 Thread Chris
Greetings, What *verbosity* level are you running your Error Log(s) at? If set high enough, your server should dump some informative info (pointers), that'll help point you in the right direction. Off the top of my head, I would guess a Permission Issue. Best Wishes, Chris > Hi. > > A few we

Re: [PHP-INST] Problem with installing GD

2001-11-20 Thread Jim Barcelona
Hello amiroot - In the future please be sure to read ./configure --help which says: --with-gd=DIR Include GD support (DIR is GD's install dir) For me this is: ./configure --with-gd=/usr/local/src/gd-1.8.4 For you, it is whatever directory in which you configured and compiled GD. Ami

RE: [PHP-INST] cannot read output with fgets() from popen()

2001-11-20 Thread Jonathan Hilgeman
What's with the extra pair of parentheses? > $fp = popen("/bin/ls"),"r"); Change it to: > $fp = popen("/bin/ls","r"); - Jonathan -Original Message- From: Jim Barcelona [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 20, 2001 11:03 AM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subje

Re: [PHP-INST] cannot read output with fgets() from popen()

2001-11-20 Thread Jim Barcelona
Try: Instead. [EMAIL PROTECTED] wrote: > i try to: > > $fp = popen("/bin/ls"),"r"); > $retvalue = fgets($fp, 4096); > pclose($fp); > print $retvalue; > > why $retvalue is always "" (blank)? config is: apache, php, suse... all > newer versions... and standard configurations... apache runs on a

Re: [PHP-INST] CGI and Apache install!

2001-11-20 Thread Jim Barcelona
David, Here's what I use and it works just fine: # FOR PHP CGI ./configure --with-gd=/usr/local/src/gd-1.8.4 --with-ttf=/usr/local/src/freetype-1.3.1 --with-jpeg-dir=/usr/local/src/jpeg-6b --with-mysql=/usr/local/mysql --enable-ftp --with-pdflib=/usr/local/src/pdflib-4.01 --with-zlib-dir=/usr/lo

[PHP-INST] Server 500 Error....

2001-11-20 Thread Nathaniel Harari
Hi. A few weeks ago, I got PHP Nuke to install beautifully on my XP machine at home to test it - no problems for a first time user. Now, I want to use it for my work web site on my remote server for the company I work for. I am running Windows 2000 Server edition on a nice fast box with IIS 4.

[PHP-INST] Re: configure: error: cannot find output from lex; giving

2001-11-20 Thread Martin Grünzweig
Look at this page and download this file!http://freshmeat.net/projects/flex/ Good luck martin Philippe Blainville schrieb: > Help > > when I run configure to install php 4.0.6 , I've got this error message > "checking lex output file root... ./configure: lex: command not found > configure:

[PHP-INST] Upgrade problems

2001-11-20 Thread Youvnor
I'm trying to upgrade from php 4.0.4pl1 to 4.0.6 i used rpm to install the previus version. i found the rpms that i need to but i had some problems installing them, because the need some others rpm (about 7) that make version conflics with other files that other applications use in my system...

[PHP-INST] Fw: Your Info Has Arrived

2001-11-20 Thread usa
To: [EMAIL PROTECTED] From: () Subject: Fw: Your Info Has Arrived Below is the result of your feedback form. It was submitted by () on Tuesday, November 20, 2001 at 08:18:45 --- message: Real Networker Leads, Real Powerf

php-install Digest 20 Nov 2001 10:59:32 -0000 Issue 564

2001-11-20 Thread php-install-digest-help
php-install Digest 20 Nov 2001 10:59:32 - Issue 564 Topics (messages 5031 through 5037): Re: Cannot Find MySQL Header Files 5031 by: Rasmus Lerdorf 5032 by: Gabriel Richards How to configure PHP to use several php.ini under IIS? 5033 by: Igor Petrov CGI and Apache

RE: [PHP-INST] Install php4.0.6 with Oracle9i in Linux Redhat7.2(Kernel 2.4.9-13)

2001-11-20 Thread Jaeck Stephan
Hello Kexiao, normally PHP 4.0.6 should work with Oracle 9i (as it works on my Suse 7.2). Try to use the lib directory of Oracle installation as Oracle_home directory in the configure-script (--with-oci8=/path/to/oracle/lib) I did it this way and it works. The .so and libs of 9i are the same as

[PHP-INST] Re: CGI and Apache install!

2001-11-20 Thread Chris Allen
david, If you find out let me know I am trying to do the same thing. -- "David Tandberg-Johansen" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hello! > > I am working on a RH 6.2 box and i try to install and configure PHP 4.0.6 as > CGI and as and Apache m

Re: [PHP-INST] IIS - CGI or ISAPI

2001-11-20 Thread Phil Driscoll
On Monday 19 November 2001 11:14 am, Lennart Pedersen wrote: > Hi all. > > I'd like to install PHP for IIS5. Should I use the CGI or ISAPI method. > Whats the difference besides speed. CGI will work reliably, ISAPI will probably not. CGI will not have access to the http authentication headers, IS