My firefox 43.0.2 won't open anymore, even Refreshed & in Safe Mode
Yesterday it opened normally, today it won't, as said above. I tried renaming the Mozilla Firefox to OldFirefox, and clean install, still won't work. When trying to open … (read more)
Yesterday it opened normally, today it won't, as said above.
I tried renaming the Mozilla Firefox to OldFirefox, and clean install, still won't work.
When trying to open in safe mode, window open but then says : Not responding, and it jam like this.
I even tried to report my 5 latest bp- and it still wasn't conclusive.
Any answer somebody?
BTW my computer is a MacBook Pro with Windows 7 32 bits Legit Boot Camp, si maybe it does make a difference.
My Internet Explorer work, thought.
Thanks!!
New Firefox update. Now it crashes with "Windows can not access ..."
Tried to start Firefox. It did an in requested "update". Now it won't start but rather gives me an error message "Windows can not access the specifies device ..." How do … (read more)
Tried to start Firefox. It did an in requested "update". Now it won't start but rather gives me an error message "Windows can not access the specifies device ..."
How do I fix?
Eric Johnson
Do not include email addresses in your post. We will not email you.
whats wrong with firefox???? its reporting EVERY site as unsafe
have a new windows 10 computer and have tried to use Firefox on it but cant as it is reporting EVERY SINGLE WEBSITE as unsafe even MOZILLA , Ive had to take it off as it… (read more)
have a new windows 10 computer and have tried to use Firefox on it but cant as it is reporting EVERY SINGLE WEBSITE as unsafe even MOZILLA , Ive had to take it off as it absolutely useless as it is
Every Firefox update fails, and now Firefox will not even start.
For days, every time I have started Firefox, it asked whether I wanted an update. Every time I clicked Yes to update Firefox, the update failed. So I found the Mozilla … (read more)
For days, every time I have started Firefox, it asked whether I wanted an update. Every time I clicked Yes to update Firefox, the update failed. So I found the Mozilla site for installing the latest version of Firefox. The installation seemed to go fine, but Windows 10 now gives the following message:
"Windows cannot access the specified device, path, or file. You may not have the appropriate permissions to access the item."
I see nothing unusual in the Properties for what seems to be the Firefox executable. Of course, I can switch to GoogleChrome, but I prefer Firefox; in addition, all of my Firefox bookmarks are now gone.
Solution to these problems?
Firefox crashes
Firefox will stop responding, suddenly all of my OS (Windows 10 Pro) will simply stop, freeze, a warning will come up that the program is not responding and if I wait lon… (read more)
Firefox will stop responding, suddenly all of my OS (Windows 10 Pro) will simply stop, freeze, a warning will come up that the program is not responding and if I wait longer it may respond again, the CPU light that it is doing its thing on my laptop goes dead, the only way I can get to use my laptop again is by hard resetting it holding the power button. This happen multiple times a day, and only while browsing using firefox.
It is my preferred browser, but I have noticed its quality to degrade as time goes by.
Linux/Ubuntu and Windows: creating firefox profile for different users from command line
Hi, I would like to create from command line by using the administrator user of a system the same firefox profile with plugin and customization for each user of the same … (read more)
Hi, I would like to create from command line by using the administrator user of a system the same firefox profile with plugin and customization for each user of the same system. I cannot use sync feature for this purpose.
I know from here edit https://developer.mozilla.org/en-US/...d_Line_Options https://developer.mozilla.org/en-US/docs/Mozilla/Command_Line_Options ~J99that the correct syntax is the following firefox -CreateProfile "JoelUser c:\internet\joelusers-moz-profile".
On Linux/Ubuntu the following piece of code allows to create a profile for the sudo user
user=$(sudo logname)
firefoxProfile="/home/$user/.mozilla/firefox"
if [ ! -d "$firefoxProfile/m4v6pi7q.profile" ]; then
rm -rf $firefoxProfile
firefox -CreateProfile "profile $firefoxProfile/m4v6pi7q.profile"
7z x -y ./m4v6pi7q.profile.7z
mv ./m4v6pi7q.profile/* "$firefoxProfile/m4v6pi7q.profile"
sudo chown -R $user:$user "/home/$user/.mozilla/"
rm -rf m4v6pi7q.profile.7z m4v6pi7q.profile
fi
On Windows the following piece of code allows to create a profile for the administrator user
$ProgramsPath=${env:ProgramFiles}
$FirefoxProfile="$env:USERPROFILE\AppData\Roaming\Mozilla\Firefox\Profiles\u9w6vbcj.profile"
if(-Not (Test-Path $FirefoxProfile))
{
$LocalProfile="$env:USERPROFILE\AppData\Local\Mozilla\Firefox\Profiles\*"
if(Test-Path $LocalProfile)
{
Remove-Item $LocalProfile -recurse
}
$RoamingProfile="$env:USERPROFILE\AppData\Roaming\Mozilla\Firefox\Profiles\*"
if(Test-Path $RoamingProfile)
{
Remove-Item $RoamingProfile -recurse
Remove-Item "$env:USERPROFILE\AppData\Roaming\Mozilla\Firefox\profiles.ini"
}
& "$ProgramsPath\Mozilla Firefox\firefox.exe" -CreateProfile "profile $FirefoxProfile"
& "$ProgramsPath\7-Zip\7z.exe" x -y .\u9w6vbcj.profile.7z
move .\u9w6vbcj.profile\* $FirefoxProfile -force
Remove-Item .\u9w6vbcj.profile.7z
Remove-Item .\u9w6vbcj.profile
}
How can I create firefox profiles from a sudo/administrator user for each user (sudo/administrator and not sudo/administrator) of the system? On Linux/Ubuntu I tried with this code
usersList=$(getent passwd | grep -vE '(nologin|false)$' | \
awk -F: -v min=`awk '/^UID_MIN/ {print $2}' /etc/login.defs` \
-v max=`awk '/^UID_MAX/ {print $2}' /etc/login.defs` \
'{if(($3 >= min)&&($3 <= max)) print $1}' | \
sort -u)
for systemUser in $usersList; do
echo $systemUser
firefoxProfile="/home/$systemUser/.mozilla/firefox"
firefox -CreateProfile "profile $firefoxProfile/m4v6pi7q.profile"
7z x -y ./m4v6pi7q.profile.7z
mv ./m4v6pi7q.profile/* "$firefoxProfile/m4v6pi7q.profile"
chown -R $systemUser:$systemUser "/home/$systemUser/.mozilla/"
rm -rf m4v6pi7q.profile.7z m4v6pi7q.profile
done
but it does not work and this is the output
sudo ./user.sh
foo
Success: created profile 'profile /home/foo/.mozilla/firefox/m4v6pi7q.profile' at '/home/foo/.mozilla/firefox/m4v6pi7q.profile/prefs.js'
admin
Success: created profile 'profile /home/admin/.mozilla/firefox/m4v6pi7q.profile' at '/home/admin/.mozilla/firefox/m4v6pi7q.profile/prefs.js'
jack
Success: created profile 'profile /home/jack/.mozilla/firefox/m4v6pi7q.profile' at '/home/admin/.mozilla/firefox/m4v6pi7q.profile/prefs.js'
chown: cannot access ‘/home/jack/.mozilla/’: No such file or directory
zorro
Success: created profile 'profile /home/zorro/.mozilla/firefox/m4v6pi7q.profile' at '/home/admin/.mozilla/firefox/m4v6pi7q.profile/prefs.js'
chown: cannot access ‘/home/zorro/.mozilla/’: No such file or directory
Why for the first two users is the directory for profile corretly set, while for the other is the directory of the user that executes the script /home/admin/.mozilla/firefox/m4v6pi7q.profile? I'm sorry for my very long question. Thank you
edit fixed link ~J99
Once open, nothing in firefox works. Bookmark bar wont load, cant open options, add ons. Wont open in safe mode either.
I rebooted my computer last night, when I opened firefox afterwards, it just hangs. I cannot open a web page, I cannot open options, my book marks do not show up until I… (read more)
I rebooted my computer last night, when I opened firefox afterwards, it just hangs. I cannot open a web page, I cannot open options, my book marks do not show up until I deselect the option to show, then enable, but nothing loads. I cannot close firefox unless I go into task manager to end it. I have sent 2 bug reports under this email address. I cannot open in safe mode by holding shift and clicking but was able to under the ? menu. No change in safe mode, just continuously loads.
I.E. and all other internet based programs work just fine.
Windows 10 pro AMD 6300 6 core processor 16GB RAM 64 bit OS Norton 360 (have had on and not changed for years).
Let me know what other information could help.
Thanks!
Firefox doesn't work even after reinstall
Firefox suddenly stopped working today. When I open it, it tells me that it's already open (which it isn't) and that it can't find or load my profile. If I go directly to… (read more)
Firefox suddenly stopped working today. When I open it, it tells me that it's already open (which it isn't) and that it can't find or load my profile. If I go directly to profiles and create a new one, I can open it, but all my bookmarks are gone. And then if I close and try to reopen it, the same thing happens--I can't open it and get the same error message.
One thing I figured out is that the profile can’t be read only, and I discovered that mine was (why I don't know), but when I try to uncheck read only, it instantly reverts back to read only, which is weird.
I’ve tried reinstalling Firefox several times, but it’s always the same, even with a brand-new installation, I can’t open it and get the same error message. What can I do if reinstalling doesn’t even work?
What causes Firefox to Hog cpu?
Have recently purchased new computer running windows 10. Firefox is using extreme cpu. 100% most of the time and seldom less than 20%. To use computer have to shutdown… (read more)
Have recently purchased new computer running windows 10. Firefox is using extreme cpu. 100% most of the time and seldom less than 20%. To use computer have to shutdown Firefox. Have just installed Google Chrome and it behaves as you would expect. Seldom over 80% and dropping to nil. So problem is within Firefox. Prefer to use iot but currently unworkable.
Firefox Won't Start - Claims it is Already Open
Firefox will not start. It claims to be already running, but that doesn't seem to be the case. I have tried creating a new user profile but when I try to open Firefox no… (read more)
Firefox will not start. It claims to be already running, but that doesn't seem to be the case.
I have tried creating a new user profile but when I try to open Firefox now, the "choose user profile" menu pops up. I have tried the new profile and they old one, and both give the same error message. "Firefox cannot use the profile "Default User" because it is in use. To continue, close the running instance of Firefox or choose a different profile."
There is an entry for firefox.exe in the "details" menu of my task manager, and nowhere else. When I try to end that task, I get the following error: "the operation could not be completed - Access is denied."
Due to some troubleshooting research, I've tried deleting the parent.lock file from my profile folder, but I get this error- "the action can't be completed because the file is open in Firefox."
I tried transferring my bookmarks and preferences from Firefox to Chrome, but I got a similar error suggesting that Firefox was already open and I would have to close it first.
I have also turned off my computer and uninstalled and reinstalled Firefox multiple times.
I'd really rather not lose all of my Firefox bookmarks, add-ons, and preferences. I also prefer using Firefox to Chrome, so if anyone can help me out I'd really appreciate it. I don't know what else to try.
My PC runs Windows 10, by the way.
Firefox crashes at shutdown
Hi there I have the issue that my FireFox crashes when I stop it. When I restart it I get the opps this should not happend message . In the crash log the "last line" is… (read more)
Hi there I have the issue that my FireFox crashes when I stop it. When I restart it I get the opps this should not happend message .
In the crash log the "last line" is MozCrashReason=MOZ_CRASH(Shutdown too long, probably frozen, causing a crash.)
I have gone throught and stopped all add ons and the activated each one anbd after a while the error appeared.. it is clear that the more addons I have loaded the longer the shutdown process takes.
can you help?
B
Firefox loads in taskbar but doesn't display on desktop.
Firefox was working until yesterday. Now it loads in the taskbar and popups mini windows but never opens on the desktop so it can be used. I have uninstalled/reinstalle… (read more)
Firefox was working until yesterday. Now it loads in the taskbar and popups mini windows but never opens on the desktop so it can be used. I have uninstalled/reinstalled, rebooted...nothing helps. HELP!!! I want my Firefox back.
I can't get the You Tube site to open on just Firefox.
Hi. I can't get You Tube to open on Firefox. All other sites work on Firefox and You Tube works on other browsers. If I click on a specific video saved to my favorites, … (read more)
Hi. I can't get You Tube to open on Firefox. All other sites work on Firefox and You Tube works on other browsers. If I click on a specific video saved to my favorites, it will play but the site itself doesn't show. Not sure what to do.
Why has Firefox slowed to the point of unusable?
Firefox slowed to the point where it is unusable. It also stalls, and even crashes. Other browsers work find, and my internet connection speeds are as good as I can exp… (read more)
Firefox slowed to the point where it is unusable. It also stalls, and even crashes. Other browsers work find, and my internet connection speeds are as good as I can expect.
I have uninstalled and reinstalled to no avail.
My machine is Intel QuadCore i5-3470 CPU @ 3.20GHz, 32 GB RAM, running MS Windows 10 Home on an MSI B75MA-P45 motherboard. It was assembled by Net Solution Computers of Morley, Western Australia, and has a SAMSUNG U28D590D VDU driven by an NVIDIA QUADRO K620 Video Card and RealTek High Definition Audio. I have Windows Defender and Malwarebytes as Anti-virus with Firefox and Skype running in the background.
Version 57 how do I get a menu bar?
Tried to find answer. Couldn't.
Firefox not displaying page formatting and not playing videos
HI, I've been having this problem with Firefox for the last two days. It does not display context and formatting of websites like Reddit, Mozilla, and sometimes YouTube. … (read more)
HI, I've been having this problem with Firefox for the last two days. It does not display context and formatting of websites like Reddit, Mozilla, and sometimes YouTube. It has said many times that websites like youtube have an untrusted connection, and shockwave flash crashes. I tried uninstalling , cleaning, and reinstalling Firefox, I tried repairing it also.. I updated java, Flash, and shockwave. Did a complete scan of my computer with my Antivirus and Malwarebytes.
None of these problems are on Chrome or Edge.
Application Basics
Name: Firefox Version: 42.0 Build ID: 20151029151421 Update Channel: release User Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:42.0) Gecko/20100101 Firefox/42.0 Multiprocess Windows: 0/1 (default: false) Safe Mode: false
Crash Reports for the Last 3 Days
Report ID: bp-b252c610-e860-4800-bb0e-4ef672151122 Submitted: 3 hours ago
Report ID: bp-cdc8cb59-3c52-45b0-be02-7fb2e2151121 Submitted: 2 days ago
All Crash Reports (including 12 pending crashes in the given time range)
Extensions
Graphics
Adapter Description: Intel(R) HD Graphics 530 Adapter Description (GPU #2): NVIDIA GeForce GTX 960M Adapter Drivers: igdumdim64 igd10iumd64 igd10iumd64 igd12umd64 igdumdim32 igd10iumd32 igd10iumd32 igd12umd32 Adapter Drivers (GPU #2): nvd3dumx,nvwgf2umx,nvwgf2umx,nvwgf2umx nvd3dum,nvwgf2um,nvwgf2um,nvwgf2um Adapter RAM: Unknown Adapter RAM (GPU #2): 4095 Asynchronous Pan/Zoom: none Device ID: 0x191b Device ID (GPU #2): 0x139b DirectWrite Enabled: false (10.0.10240.16430) Driver Date: 8-24-2015 Driver Date (GPU #2): 11-13-2015 Driver Version: 10.18.15.4279 Driver Version (GPU #2): 10.18.13.5900 GPU #2 Active: false GPU Accelerated Windows: 0/1 Basic (OMTC) Subsys ID: 10391025 Subsys ID (GPU #2): 10391025 Supports Hardware H264 Decoding: false Vendor ID: 0x8086 Vendor ID (GPU #2): 0x10de WebGL Renderer: Google Inc. -- ANGLE (Intel(R) HD Graphics 530 Direct3D11 vs_5_0 ps_5_0) windowLayerManagerRemote: true AzureCanvasBackend: skia AzureContentBackend: cairo AzureFallbackCanvasBackend: cairo AzureSkiaAccelerated: 0
Important Modified Preferences
browser.cache.disk.capacity: 358400 browser.cache.disk.filesystem_reported: 1 browser.cache.disk.smart_size.first_run: false browser.cache.disk.smart_size.use_old_max: false browser.cache.frecency_experiment: 2 browser.download.importedFromSqlite: true browser.download.useDownloadDir: false browser.places.smartBookmarksVersion: 7 browser.sessionstore.upgradeBackup.latestBuildID: 20151029151421 browser.startup.homepage_override.buildID: 20151029151421 browser.startup.homepage_override.mstone: 42.0 dom.apps.reset-permissions: true dom.mozApps.used: true extensions.lastAppVersion: 42.0 font.internaluseonly.changed: false gfx.direct2d.disabled: true gfx.direct3d.last_used_feature_level_idx: 0 gfx.driver-init.appVersion: 42.0 gfx.driver-init.deviceID: 0x191b gfx.driver-init.driverVersion: 10.18.15.4279 gfx.driver-init.feature-d2d: true gfx.driver-init.feature-d3d11: true gfx.driver-init.status: 2 layers.acceleration.disabled: true media.gmp-eme-adobe.abi: x86-msvc media.gmp-eme-adobe.enabled: false media.gmp-eme-adobe.lastUpdate: 1448119635 media.gmp-eme-adobe.version: 15 media.gmp-gmpopenh264.abi: x86-msvc media.gmp-gmpopenh264.enabled: false media.gmp-gmpopenh264.lastUpdate: 1448117718 media.gmp-gmpopenh264.version: 1.5.1 media.gmp-manager.buildID: 20151029151421 media.gmp-manager.lastCheck: 1448223560 media.hardware-video-decoding.failed: false network.cookie.prefsMigrated: true network.predictor.cleaned-up: true places.database.lastMaintenance: 1448151756 places.history.expiration.transient_current_max_pages: 104858 plugin.disable_full_page_plugin_for_types: application/pdf,application/vnd.fdf plugin.importedState: true plugin.state.java: 2 plugin.state.np_wtapp: 0 plugin.state.np32dsw: 2 plugin.state.npctrl: 2 plugin.state.npdeployjava: 1 plugin.state.npfoxitphantompdfplugin: 0 plugin.state.npintelwebapiipt: 0 plugin.state.npintelwebapiupdater: 0 plugin.state.npitunes: 0 plugin.state.npspwrap: 0 privacy.sanitize.migrateFx3Prefs: true security.default_personal_cert: Select Automatically security.disable_button.openCertManager: false security.disable_button.openDeviceManager: false security.OCSP.enabled: 0 storage.vacuum.last.index: 0 storage.vacuum.last.places.sqlite: 1448151756
Important Locked Preferences
JavaScript
Incremental GC: true
Accessibility
Activated: false Prevent Accessibility: 0
Library Versions
NSPR Expected minimum version: 4.10.10 Version in use: 4.10.10
NSS Expected minimum version: 3.19.4 Basic ECC Version in use: 3.19.4 Basic ECC
NSSSMIME Expected minimum version: 3.19.4 Basic ECC Version in use: 3.19.4 Basic ECC
NSSSSL Expected minimum version: 3.19.4 Basic ECC Version in use: 3.19.4 Basic ECC
NSSUTIL Expected minimum version: 3.19.4 Version in use: 3.19.4
Experimental Features
Website opens slowly on Firefox.
Hi! My website opens very slowly on Firefox , both on pc and mac. Homepage opens relatively fast, but it goes very slowly from there Chrome etc works fine. Please help … (read more)
Hi! My website opens very slowly on Firefox , both on pc and mac. Homepage opens relatively fast, but it goes very slowly from there Chrome etc works fine. Please help
My firefox says it's updated in the about firefox section but websites say i'm using an old, unsupported browser how do i fix it?
So this has been happening for a bit. I have the most recent Firefox update: 46.0.1 as of 5/14/16. However, the Mozilla website says that I'm using an older version of Fi… (read more)
So this has been happening for a bit. I have the most recent Firefox update: 46.0.1 as of 5/14/16. However, the Mozilla website says that I'm using an older version of Firefox and that I should update. This wasn't too annoying until Google started saying that my browser was unsupported. I've tried updating all my plugins and uninstalling unsupported ones. I've uninstalled and reinstalled Firefox from my computer. I can't seem to figure out what the issue is with the program. I have Windows 10 if that has anything to do with it, but my guess is it might have something to do with the settings. I don't know though. Please help before my browser stops working!
Firefox is extremely slow outside of safe mode, even with a refresh, a reinstall, and disabling of hardware acceleration
Topic title covers most of it. Basically: A few days ago, Firefox started running extremely slowly. Tabs take considerably longer to load, the browser becomes laggy when … (read more)
Topic title covers most of it.
Basically:
A few days ago, Firefox started running extremely slowly. Tabs take considerably longer to load, the browser becomes laggy when it tries to load anything, and attempting to open multiple tabs at once leads to Firefox becoming completely unresponsive for some time.
Attempting to refresh had no effect. Safe mode made it run at full speed, but disabling all add-ons did nothing under normal circumstances. Disabling hardware acceleration caused Firefox to go from "unusable" to "frustratingly slow". Disabling WebGL had no appreciable effect. Installing new drivers for my processor and graphics card had no effect. Restarting my computer had no effect. Removing cookies had no effect. Clearing the cache had no effect. Disabling Sync had no effect. Reinstalling Firefox by renaming the old install to "Old Firefox" had no effect.
I'm using Firefox 46.0.1, 64 bit.
I can't provide info on my plugins right now, as I'm posting this in Chrome because of how slow Firefox has become.
A speccy snapshot of my computer is right here: http://speccy.piriform.com/results/vUlsCY1KK83gUZAKOebuwys
Please help.
Firefox stopped working at all after re-install
Hi, I did a complete uninstall of my Firefox (including the data stored in the /appdata/ folder) after a Unity-based app I've been using through the browser stopped worki… (read more)
Hi,
I did a complete uninstall of my Firefox (including the data stored in the /appdata/ folder) after a Unity-based app I've been using through the browser stopped working and re-installing the Unity web engine didn't solve the problem.
However, after I re-installed Firefox, I couldn't open any page (including the firefox pages) or, frankly, use the browser. Is there any fix for this?
Attached are the screenshots of what the browser looks like when booted in safe mode. Normal mode looks the same.