- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Where can I find Apache with PHP4 module for HPUX ...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2001 09:34 AM
06-25-2001 09:34 AM
Hi all
I know it's a stupid question but do you know
where I can find a depot with Apache + PHP4
module for HPUX 11.00 ?
Thx
Herv?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2001 12:21 PM
06-25-2001 12:21 PM
Re: Where can I find Apache with PHP4 module for HPUX ?
Try this link. It didn't say if they charge anything for it. If this isn't what you are looking for, you'll probably have to get the source and roll your own.
Have fun!
JP
http://www.software.hp.com/cgi-bin/swdepot_parser.cgi/cgi/displayProductInfo.pl?productNumber=B9415AAPA1319
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2001 12:23 PM
06-25-2001 12:23 PM
Re: Where can I find Apache with PHP4 module for HPUX ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2001 11:17 PM
06-25-2001 11:17 PM
Re: Where can I find Apache with PHP4 module for HPUX ?
Thanks John,
This links is good... if you want to purchase
the product :-(( That's my problem, I come
from Linux world and I prefer real free
softwares. So if someone know where I can find
Apache + PHP module FREELY ....
Thanx by advance...
Herv?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2001 11:25 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-25-2001 11:40 PM
06-25-2001 11:40 PM
Re: Where can I find Apache with PHP4 module for HPUX ?
Hello Rainer,
I thought that "Try now" is to download trial
version. I become to download this product, but
in the type row it's seems that it's really a
trial version ...???
But I can't find any duration or price so you
seem to be right...
Thx
Herv?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-14-2002 03:33 PM
08-14-2002 03:33 PM
Re: Where can I find Apache with PHP4 module for HPUX ?
and for HP-UX 10.20 ?
Regards,
Mauro
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-15-2002 03:03 AM
10-15-2002 03:03 AM
Re: Where can I find Apache with PHP4 module for HPUX ?
on http://software.hp.com, there isn't apache 1.3 with PHP.
but it's so easy to compile it:
you need (http://hpux.connect.org.uk/):
- gcc
- bison
- flex
- GNU binutils
- perl
to compile apache + php:
a) static (prefix=/opt/apache-php)
$ cd ../apache_1.3.26
$ ./configure --prefix=/opt/apache-php --with-perl=/opt/perl/bin/perl
$ cd ../php-4.2.3
$ ./configure --with-apache=../apache_1.3.26
$ make
(root) $ make install
$ cd ../apache_1.3.26
$ ./configure --prefix=/opt/apache-php --activate-module=src/modules/php4/libphp4.a
$ make
(root) $ make install
$ cd ../php-4.x.y
$ cp php.ini-dist /usr/local/lib/php.ini
b) dynamic (DSO)
$ ./configure --with-apxs=/opt/apache/bin/apxs
$ make
$ make install
if you get this error:
apxs:Error: file libs/libphp4.sl is not a DSO
*** Error exit code 1
$ mv libs/libphp4.sl libs/libphp4.so
$ /opt/apache/bin/apxs -i -a -n php4 libs/libphp4.so
c) add in the httpd.conf:
User www
Group other
AddType application/x-httpd-php .php
#AddType application/x-httpd-php3 .php3
Nicolas