- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Mozilla + Acrobat plug-in HELP !!!
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
11-04-2003 10:04 PM
11-04-2003 10:04 PM
I am having mozilla 1.4 installed and also Acrobat-reader 5.08.
This 2 are working alone but when i try to open pdf file from the mozilla
I got the following message and exit
/usr/lib/dld.sl: Unresolved symbol: XmProcessTraversal (code) from /toolsACROBAT/Acrobat-5.08/Browsers/hppahpux/nppdf.sl
What can u do in order to solve this issue ???
Hope to here from u soon.
10x
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2003 10:30 PM
11-04-2003 10:30 PM
Re: Mozilla + Acrobat plug-in HELP !!!
XmProcessTraversal is implemented in library libXm.sl which is found under /usr/lib.
Normally this is included in the SHLIB_PATH or LD_LIBRARY_PATH. Try exporting them before you open mozilla.
HTH,
Umapathy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2003 12:03 AM
11-05-2003 12:03 AM
Re: Mozilla + Acrobat plug-in HELP !!!
Still no good
Here is the output of the mozilla:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2003 12:19 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2003 12:38 AM
11-05-2003 12:38 AM
Re: Mozilla + Acrobat plug-in HELP !!!
My machine is 64bit but it seems that the Acroreader is 32 bit.
Here is the output of the chatr command
What next ???
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2003 12:56 AM
11-05-2003 12:56 AM
Re: Mozilla + Acrobat plug-in HELP !!!
You can run 32 bit apps on 64 bit machines. dld is the dynamic loader which loads shared libraries when only they are needed.
Since your machine is 64 bit, run ldd on that library. ldd lists out the dependencies with the whole path. Check whether libXm.sl is listed in one of those. If ldd is complaining of any missing libraries then you can catch there itself.
Still you find libXm.sl listed as one of those, try to grep for XmProcessTraversal in any of those libraries (nm -A *.sl|grep XmProcessTraversal).
Try also doing chatr +s enable on nppdf.sl before opening mozilla.
HTH,
Umapathy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2003 01:07 AM
11-05-2003 01:07 AM
Re: Mozilla + Acrobat plug-in HELP !!!
# ldd nppdf.sl
#
Shows nothing !!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2003 01:08 AM
11-05-2003 01:08 AM
Re: Mozilla + Acrobat plug-in HELP !!!
Since its a 32 bit app and the SHLIB_PATH is disabled, I think this will surely work if you set chatr +s enable nppdf.sl.
HTH,
Umapathy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2003 01:13 AM
11-05-2003 01:13 AM
Re: Mozilla + Acrobat plug-in HELP !!!
But here is the output:
(it still does not work...)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2003 01:28 AM
11-05-2003 01:28 AM
Re: Mozilla + Acrobat plug-in HELP !!!
I think it is a mixture of 32 and 64 bit applications/libraries. ldd works only on 64 bit binaries.
file nppdf.sl
Is moz_run_program a script? The acrobat plugin is not able to find the required library which implements the XmProcessTraversal.
HTH,
Umapathy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2003 01:34 AM
11-05-2003 01:34 AM
Re: Mozilla + Acrobat plug-in HELP !!!
# file nppdf.sl
nppdf.sl:PA-RISC1.1 shared library -not stripped
run_mozilla.sh is a default script that came from HP (it is a depot install)
Is there a way to get the plug-in work ???
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2003 01:57 AM
11-05-2003 01:57 AM
Re: Mozilla + Acrobat plug-in HELP !!!
I dont have mozilla installed on my system. Did you go through this
http://www.hp.com/products1/unix/java/mozilla/index.html
As also, open run_mozilla.sh and find out the binary which it is calling finally. If I see from your first reply it is moz_run_program. If its not a script then run.
file moz_run_program.
then try to run chatr on that binary and you see the list of dependencies also. libXm.sl is a must for most of the X related binaries.
By the way, it says GTK needs to be there for mozilla. Have you installed it.
I feel the mozilla is itself not starting. Am I right?
HTH,
Umapathy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2003 02:04 AM
11-05-2003 02:04 AM
Re: Mozilla + Acrobat plug-in HELP !!!
1) the glib + gtk+ are installed
2) the mozilla works fine. only the plug-in of the acro-reader fail's the mozilla.
3) mozilla-run.sh is a script.
4) mozilla-bin is the binary, here is the output of the command: chatr mozilla-bin
10x
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-02-2005 02:34 AM
12-02-2005 02:34 AM
Re: Mozilla + Acrobat plug-in HELP !!!
I got this bug
I added this line in run-mozilla.sh
export LD_PRELOAD=/usr/lib/libXm.sl
Acroread plugin works
Claude
ciao