[PHP-INST] PHP binary

2001-10-22 Thread Dariush
G'day People, Could someone please supply me with a (ultra/)sparc PHP4.x binary? I'm going spare trying get the thing to even configure properly! Thanks in advance, Dariush -- PHP Install Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

[PHP-INST] Re: cannot run php within html

2001-10-22 Thread Dariush
you have to modify the PHP mime types to allow parsing of html files, although I wouldn't reccommend it.. Roger Pang <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I have written the following html called "test.html" in /var/www/html > directory : > > > php

[PHP-INST] php-4.x + apache-1.3.20 + OAS

2001-10-22 Thread Michael Drew
Hi all, I hope someone can help me. I can get apache (compile dynamically) and OAS to work, but when I added php module in, it segfault on me. I am on solaris 2.6. This is what i used to compiled php: ./configure --with-apxs=/apxs --with-oci8 --with-oracle= --enable-track-vars --enable-vers

[PHP-INST] About newline or carriage return a in Japanese OS.

2001-10-22 Thread Archer
Hello, Good Day! I have problem regarding newline using Japanese OS (Windows NT), PHP4. I include this code in my php file and this did not act properly, instead (new line), "\n" also displayed in the browser. - Php

[PHP-INST] Re: .alloca under AIX

2001-10-22 Thread Dariush
'export CFLAGS=-ma' to set 'echo $CFLAGS' to view value from shell Bastien Leblanc <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > This is apprently a common problem, but i don't know how to solve it, i > tried the 4.0.6RC4 version, didn't wotk > how can i use

[PHP-INST] How to install PHP4 as interpreter?

2001-10-22 Thread Joe Hu
I'm new to PHP. I just installed PHP4 as an apache module. I'd also like to run php scripts on command line. However, I didn't find php or php4 command on my system. Does any know how to install php4 also as an interpreter? Thanks in advance. joe -- PHP Install Mailing List (http://www.php.ne

RE: [PHP-INST] PHP4-Windows98-PWS

2001-10-22 Thread Jonathan Hilgeman
Try FoxServe: http://sourceforge.net/project/showfiles.php?group_id=24751&release_id=57934 It should set up everything you need - PHP 4.06 / Apache 1.3.22 / mySQL 3.32.43 - Jonathan -Original Message- From: Yim Lee [mailto:[EMAIL PROTECTED]] Sent: Monday, October 22, 2001 5:07 PM To: [E

[PHP-INST] PHP4-Windows98-PWS

2001-10-22 Thread Yim Lee
Looking for help. I tried to install PHP4 on Windows 98 with PWS, following the manual on www.php.net Windows installation section. It dit NOT work, maybe something unclear. If you know, would you get me some help? Thanks COM

php-install Digest 22 Oct 2001 20:42:42 -0000 Issue 517

2001-10-22 Thread php-install-digest-help
php-install Digest 22 Oct 2001 20:42:42 - Issue 517 Topics (messages 4688 through 4699): set/configure php4apache's php.ini location ? 4688 by: benjamin yates Re: pdflib 4689 by: Paul Gardiner Re: PHP/CGI problem: #!/path/php at top of CGI script appears in output

[PHP-INST] Re: PHP/CGI problem: #!/path/php at top of CGI script appears in output

2001-10-22 Thread Philippe Conor
hi, I have tryed .cphp in that way there's no conflict I have searched on the net and I've found others persons that have that problem but I've found no answer :( Bye, Philippe Andrey Hristov writes: > Try to change your script's extension to .cgi instead of .php . It _may_ help. > > -

AW: [PHP-INST] Re: PHP-4.0.6 compilation error

2001-10-22 Thread Stefan Siefert
hm, k, sounds silly, but why don't you install the gd-libs? Think, you first tried to use them or? Might be the fast solution?! Also, you could try to patch the Makefile from hand. Open Makefile with your editor and search for -lgd. Try to remove it, and have a look if that works... Stefan Siefe

Re: [PHP-INST] Re: PHP-4.0.6 compilation error

2001-10-22 Thread Paul
I did that, didn't make a difference. "Stefan Siefert" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hi, > > you could try the following things: make a configure with the --without-gd > switch. Also make sure, that you deleted before the config.cache file (t

AW: [PHP-INST] Re: PHP-4.0.6 compilation error

2001-10-22 Thread Stefan Siefert
Hi, you could try the following things: make a configure with the --without-gd switch. Also make sure, that you deleted before the config.cache file (think there could be a bug with overwriting it). Hope this helps! Stefan Siefert -Ursprüngliche Nachricht- Von: Paul [mailto:[EMAIL PROT

[PHP-INST] Re: PHP-4.0.6 compilation error

2001-10-22 Thread Paul
somebody, anybody, please help :( "Paul" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hi all, > > I'm trying to build php.4.0.6 from source and the first I get an error while > using the --with-gd switch so I took that out and it stopped complaining > after

Re: [PHP-INST] Re: PHP/CGI problem: #!/path/php at top of CGI script appears in output

2001-10-22 Thread Andrey Hristov
Try to change your script's extension to .cgi instead of .php . It _may_ help. -- Andrey Hristov Web Developer Icygen Corporation BUILDING SOLUTIONS http://www.icygen.com On Monday 22 October 2001 04:15 am, you wrote: > Hi, > You're right Dave > > But nobody had already used PHP with CGI and wi

[PHP-INST] Re: [PHP] Mysql export

2001-10-22 Thread Andrey Hristov
PhpMyAdmin (on http://www.phpwizard.net") has the capability to export mysql table ot CSV, then import the CSV or maybe this will help you too(on small tables, otherwise the HTML code is big) $dump=''; $separator=','; $the_query="select * from $table;"; $res=mysql_query($the_query); if ($res){

[PHP-INST] Re: NES 3.5.1 PHP4 Solaris 2.6

2001-10-22 Thread Aki Häkkilä
There was a typo in his obj.conf ("php4_executes") and he needed latest snapshot because the TSRM was recently rewritten. If your NES/iPlanet crashes during init, you may have same problems. This is my original bug report: http://bugs.php.net/bug.php?id=13174 PHP uses pthreads now instead of the

[PHP-INST] Re: PHP/CGI problem: #!/path/php at top of CGI script appears in output

2001-10-22 Thread Philippe
Hi, You're right Dave But nobody had already used PHP with CGI and with Apache ??? I searched on the net, but I've found no documentation on this problem Bye Philippe Dave Goodrich writes: > Nope it fails when he removes the line. It fails on me as well, I tried > it. Also note I did say

[PHP-INST] Re: AW: PHP/CGI problem: #!/path/php at top of CGI script appears in output

2001-10-22 Thread Philippe
Hi, Yes I have used --enable-discard-path, the script work with #!/usr/local/bin/php I'll give the full configuration later Philippe Stefan Siefert writes: > Hi, > > well I do understand your needing. > > First a question. What are your compile options, e.g. your configure call? > Do

Re: [PHP-INST] pdflib

2001-10-22 Thread Paul Gardiner
Hi Brent, I'm afraid no idea's why you're having the problem but 4.0.6 & pdflib 4.0.1 do work. - Paul - - Original Message - From: "Mark Newnham" <[EMAIL PROTECTED]> To: "'Brent Meshier'" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Friday, October 19, 2001 9:03 PM Subject: RE: [PHP-I

[PHP-INST] set/configure php4apache's php.ini location ?

2001-10-22 Thread benjamin yates
is there a way to set the location of the .ini to use as php.ini when the apache 1.3.x module loads? my system is working fine, but i also use php as a non-web scripting engine and i wanted to keep the .ini's separate - (yes i know i could leave the module using php.ini and force all of the