LinuxQuestions.org
Help answer threads with 0 replies.
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 08-05-2004, 10:23 AM   #1
paul62
Member
 
Registered: Mar 2004
Location: glenview illinois
Distribution: fedora core 7
Posts: 458

Rep: Reputation: 30
Fire fox


Wehn I try to launch firefox web browser I get this message that the user with the profile that has been selected is already logged on. I am not already logged on how can I gtet rid of this messsage?

http://www.blingo.com/friends?ref=gR...2vQvIfp2X-9TEQ

Last edited by paul62; 12-04-2005 at 11:27 PM.
 
Old 08-05-2004, 10:26 AM   #2
win32sux
LQ Guru
 
Registered: Jul 2003
Location: Los Angeles
Distribution: Ubuntu
Posts: 9,870

Rep: Reputation: 380Reputation: 380Reputation: 380Reputation: 380
this message should only appear if you already have a firefox window open when you try to launch it... can you confirm this??
 
Old 08-05-2004, 10:27 AM   #3
Demonbane
LQ Guru
 
Registered: Aug 2003
Location: Sydney, Australia
Distribution: Gentoo
Posts: 1,796

Rep: Reputation: 47
If there isn't another firefox window open then deleting your profile (~/.pheonix) should help, make sure backup your bookmarks etc first. There's probably a better way to get rid of the "lock" file, try the search function, check Firefox/Mozilla FAQs.
 
Old 08-05-2004, 10:29 AM   #4
win32sux
LQ Guru
 
Registered: Jul 2003
Location: Los Angeles
Distribution: Ubuntu
Posts: 9,870

Rep: Reputation: 380Reputation: 380Reputation: 380Reputation: 380
if you wanna be able to open firefox even when you already have a window open, use a script like this:

Code:
#!/bin/sh
mozilla-firefox -remote "ping()" &> /dev/null
if [ $? == "0" ]; then
    exec mozilla-firefox -remote "openURL(about:blank,new-window)" &
else
    exec mozilla-firefox &
fi

Last edited by win32sux; 08-05-2004 at 12:13 PM.
 
Old 08-06-2004, 01:05 PM   #5
paul62
Member
 
Registered: Mar 2004
Location: glenview illinois
Distribution: fedora core 7
Posts: 458

Original Poster
Rep: Reputation: 30
firefox

I did the `/.phoenix command and I also went into the profile manager and deleted my profiles and created a new one, and I still get the message cannot use this profile while it is already in use, and firefox will not start. Is there any altenative rto reinstalling the program and what would the command be to remove all of the files and start over again?

http://www.blingo.com/friends?ref=gR...2vQvIfp2X-9TEQ

Last edited by paul62; 12-04-2005 at 11:27 PM.
 
Old 08-06-2004, 01:34 PM   #6
win32sux
LQ Guru
 
Registered: Jul 2003
Location: Los Angeles
Distribution: Ubuntu
Posts: 9,870

Rep: Reputation: 380Reputation: 380Reputation: 380Reputation: 380
it's normal for firefox to do that... did you try the script i posted???

~/.pheonix isn't a command, it's a hidden directory in your home folder... the "~/" means "your home folder" and the dot before "pheonix" means it's hidden... so to erase your .pheonix diectory, you use:

rm -fr .pheonix
if you were currently in your home directory, or:

rm -fr ~/.pheonix
no matter where you are...

but if you just want to be able to open all the firefox windows you want by clicking the shortcut when there's already one window open, don't do that, it won't help... only do that if you're having issues opening the FIRST window...

if your issue is with the windows after the first one, use the script above... if you need help on how to do that, just ask...


Last edited by win32sux; 08-06-2004 at 01:36 PM.
 
Old 08-07-2004, 07:54 PM   #7
paul62
Member
 
Registered: Mar 2004
Location: glenview illinois
Distribution: fedora core 7
Posts: 458

Original Poster
Rep: Reputation: 30
I realized what was really happening ios that when I minimized the windows they would disappear completly from the desktop, not show up on the taskbar, how could I( correct this?

http://www.blingo.com/friends?ref=gR...2vQvIfp2X-9TEQ

Last edited by paul62; 12-04-2005 at 11:27 PM.
 
Old 08-07-2004, 09:22 PM   #8
win32sux
LQ Guru
 
Registered: Jul 2003
Location: Los Angeles
Distribution: Ubuntu
Posts: 9,870

Rep: Reputation: 380Reputation: 380Reputation: 380Reputation: 380
Quote:
Originally posted by paul62
I realized what was really happening ios that when I minimized the windows they would disappear completly from the desktop, not show up on the taskbar, how could I( correct this?
i think it depends on what window manager you are using... wait, does it happen with all windows of any program or just firefox???

 
Old 08-07-2004, 09:54 PM   #9
paul62
Member
 
Registered: Mar 2004
Location: glenview illinois
Distribution: fedora core 7
Posts: 458

Original Poster
Rep: Reputation: 30
firefox

I just checked and now it seems to be happening to all programs. and also I am a bit of a novice but what file do I add that script to?

http://www.blingo.com/friends?ref=gR...2vQvIfp2X-9TEQ

Last edited by paul62; 12-04-2005 at 11:28 PM.
 
Old 08-07-2004, 10:10 PM   #10
win32sux
LQ Guru
 
Registered: Jul 2003
Location: Los Angeles
Distribution: Ubuntu
Posts: 9,870

Rep: Reputation: 380Reputation: 380Reputation: 380Reputation: 380
just put the text into into a text file with whatever name you want, make it executable, and then you can run the script from the shell or from an icon... for example, if you called it "mozilla-launcher.sh" (the ".sh" is a common choice for shell scripts):

chmod a+x mozilla-launcher.sh

./mozilla-launcher.sh


to run it from an icon just specify the whole path in the "command" box:

/home/example/mozilla-launcher.sh


Last edited by win32sux; 08-07-2004 at 10:12 PM.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
Fire fox problem!!!! sixgauge Mandriva 7 11-28-2005 10:34 AM
Fire Fox 1.0.4-2sarge4 hitest Debian 6 10-03-2005 11:10 PM
fire fox...question... JT13 Linux - Software 1 06-03-2005 12:02 AM
Fire fox and me tkienzle Linux - Software 7 02-03-2005 09:14 PM
Fox fire me .... AndreL Linux - Newbie 9 03-15-2004 11:39 AM

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

All times are GMT -5. The time now is 01:04 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