- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Error during installing PHP on HP-UX
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
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
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
тАО08-18-2009 10:37 PM
тАО08-18-2009 10:37 PM
Error during installing PHP on HP-UX
I'm installing PHP for Oracle on HP-UX Itanium , 11iv3 OS, with below options:
./configure \
--prefix=/var/apps/php \
--with-apxs2=/opt/hpws/apache/bin/apxs \
--with-oci8=instantclient,/t02/oracle/DEV1/db/tech_st/11.1.0/instantclient_11_1/instantclient_11_1 \
--disable-dom \
--disable-libxml
during instllation it is showing error "checking Oracle Instant Client version... configure: error: Oracle Instant Client libraries not found"
Pls suggest me.
Regards
Vijay
- Tags:
- PHP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-19-2009 04:43 AM
тАО08-19-2009 04:43 AM
Re: Error during installing PHP on HP-UX
It appears that you need to install the Oracle Instant Client. It's free and available here:
http://www.oracle.com/technology/tech/oci/instantclient/index.html
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-19-2009 04:46 AM
тАО08-19-2009 04:46 AM
Re: Error during installing PHP on HP-UX
As for the installation, see:
http://www.oracle.com/technology/tech/oci/instantclient/index.html
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-19-2009 06:31 PM
тАО08-19-2009 06:31 PM
Re: Error during installing PHP on HP-UX
But you must change the configure script for it to find the OCI libraries.
You should find the following lines in the configure script:
*hpux*)
SHLIB_SUFFIX_NAME=sl
SHLIB_DL_SUFFIX_NAME=sl
;
Change "*hpux*)" to "hppa*hpux*)". Afterwards, run the configure
script once again.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-19-2009 09:12 PM
тАО08-19-2009 09:12 PM
Re: Error during installing PHP on HP-UX
I'm using PHP 5.3.0. I have also Installed Oracle Instant Client.
Regards
vijay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-19-2009 09:20 PM
тАО08-19-2009 09:20 PM
Re: Error during installing PHP on HP-UX
mentioned. Then it could find OCI libraries.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-19-2009 09:55 PM
тАО08-19-2009 09:55 PM
Re: Error during installing PHP on HP-UX
Can u pls tell what are all libraries it is looking for.
Regards
vijay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-19-2009 10:25 PM
тАО08-19-2009 10:25 PM
Re: Error during installing PHP on HP-UX
I have changed *hpux* to "hppa*hpux* as suggested , but now showing error :
./configure[4003]: Syntax error at line 4049 : `SAPI' is not expected
Pls suggest
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-20-2009 03:49 PM
тАО08-20-2009 03:49 PM
Re: Error during installing PHP on HP-UX
How did you change the configure script ? Here are my changes:
% diff configure.org configure
3843c3843
< for flag in -kthread -pthread -pthreads -mthreads -Kthread -threads -mt -qthreaded; do
---
> for flag in -mt -kthread -pthread -pthreads -mthreads -Kthread -threads -qthreaded; do
4004c4004
< *hpux*)
---
> hppa*hpux*)
%
The changes at the line 3843 are not important to you because
you are using gcc.
> Can u pls tell what are all libraries it is looking for.
I have used GD, iconv, JPEG, PNG, libXML2 and Zlib to support
some past inquiries in this forum.
I don't understand why you can not use HP-UX Apached-based Web
Server product with PHP 5.2.*. I'd recommend you to use the
latest version. I believe you can save your time.