LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 03-27-2005, 08:42 AM   #1
suse2166
Member
 
Registered: Sep 2004
Posts: 190

Rep: Reputation: 30
Prompt to install Plugin on Firefox Browser?


To whom it may concern

On My FireFox, I kept getting an message to "Click Here to install Plugin".
When I click here to install Plugin it says " The following Plugin is ready to install (Java Runtime Environment). I click next and Java Runtime is not available for install ... than I Run Manual install. When I run Manual Install for Java Runtime and it take me to Java web site too Download the lastest Java but I have the lastest Java running on my machine already.

Java is already install on my Suse Machine, I have version jre_1.5.0 install on my machine.
I have a Icon for Java on my Suse Start Program Menu.

Why I'am my getting request to install Java when I already have Java in my machine. thanks
 
Old 03-27-2005, 09:03 AM   #2
titopoquito
Senior Member
 
Registered: Jul 2004
Location: Lower Rhine region, Germany
Distribution: Slackware64 14.2 and current, SlackwareARM current
Posts: 1,644

Rep: Reputation: 145Reputation: 145
You have to create a symlink to the Java plugin in your Firefox browser's plugin directory.
Search for libjavaplugin (I think it's called libjavaplugin_oji.so, sorry, running Windows right now) on your computer.
Then locate where firefox is installed; make the link in /path-to-firefox/plugins
 
Old 03-27-2005, 09:42 AM   #3
suse2166
Member
 
Registered: Sep 2004
Posts: 190

Original Poster
Rep: Reputation: 30
How do you make the link in /path-firefox/pluggins on firefox?
I found the libjavaplugin_oji.so file on my directory.
 
Old 03-27-2005, 09:47 AM   #4
harken
Member
 
Registered: Jan 2005
Location: Between the chair and the desk
Distribution: Debian Sarge, kernel 2.6.13
Posts: 666

Rep: Reputation: 30
Code:
ln -s libjavapugin_oji.so /path-firefox/plugins/libjavaplugin_oji.so
executed from libjavaplugin_oji.so's directory.
 
Old 03-27-2005, 10:18 AM   #5
suse2166
Member
 
Registered: Sep 2004
Posts: 190

Original Poster
Rep: Reputation: 30
thanks tito & Harken

I'm getting this error message

linux:/usr/java/jre1.5.0_01/plugin/i386/ns7 # dir *.so
-rwxr-xr-x 1 root root 134116 2004-12-07 01:50 libjavaplugin_oji.so

linux:/usr/java/jre1.5.0_01/plugin/i386/ns7 # ln -s libjavaplugin_oji.so /path-firefox/plugins/libjavaplugin_oji.so
ln: creating symbolic link `/path-firefox/plugins/libjavaplugin_oji.so' to `libjavaplugin_oji.so': No such file or directory

Last edited by suse2166; 03-27-2005 at 10:39 AM.
 
Old 03-27-2005, 10:27 AM   #6
harken
Member
 
Registered: Jan 2005
Location: Between the chair and the desk
Distribution: Debian Sarge, kernel 2.6.13
Posts: 666

Rep: Reputation: 30
You should replace "path-firefox" with your actual location of Firefox. For example, if Firefox is installed in /home/firefox-installer, you should run these two commands:
Code:
cd  usr/java/jre1.5.0_01/plugin/i386/ns7
ln -s libjavapugin_oji.so /home/firefox-installer/plugins/libjavaplugin_oji.so
See if this works. Again, if FF isn't installed under /home/firefox-installer, change the path accordingly.
And it's harken, not Harden.

Last edited by harken; 03-27-2005 at 10:28 AM.
 
Old 03-27-2005, 10:48 AM   #7
suse2166
Member
 
Registered: Sep 2004
Posts: 190

Original Poster
Rep: Reputation: 30
thanks Harken (I did say Harken)
and the command work ... Now the file exits in the firefox-installer directory....
 
Old 03-27-2005, 01:57 PM   #8
suse2166
Member
 
Registered: Sep 2004
Posts: 190

Original Poster
Rep: Reputation: 30
Firefox Pluggin Still not working. I am steel been prompted for Java Pluggins. thanks
 
Old 03-28-2005, 04:14 AM   #9
harken
Member
 
Registered: Jan 2005
Location: Between the chair and the desk
Distribution: Debian Sarge, kernel 2.6.13
Posts: 666

Rep: Reputation: 30
Ok, sorry, I think I misguided you. Try the following:
Code:
cd /home/firefox-installer/plugins
rm libjavaplugin_oji.so
ln -s /usr/java/jre1.5.0_01/plugin/i386/ns7/libjavaplugin_oji.so
Again, replace /home/firefox-installer with the adequate path. The rm command will remove the previously created symlink as it's not working. The reason is that the the previous commands I gave you created a link to another location...again, sorry, I must have been thinking at something else. This set of commands should work however.
 
Old 03-28-2005, 03:16 PM   #10
suse2166
Member
 
Registered: Sep 2004
Posts: 190

Original Poster
Rep: Reputation: 30
That okay Harken

Should i reboot the machine because I closed Firefox and reopened an its prompting me again to install the FireFox Manual Plugin....
 
Old 03-29-2005, 02:34 AM   #11
titopoquito
Senior Member
 
Registered: Jul 2004
Location: Lower Rhine region, Germany
Distribution: Slackware64 14.2 and current, SlackwareARM current
Posts: 1,644

Rep: Reputation: 145Reputation: 145
There is no need to reboot your computer. Just close Firefox and start it again, that is enough for the changes to take place.

Glad you got it working
 
Old 03-29-2005, 03:54 PM   #12
suse2166
Member
 
Registered: Sep 2004
Posts: 190

Original Poster
Rep: Reputation: 30
thank Tito...

I'm still getting prompted for Manual Pluggin of Java Environment (Manual)!. Thanks
 
Old 03-29-2005, 04:29 PM   #13
titopoquito
Senior Member
 
Registered: Jul 2004
Location: Lower Rhine region, Germany
Distribution: Slackware64 14.2 and current, SlackwareARM current
Posts: 1,644

Rep: Reputation: 145Reputation: 145
Hm, have you maybe Java disabled in your Firefox browser?
 
Old 03-29-2005, 04:44 PM   #14
suse2166
Member
 
Registered: Sep 2004
Posts: 190

Original Poster
Rep: Reputation: 30
Hi Tito

on my Firefox Toolbar (Edit - Preferrences and Web features) ... Java is enable and envance Java Script is enable...
 
Old 05-01-2006, 07:53 PM   #15
techbsc
LQ Newbie
 
Registered: May 2006
Posts: 1

Rep: Reputation: 0
Fedora 5

I found I had to repoint the java.java_plugin_library_name to the correct file in the firefox about:config url.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Need Help Installing Java plugin on mozilla firefox browser srikanthrao_d Linux - Software 7 12-01-2005 05:11 PM
Not Able To Install Java Plugin For Firefox, browser curious_srk Linux - Software 3 11-19-2004 05:51 AM
Firefox flash plugin install trouble dubya Linux - Software 1 11-17-2004 12:30 AM
How do I install the dogpile plugin in mozilla firefox ? randomx Linux - Software 4 10-04-2004 04:05 PM
Install Flash plugin for Galeon Browser ejennings_98 Linux - Software 1 02-22-2004 08:29 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 07:29 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration