Operating System - Tru64 Unix
1827988 Members
2532 Online
109973 Solutions
New Discussion

Re: loading php on \truUnix

 
GOPALAKRISHNAN T
New Member

loading php on \truUnix

syntax error on the line 206 of /usr/users/web_apache/conf/httpd.conf
cannot load /usr/users/dirq/web_apache/libexec/libphp4.so into server: dlopen libexc.so:
symbol "_exc_continue" unresolved.
___
please send the solution
2 REPLIES 2
Michael Schulte zur Sur
Honored Contributor

Re: loading php on \truUnix

HI,

please post line 200-210 of httpd.conf

thanks,

Michael
Johan Brusche
Honored Contributor

Re: loading php on \truUnix


This entry has the same origin as an entry 6 days ago. See http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=446241, for the anwers over there.

The shared library libphp.so seems to reference a symbol with the wrong syntax. the symbol __exc_continue is normally resolved in libexc.so, but in libphp4.so it is missing an underscore in front of _exc_continue. As in my previous reply use:

odump -t libphp.so | grep continue
odump -t libexc.so | grep continue

to verify if that is indeed the case. When it is confirmed that libphp4.so uses the wrong syntax _exc instead of __exc, you should obtain a corrected libphp4.so from the source where you got this library.

Rgds,
Johan.

_JB_