signing docs online
I need to learn how to sign docs online. please.
I need to learn how to sign docs online. please.
I downloaded new version and it says it is "Now Installing installing" for last 20 minutes. Should I try to re-download and try again or let it wait?
Firefox version Mozilla Firefox 137.0.1 has caused my access to content.clubrunner.ca to stop working. How do I revert to version 137.0? … (lire la suite)
Firefox version Mozilla Firefox 137.0.1 has caused my access to content.clubrunner.ca to stop working. How do I revert to version 137.0?
I cant get instagram to load when Im on firefox
Tell me I won't lose my emails, my passwords, mytool bar, my history, my stuff!
When I creat a new bookmarks they are not automatically put in alphabetical order but instead are placed in the ned. Why not put them in order when they are made? Anyway,… (lire la suite)
When I creat a new bookmarks they are not automatically put in alphabetical order but instead are placed in the ned. Why not put them in order when they are made? Anyway, I tried to use the option that allows me to sort bookmarks alphabetically but nothing happens. This used to work but not now. I am using 137.0.1 (aarch64)
I have attached an image to show what I mean.
My Mac cannot connect to any website using any browser. I’ve tried everything that I know to do. What can I do to remedy the problem?
Hello there! I recently updated Firefox to 137.0.1. But the update doesn't automatically display the status bar when you hover over the bottom of the page. I had to resiz… (lire la suite)
Hello there! I recently updated Firefox to 137.0.1. But the update doesn't automatically display the status bar when you hover over the bottom of the page. I had to resize Firefox to make it full screen to display the status bar properly. This makes it difficult for me to use Firefox. I'm pretty sure this is due to a version update. This problem occurred after I updated the Firefox browser, during which time my Windows system was not updated. Is there any solution? Or how can I download a previous version of the browser?
Hi there, I’m using the Firefox Multi-Account Containers extension and would like to remove a site that’s been set to "Always open in [X] container." However, I don’t se… (lire la suite)
Hi there,
I’m using the Firefox Multi-Account Containers extension and would like to remove a site that’s been set to "Always open in [X] container." However, I don’t see a “Manage Site List” option anywhere in the container settings as seen here: https://support.mozilla.org/en-US/kb/containers
Here’s what I’ve tried so far:
I’ve clicked the Containers icon and selected the gear ⚙️ to edit a container.
I enabled privacy.userContext.siteAssignments.enabled in about:config and set it to true.
I restarted Firefox (with session restore on), but still no option appears to view or manage assigned sites.
I’m on Firefox Desktop (Mac), and I’ve confirmed that I’m using the official Multi-Account Containers extension.
Is this a bug, a UI change, or something I’m missing? I’d really prefer not to manually edit the containers.json file if there’s a built-in way to manage these assignments.
Thanks so much for any guidance!
When I first open Firefox from the icon in my taskbar the opening window says the following: 'Unable to connect Firefox can’t establish a connection to the server at 0.0… (lire la suite)
When I first open Firefox from the icon in my taskbar the opening window says the following:
'Unable to connect Firefox can’t establish a connection to the server at 0.0.0.4. The site could be temporarily unavailable or too busy. Try again in a few moments. If you are unable to load any pages, check your computer’s network connection. If your computer or network is protected by a firewall or proxy, make sure that Firefox is permitted to access the web.'
However this is only the first window, after that I can open a new tab in the same window without any problems.
I have uninstalled and reinstalled Firefox without avail. Can anyone help please?
i need help my account is not secured.
i was trying to access shopify and its protect behind a firewall and it was asking if firefox as access to the internet or its being protect by the firewall how would i g… (lire la suite)
i was trying to access shopify and its protect behind a firewall and it was asking if firefox as access to the internet or its being protect by the firewall how would i go about using this website if i don't know how to go about this
What is the reason the connection was lost and how will the connection be restored?
Thank you for your assistance.
bold text it seems that in navigating Taboola takes over
My Firefox uses up to 60% of the CPU on my laptop. How to reduce it, how to fix it?
i do not want to reinvent my entire life with passwords you do not share with my previous search engine. please let me return to Safari, with Mozilla Firefox in the backg… (lire la suite)
i do not want to reinvent my entire life with passwords you do not share with my previous search engine. please let me return to Safari, with Mozilla Firefox in the background.
I am evaluating a password manager application and exported my FF passwords and imported them into the app. For testing I removed all of the passwords from FF. I want to … (lire la suite)
I am evaluating a password manager application and exported my FF passwords and imported them into the app. For testing I removed all of the passwords from FF. I want to password protect the csv file rather than delete it in case I need to import the passwords back into FF. When I go to File/Info, the "Protect Workbook" option is greyed out. When I go to the "Review" tab, the option to "Protect Workbook" is available, not the "Unprotect" option, so the workbook is not protected. If I click on the "Share" folder on the right side of the ribbon, there is no "More" option. In Windows Explorer the file is on my desktop, not OneDrive - Personal. I right clicked on the file, selected "Give access to" and took the option to remove access. The File/Info option is still greyed out. How can I password protect this file or how can I export it in a format that can be imported later?
in FF 137.02 Win11Pro there is no reopen previous session option in the history menu, even though in settings, history, "firefox will" is set to remember history. We trie… (lire la suite)
in FF 137.02 Win11Pro there is no reopen previous session option in the history menu, even though in settings, history, "firefox will" is set to remember history. We tried reinstalling FF. No luck.
Is there a way to reopen the previous session?
Has that feature been deleted?
I just downloaded firefox for the first time because Chrome disabled uBlocker. I have added uBlocker and 1Password as extensions, but neither of them are working on any w… (lire la suite)
I just downloaded firefox for the first time because Chrome disabled uBlocker. I have added uBlocker and 1Password as extensions, but neither of them are working on any webpage at all. I also can't pin extentions. I have restarted firefox and my computer several times. What do I do?
Hello, as per description I noticed that firefox version 138 requires an ArrayBuffer as the argument of WebAssembly.compile() and doesn't allow anymore (like in 137) a S… (lire la suite)
Hello,
as per description I noticed that firefox version 138 requires an ArrayBuffer as the argument of WebAssembly.compile() and doesn't allow anymore (like in 137) a SharedArrayBuffer, is this intended or it will be fixed in the future? Follows a simple test case. Kind reagards.
--- index.html ---
<title>Example</title>
<script>
let instance = undefined;
async function loadWasm() {
try {
const response = await fetch('./sum.wasm');
const buffer = await response.arrayBuffer();
const sharedBuffer = new SharedArrayBuffer(buffer.byteLength);
const tmpView = new Uint8Array(sharedBuffer);
tmpView.set(new Uint8Array(buffer));
const module = await WebAssembly.compile(sharedBuffer);
instance = await WebAssembly.instantiate(module);
} catch (error) {
alert(`failed to compile in wasm: ${error.message}`);
}
}
loadWasm();
function testWasm() {
if (instance)
alert(`sum 1 + 2 = ${instance.exports.add(1, 2)}`);
else
alert('invalid instance, failed to compile');
}
</script>
<button onclick="testWasm()">Press to run wasm function (sum)</button>
--- ---
--- sum.wat --- (to convert into .wasm using: wat2wasm sum.wat -o sum.wasm) (module (func $add (param $lhs i32) (param $rhs i32) (result i32) local.get $lhs local.get $rhs i32.add) (export "add" (func $add)) ) --- ---