Re: [PHP-INST] installing PHP 4.3.2 on Debian Potato

2003-08-08 Thread Bertrand PERRINE
Upgrade to debian 3.0r1 to have libraries uptodate for php 4.3.2 and compile php 4.3.2 for your system. (if you are learning fast, try to repackage php, it's not so hard) You may find some unoffical package at http://apt-get .org. B. Michael Taekema wrote: Hello. I am fairly new at linux but

Re: [PHP-INST] Installing on local machine

2003-07-31 Thread Daniel Moore
What was the error? Trisha M wrote: Hi all, I'm trying to install PHP on a local computer so I can learn how PHP without having to dial up all the time. MYSQL is installed already, and seems to be working correctly, but I cannot get PHP to install. I tried the Windows installer program, and go

Re: [PHP-INST] Installing PHP on LINUX with options other than standard

2003-07-13 Thread . ma
hi there are many tutorials out there how to compile PHP under linux. to use these extensions you first have to install them on your computer. eg you have to install the gdlib for gd-support, the zlib for tlib-support, oracle-drivers for oci8-support and so on. just take a look at http://at.p

Re: [PHP-INST] Installing PHP on Apache 2 with Win2k

2003-02-15 Thread firepages
I would suggest you grab 2.0.44 as its much stabler than .43 on win32 ... regardless.. there is nothing wrong with your LoadModule line assuming the path is correct try sticking a copy of php.exe and php4ts.dll into your /sapi folder Regards, Simon <[EMAIL PROTECTED]> wrote in message [EMAIL PR

Re: [PHP-INST] installing php on redhat

2003-01-02 Thread Jaleen Liu
In RedHat 8.0, you can use RPM to remove the PHP coming with it. Then download the PHP source, configure ti with something like: ./configure --with-apxs2=/path/to/apxs --prefix=/path/to/php make make install Then restart Apache. It will warn you that php module has already been loaded and skip. J

Re: [PHP-INST] Installing php on AIX (4.3.3)

2002-12-16 Thread Kirt Thomas
I tried this and end with the same results, is it the shtool that creates the libphp4.so in the libs directory? It seems like it's not getting created there, and so can't be copied ? At 04:33 PM 12/13/2002 -0700, Jim Thome wrote: It appears like the extension for shared libraries on AIX is .a (

Re: [PHP-INST] Installing php on AIX (4.3.3)

2002-12-13 Thread Jim Thome
It appears like the extension for shared libraries on AIX is .a (depends on your version of AIX; the new linker in AIX release 4.2.1 is .so). To hack the apxs... On line 116 of the apxs script in Apache 1.3.26: Change: my $dso_ext = "so"; To: my $dso_ext = "a"; On line 381: Change: $d =~ s|\.s

Re: [PHP-INST] Installing php on AIX (4.3.3)

2002-12-13 Thread Kirt Thomas
As far as I can tell it's .so - what would I change in the apxs script from so to sl, if it does turn out that it's sl? At 03:04 PM 12/13/2002 -0700, Jim Thome wrote: What suffix does AIX use for shared libaries? .sl or .so? If it's something other than .so, you will have to hack your apxs scr

Re: [PHP-INST] Installing php on AIX (4.3.3)

2002-12-13 Thread Jim Thome
What suffix does AIX use for shared libaries? .sl or .so? If it's something other than .so, you will have to hack your apxs script to change it to whatever your system needs. (Just search apxs for .so; it is only in two places in newer apxs scripts). After changing your apxs script, run mak

Re: [PHP-INST] Installing PHP as a CGI Interpreter RedHat7.3apache 1.3.26

2002-09-23 Thread Jim Thome
Remove the switch --with-apxs and recompile to get the PHP binary. >>> "GoodnGo.de (R) Zentrale" <[EMAIL PROTECTED]> 09/23/02 06:30AM >>> Hello Master of PhP, I am a perl hacker, so don t yell on me. I want to run php scripts and install PHP as a CGI Interpreter. I am running RedHat 7.3, apac

Re: [PHP-INST] Installing PHP as a module of Apache 1.3.26 - undefined_zval_ptr_dtor_wrapper

2002-09-09 Thread David Herring
What are the latest known to be working versions of gd and libpng which one should compile php 4.2.3 with ? (so far tried gd 1.8.4 / 2.0.1 and libpng 2.1.4 / 1.0.14 - aways fails on imagecreatefrompng) thx dave David Herring wrote: > > Done some investigation. > > If you remove the "

Re: [PHP-INST] Installing PHP as a module of Apache 1.3.26 - undefined_zval_ptr_dtor_wrapper

2002-09-09 Thread David Herring
Done some investigation. If you remove the " --enable-debug "" from the configure line below it will build and install okay. But then I hit the problem that I hoped 4.2.3 would address - ImageCreateFromPNG get a segV ever time I call it. Any ideas on this ? Thanks Dave David Herring wr

Re: [PHP-INST] Installing PHP as a module of Apache 1.3.26 - undefined_zval_ptr_dtor_wrapper

2002-09-09 Thread David Herring
I get the same error with apache 2.0.40... so what's wrong with my php compile ?? Under Suse 8.0 with the following config options:- ./configure --enable-debug \ --with-mysql=/usr/local/mysql \ --with-gd=/usr/local/gd-1.8.4 \ --with-png-dir=/usr/lib \

Re: [PHP-INST] Installing PHP as a module of Apache 1.3

2002-09-09 Thread Jeanne Case
In case no one has replied, They mean where you installed Apache from, not where you are installing Apache to. This is assuming you are also installing Apache from source and compiling it yourself. The php installs a directory under the apache source tree with the php module in it. When you com

Re: [PHP-INST] Installing command-line php binary

2002-08-30 Thread Vicki Brown
On Friday, August 30, 2002, at 02:26 , Chris Hewitt wrote: > Vicki Brown wrote: > >> >> On Wednesday, August 28, 2002, at 07:27 PM, Jim Thome wrote: >> >>> I believe the binary is only installed when compiled as a CGI >>> program. Remove the nsapi line and recompile to get the >>> binary inst

Re: [PHP-INST] Installing command-line php binary

2002-08-30 Thread Chris Hewitt
Vicki Brown wrote: > > On Wednesday, August 28, 2002, at 07:27 PM, Jim Thome wrote: > >> I believe the binary is only installed when compiled as a CGI >> program. Remove the nsapi line and recompile to get the binary >> installed. > > If that is the case, it would be a bug... it should never b

Re: [PHP-INST] Installing command-line php binary

2002-08-29 Thread Vicki Brown
On Wednesday, August 28, 2002, at 07:27 PM, Jim Thome wrote: > I believe the binary is only installed when compiled as a CGI > program. Remove the nsapi line and recompile to get the binary > installed. > > http://www.php.net/manual/en/install.commandline.php > If that is the case, it would

Re: [PHP-INST] Installing command-line php binary

2002-08-28 Thread Jim Thome
I believe the binary is only installed when compiled as a CGI program. Remove the nsapi line and recompile to get the binary installed. http://www.php.net/manual/en/install.commandline.php Jim >>> Vicki Brown <[EMAIL PROTECTED]> 08/28/02 17:45 PM >>> On Wednesday, August 28, 2002, at 04:10 P

Re: [PHP-INST] Installing command-line php binary

2002-08-28 Thread Vicki Brown
On Wednesday, August 28, 2002, at 04:10 PM, Jim Thome wrote: > What is your configure line? I am using --enable-cli, as required pre-4.3 configure \ --with-nsapi=/usr/prop/netscape/server4/ \ --with-mysql=/usr/local/mysql \ --with-imap \ --with-kerberos=/usr/local \ --with-ldap \ --enable-cli

Re: [PHP-INST] Installing command-line php binary

2002-08-28 Thread Jim Thome
What is your configure line? >>> Vicki Brown <[EMAIL PROTECTED]> 08/28/02 05:06PM >>> I'm using PHP 4.2.2 (the "stable" build, not any f the later builds), so I still need to configure with --enable-cli (which I have done). Then I do the make, and make install, and at the end of the install o

re: [PHP-INST] Installing PHP on Windows XP Home and Apache

2002-08-12 Thread Robert Walkama
> What you need to do is in the httpd.conf file change your line to read > something like this: > > # php type > AddType application/x-httpd-php .php .htm .html > > > > - Original Message - > From: "David Lees" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Monday, August 1

Re: Re: [PHP-INST] Installing php 4.2.2 with apache 2.0.39

2002-08-04 Thread Ryan Adorable
Disregard my last message, it's done now. he he. Thank you very much Ryan - Original Message - From: "Ryan Adorable" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, August 04, 2002 4:53 PM Subject: Re: Re: [PHP-INST] Installing php 4.2.2 with apa

Re: Re: [PHP-INST] Installing php 4.2.2 with apache 2.0.39

2002-08-04 Thread Ryan Adorable
I got this new error: make[1]: Entering directory `/usr/www/php-4.2.2' /bin/sh /usr/www/php-4.2.2/libtool --silent --mode=link gcc -I. -I/usr/www/php-4.2.2/ -I/usr/www/php-4.2.2/main -I/usr/www/php-4.2.2 -I/usr/www/include -I/usr/www/php-4.2.2/Zend -I/usr/www/imap-2002.RC2/c-client -I/usr/db/

Re: [PHP-INST] Installing php 4.2.2 with apache 2.0.39

2002-08-04 Thread Georgy Goshin
Hi, In file "" change macro name to AP_MODULE_MAGIC_AT_LEAST This should be done because Apache developers have changed this name in version .39. Georgy. Quoting Ryan Adorable <[EMAIL PROTECTED]>: > Hi, > >I got this configure line: > > > > > ./configure --with-apxs2=/usr/www/bin/ap

Re: [PHP-INST] Installing php4.2.1 win32-installer on Apache 2.0.39

2002-07-14 Thread Phil Driscoll
On Sunday 14 July 2002 12:45 am, AzN Knightmare wrote: > I installed Apache 2.0.39 and it works fine. I have it all configured > correctly. But when I install php4.2.1 win32-installer, it does not create > a sapi folder in the php directory. So this means I dont have a > php4apache.dll. Anyone kno

Re: [PHP-INST] installing php

2002-06-30 Thread Chris Hewitt
Carlos, You will need to tell us exactly how it is not working. What error messages, what platform. I think php support for apache 2 is still experimental (though some people have it working) so I assume you really need apache 2 and not 1.3.x HTH Chris carlos silva wrote: >I have a problem!

RE: [PHP-INST] Installing over old PHP install?

2002-06-26 Thread Jonathan Thomas
If you're running redhat you should be able to upgrade php by way of red hat's rpm (up2date). This will allow the upgrade to happen without requiring a re-compile of apache. Thanks, JT -Original Message- From: Nick Wilson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 26, 2002 2:33

Re: [PHP-INST] installing PHP as mod_php on Apache 2.0.39

2002-06-25 Thread B. PERRINE
The option to use is : --with-apxs2=/path/to/apxs B. Le lun 24/06/2002 à 10:57, Dapid Candra a écrit : > Hello, > > I am trying to install PHP 4.2.1 and Apache 2.0.39 and I want to configure > PHP to run as mod_php. > > Is anyone have a step-by-step installation documentation on this? I tried

Re: [PHP-INST] Installing PHP with Apache 2.x

2002-05-30 Thread Nick Couchman
Actually all of the stuff on that page is for Apache 1.3.x (or so it appears). I need it for the new Apache 2.x. -Nick Julie Meloni wrote: > NC> Well, this is okay - if you're a windoze user. I'm not a Windoze user, > NC> I'm running RedHat Linux 7.2, so it doesn't do me much good. Thanks, >

Re: [PHP-INST] Installing PHP with Apache 2.x

2002-05-30 Thread Nick Couchman
Well, this is okay - if you're a windoze user. I'm not a Windoze user, I'm running RedHat Linux 7.2, so it doesn't do me much good. Thanks, anyway! --Nick toby - wrote: > someone mailed me this link few days bak ... > worked fo me > hope it works fo u too . > > http://thickbook.com/e

Re: [PHP-INST] installing php4 with xitami

2002-05-25 Thread Phil Driscoll
On Saturday 25 May 2002 12:47 am, Ryan Galloway wrote: > I'm sure some of you have seen this error. Does this have to do with > permissions on my machine? I tried the help link but didn't get much out > of it. Should I change this line in my php.ini tag from 1 to 0? Yes! Cheers -- Phil Drisco

Re: [PHP-INST] installing php under linux

2002-05-18 Thread Austin Gonyou
./configure --with-mysql --with-apxs=/path/to/apxs(unless it's installed globally. ie /usr/bin/apxs) On Sat, 2002-05-18 at 13:51, Erik wrote: > hi, > > when i run /usr/local/apache/bin/httpd -l mod_php4.c isn't listed i > already > added > > AddType appalication/x-httpd-php .php to httpd.conf

Re: [PHP-INST] Installing PHP 4.20 on RedHat 7.1 for use with Apache

2002-05-12 Thread Chris Hewitt
Rodney, If its the same as prevous versions, its the file called INSTALL in the top level of the source directory. HTH Chris Rodney S. Foley wrote: >Can someone help me. > >I have been looking for a walk through/tutorial to help me get PHP 4.20 >setup on my linux box running RH71. I setup PH

Re: [PHP-INST] Installing on Solaris 7

2002-04-04 Thread Pierre-Alain Joye
Did you installed the gnu tools ? ( available on sun freeware site, http://www.sunfreeware.com/) These tools are a must to compile php on solaris. Next read the special chapter in the php doc ( comments are usefull sometimes :) ) hth pa -- PHP Install Mailing List (http://www.php.net/) To un

Re: [PHP-INST] Installing PHP on Win98 with PWS

2002-03-29 Thread Philip J. Newman
- Original Message - From: "Brett Moyer" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, March 30, 2002 4:56 PM Subject: [PHP-INST] Installing PHP on Win98 with PWS > Can anyone help I followed all inst. in the books I have and in the dl > documents that came with Php but w

RE: [PHP-INST] Installing PHP/Apache on Win2000

2002-01-05 Thread S Chouinard
I haven't modified the lmhosts file. I am running a local network using TCP/IP. Got Apache intro page to show up in the browser, no problem there. But PHP files not working. Does the install have to be to the OS directory? > I had this problem on my PC after I modified the lmhosts file. > Now I

Re: [PHP-INST] Installing PHP/Apache on Win2000

2002-01-05 Thread David Callaghan
I had this problem on my PC after I modified the lmhosts file. Now I just 127.0.0.1 and it works just fine. >Hi, > >I'm running Win2000. I installed MySQL 3.23.47, Apache 1.3.22 and PHP 4.1.1. > >MySQL and Apache are running just fine. However, I can't seem to get PHP >scripts to work on "localh

Re: [PHP-INST] Installing PHP on Linux

2001-12-30 Thread B. van Ouwerkerk
> Then I reinstalled PHP, and then it didn't work then either! >What could possibly be the problem? Any one know how to install it >correctly? You need to install MySQL then PHP and then Apache. Take a look at www.devshed.com click serverside and look for an article about installing those to

Re: [PHP-INST] Installing on Win98 IIS 4.0/PWS 4.0

2001-09-15 Thread Deryck Henson
on all of the directories Any thing I forgot to mention tell me. - Deryck H - http://www.comp-u-exchange.com - Original Message - From: "Data Driven Design" <[EMAIL PROTECTED]> To: "Deryck Henson" <[EMAIL PROTECTED]> Sent: Saturday, September 15, 2001 9:0

RE: [PHP-INST] Installing PHP on WinNT and Apache 1.3

2001-07-28 Thread Almagedon
Hi again... THAT'S FOR SOMEBODY THAT HAS MY PROBLEM... The file i mentioned in my last post, is an Apache-MySQL-PHP combo that includes phpMyAdmin (everything is configured and it works... even in NT) The problem (It seems only happens in NT) is the next: in the httpd.conf file you need to set

RE: [PHP-INST] Installing PHP on WinNT and Apache 1.3

2001-07-27 Thread Almagedon
ThanX for your help, Phill I resolved it ;) It seems that it's some wrong with NT and PHP (I've talked with another person that had the same problem)... If someone has this problem, you can make it work downloadin PHPTriad, available in www.phpgeek.com ThanX again, Phill... It's working aLmA

Re: [PHP-INST] Installing PHP on WinNT and Apache 1.3

2001-07-27 Thread Phil Driscoll
On Thursday 26 July 2001 22:30, aLmAgEdOn wrote: > when i run php hola.php, it shows the right lines, but when i run it with > my browser, it gives a 500 error... an in the error log, appear these > lines: > > [Thu Jul 26 11:10:17 2001] [error] [client 127.0.0.1] > c:/servers/server1/php/hola.php

RE: [PHP-INST] Installing PHP on WinNT and Apache 1.3

2001-07-26 Thread aLmAgEdOn
really thanks for your help... I did what you said... my httpd.conf has now these lines (may i have an incorrect apache version? i've got 1.3 and php asks for 1.3.x): ScriptAlias /php/ "C:/servers/server1/php/" AddType application/x-httpd-php .php Action application/x-httpd-php "/php/php.exe" w

Re: [PHP-INST] Installing PHP on WinNT and Apache 1.3

2001-07-25 Thread Phil Driscoll
On Thursday 26 July 2001 02:15, aLmAgEdOn wrote: > Hi everyone... > > I'm really a newbie in PHP. I've got Perl running in Apache (NT 4, > workstation), and i want to install PHP 4 (binary) too. > > These are the lines i added to httpd.conf > > ScriptAlias /php/ "C:/servers/server1/php/" > AddType

Re: [PHP-INST] Installing PHP4 on IIS4 server-interpreter problems

2001-07-20 Thread Phil Driscoll
On Thursday 19 July 2001 22:09, david lamson wrote: > I have gone through the FAQs and manual, and can not get it up and running. > Any ideas? Reread install.txt - the registry does not get involved in php configuration on your platform. -- Phil Driscoll -- PHP Install Mailing List (http://ww

Re: [PHP-INST] Installing PHP 4.0.6 on IIS5 under W2K

2001-07-10 Thread David Zinzius
> hm, did you (in ISAPI) enter php.exe %s %s ? Cause if you do not so (e.g. > only php.exe) this could be the reason for this error ... :-) Hmm i tried entering as CGI [PATH]\php.exe %s %s then I got the CGI Error In ISAPI I tried it now with [PATH]\php4isapi.dll %s %s now I get the error me

Re: [PHP-INST] Installing on Windows?

2001-07-09 Thread Phil Driscoll
On Monday 09 July 2001 11:37, diemonde wrote: > Hi, > > I am just learning (well trying to) PHP and to do some stuff I need to > install on Windows, what can I use best. You first need a web server. Xitami is probably the best bet if your requirements are simple. Use Apache if you need to host m

Re: [PHP-INST] installing mysql...

2001-05-03 Thread B. van Ouwerkerk
>Then it wouldn't let me start it with ./bin/safe_mysqld --user=mysql & >but I could start it without naming a user (./bin/safe_mysqld) and >create new dbs and stuff. So is that running as root then? It also won't >let me change the password (or I'm doing it wrong---using ./mysqladmin >-u root -p

Re: [PHP-INST] Installing PHP4.0.4pl1 under Win2000

2001-04-26 Thread Phil Driscoll
To get some decent error reports about what's going wrong, make sure you have php.exe on your machine in the same directory as php4isapi.dll. >From the command line, change to that directory and type php.exe -i You'll either get a screen full of html or a useful error message which will help you

RE: [PHP-INST] Installing the pdf extensions

2001-04-20 Thread Grimes, Dean
rebuild PHP as normal only add --with-pdflib. Have fun... Dean -Original Message- From: Panya Worawichawong [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 18, 2001 5:28 PM To: [EMAIL PROTECTED] Subject: RE: [PHP-INST] Installing the pdf extensions I'm not sure, but I think the l

Re: [PHP-INST] Installing PHP 4.0 on Windows 2000

2001-04-19 Thread Peter Mosinskis
- Original Message - >From: "Peter Mosinskis" <[EMAIL PROTECTED]> >To: <[EMAIL PROTECTED]> >Cc: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> >Sent: Wednesday, April 18, 2001 4:25 PM >Subject: Re: [PHP-INST] Installing PHP 4.0 on Windows 2000 &

Re: [PHP-INST] Installing PHP 4.0 on Windows 2000

2001-04-18 Thread Peter Mosinskis
d by not returning a complete set of HTTP headers. The headers it did return are" Any ideas? --Peter >List: php-install >Subject: Re: [PHP-INST] Installing PHP 4.0 on Windows 2000 >From: "Michael C" <[EMAIL PROTECTED]> >Date: 2001-04-18 2:53:48 >[

RE: [PHP-INST] Installing the pdf extensions

2001-04-18 Thread Panya Worawichawong
I'm not sure, but I think the latest working version of pdflib for php4 is 3.0. Later versions didn't work for me. Try that. - panya -Original Message- From: Taylor, Stewart [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 18, 2001 8:38 AM To: '[EMAIL PROTECTED]' Subject: [PHP-INST] Ins

Re: [PHP-INST] Installing PHP 4.0 on Windows 2000

2001-04-17 Thread Michael C
Ricardo: I just downloaded and installed PHP on Windows 2000 with IIS 5.0. It works great! Here is the URL: http://www.php.net/manual/en/install-windows.php Let me know if that helps Thanks Mike ""Ricardo Granja"" <[EMAIL PROTECTED]> wrote in message 9bitbp$t4c$[EMAIL PROTECTED]">news:9bit

Re: [PHP-INST] Installing with PWS

2001-04-13 Thread Phil Driscoll
Have you tried this yet? >> At the command line, change to the directory containing php.exe and >> type php.exe -i. -- Phil Driscoll Dial Solutions +44 (0)113 294 5112 http://www.dialsolutions.com http://www.dtonline.org -- PHP Install Mailing List (http://www.php.net/) To unsubscribe, e-mail

Re: [PHP-INST] Installing with PWS

2001-04-13 Thread John Meyer
The installation did it's stuff. I'm getting the error when I bring up the page. [EMAIL PROTECTED] ("Phil Driscoll") wrote in <008501c0c42b$9e17eda0$0c01a8c0@philsntserver>: > ssuming the installation did it's stuff (if not, tell us at what stage > you got the error message): > > At the command

Re: [PHP-INST] Installing with PWS

2001-04-13 Thread Phil Driscoll
Assuming the installation did it's stuff (if not, tell us at what stage you got the error message): At the command line, change to the directory containing php.exe and type php.exe -i. The error message you get there might be more descriptive. Cheers -- Phil Driscoll Dial Solutions +44 (0)113 29

Re: [PHP-INST] installing with gd and XFree86

2001-04-03 Thread Jani Taskinen
On Tue, 3 Apr 2001, Mike wrote: >What am i doing wrong Change the --with-xpm-dir=/usr to --with-xpm-dir=/usr/X11R6 and it should work. Remember to delete config.cache before configure! --Jani > >=---

Re: [PHP-INST] Installing PHP on PWS

2001-03-15 Thread Ruprecht Helms
>Hi, >... > >Also, if I install PHP, will that cause any problems running ASP still? I don't think so. PHP musst also run in a runable directory of the PWS unter wwwroot. Don't forget the phpinterpreter. I think ASP is handled by PWS itself. Regards, Ruprecht -- PHP Install Mailing List (ht

RE: [PHP-INST] installing PHP with-apxs with-oci8 --with-oracle onLinux

2001-03-15 Thread Damien Lièvre
e la part de Jani Taskinen Envoyé : mercredi 14 mars 2001 18:22 À : Damien Lièvre Cc : [EMAIL PROTECTED] Objet : Re: [PHP-INST] installing PHP with-apxs with-oci8 --with-oracle onLinux On Wed, 14 Mar 2001, Damien Lièvre wrote: >I've successfully installed PHP4 on Linux, Apache with-apxs,

Re: [PHP-INST] installing PHP with-apxs with-oci8 --with-oracle onLinux

2001-03-14 Thread Jani Taskinen
On Wed, 14 Mar 2001, Damien Lièvre wrote: >I've successfully installed PHP4 on Linux, Apache with-apxs, > >I wanted to add support for Oracle , > >I' ve installed Oracle Client (8.1.7), SQL+ works fine, >I've executed : >./configure --with-apxs=/usr/local/apache/bin/apxs --with-oci8=/home/oracle/

Re: [PHP-INST] Installing on Mac

2001-01-22 Thread Matt Dunford
I have good things to say about yellow dog linux: www.yellowdoglinux.com. On Sun, 21 Jan 2001, James Pelow wrote: >on 14/1/01 1:36 am, Andrew Hill at [EMAIL PROTECTED] wrote: > >> unless you run a linux bit on it, either in emulation or >> directly > >How do I run Linux directly on the Mac? >

Re: [PHP-INST] Installing on Mac

2001-01-21 Thread Andrew Hill
I prefer LinuxPPC personally, although there are several distributions available. I recommend using a separate drive for the install, to avoid confusion and leave your Mac OS9 system intact. If you are going to go this far, though, you should consider MacOS X. The install is easier than linux,

Re: [PHP-INST] Installing on Mac

2001-01-21 Thread James Pelow
on 14/1/01 1:36 am, Andrew Hill at [EMAIL PROTECTED] wrote: > unless you run a linux bit on it, either in emulation or > directly How do I run Linux directly on the Mac? -James -- PHP Install Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands

Re: [PHP-INST] Installing

2001-01-13 Thread Andrew Hill
James, Not on OS9 unless you run a linux bit on it, either in emulation or directly. If you are going to go that far, might as well do it under OS X and have other benefits. I've built PHP and Apache under OSX just fine, latest Apache, latest PHP snap as of two weeks ago. It's very straightfow

RE: [PHP-INST] Installing PHP/Pdflib on HPUX

2001-01-12 Thread Mark Newnham
I've made this work by mapping the PDF_ below to the corresponding pdf_ in the /usr/local/lib/pdflib.a and removing the get_image_height and get_image_width functions in ext/pdf/pdf.c The question of course, is why did i have to do this, and what should I have done to fix this properly? Mark >

Re: [PHP-INST] Installing PHP/Pdflib on HPUX

2001-01-11 Thread Norman Bollinger
On Thu, 11 Jan 2001, Mark Newnham wrote: > HPUX 10.20 > > pdflib-3.03 ./configure --enable-shared-pdflib --with-tifflib=/usr/local > --with-zlib=/usr/local --with-pnglib=/usr/local --with-jpeglib=/usr/local > --with-perl=no --with-tiffauxlib=-ljpeg > > PHP4.0.1pl2 ./configure --with-iodbc --

Re: [PHP-INST] Installing PHP under Solaris7/SPARC

2001-01-10 Thread Student7 SNT
Hi, In answer to your questions: >There is a sun package for PHP instalation on Sun/SPARC ? No. >How to compile PHP in a correct way on that Solaris machine? Follow the instructions for any UNIX machine. >How to integrate/install PHP to work with Apache ? Again, follow the instructions.

RE: [PHP-INST] Installing PHP under Solaris 8

2001-01-10 Thread Josh Lokot
Assuming that you just want a standard installation, the easiest way to do it is to compile and install apache, then compile php as a DSO module (dynamic linking). It's really quite easy. Extract your apache source distribution (http://httpd.apache.org) then from in that directory type ./configu