Results 1 to 7 of 7
can someone tell me how to install php 5.0.4 on mandrake 10.1. i'm currently running 4.3.8. i already tried the php manual, but there isn't much info about it
thx...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 04-05-2005 #1Just Joined!
- Join Date
- Mar 2005
- Posts
- 13
installing php 5.0.4
can someone tell me how to install php 5.0.4 on mandrake 10.1. i'm currently running 4.3.8. i already tried the php manual, but there isn't much info about it
thx
- 04-05-2005 #2
I don't know of any Mandrake rpms for php 5, so I guess you'd have to compile it. That could get a bit dicey if the installed version you have has put libs and binaries anywhere non-standard.
There are two major products that come out of Berkeley: LSD and UNIX. We don't believe this to be a coincidence.
- Jeremy S. Anderson
- 04-05-2005 #3Just Joined!
- Join Date
- Mar 2005
- Posts
- 13
i've got the tar.gz file from php.net. i think every thing is standard, i instaled in together with mandrake. how do i compile it??
- 04-05-2005 #4
when you unzip it
enter the directory and look about. There should be a README or INSTALL file that will outline any steps you need to take...I doubt it will be as simple as a standard ./configure && make && make install.Code:tar -xvzf <filename>
There are two major products that come out of Berkeley: LSD and UNIX. We don't believe this to be a coincidence.
- Jeremy S. Anderson
- 04-05-2005 #5Just Joined!
- Join Date
- Mar 2005
- Posts
- 13
there is an install file, but it's the same as on the internet, and i'm nothing with it

*EDIT*
i have found a .rpm file for mandrake, how do i use that?I don't know of any Mandrake rpms for php 5
thx
- 04-06-2005 #6Linux Engineer
- Join Date
- Nov 2004
- Location
- Ft. Polk, LA
- Posts
- 796
Here's how to compile php
First, uninstall the old version.
Pass the --help option to configure, see all the options, pick the ones you like.
./configure --help
Pass all the options you like to configure
./configure --with-something --enable-something-else
Compile it
make
And install it
make install
If you use Apache or another web server, check the manual because there may be more complex instructions for you.
- 04-06-2005 #7rpm -Uvh <packagename>i have found a .rpm file for mandrake, how do i use that?There are two major products that come out of Berkeley: LSD and UNIX. We don't believe this to be a coincidence.
- Jeremy S. Anderson


Reply With Quote
