Showing questions for topic:

What is the connection between Mozilla, Thunderbird and Firefox please?

As an 80 year old female gifted with good health, fairly intelligent and a competent driver still able to work I have always struggled with 'AI' as I spent 19 years as an… (read more)

As an 80 year old female gifted with good health, fairly intelligent and a competent driver still able to work I have always struggled with 'AI' as I spent 19 years as an artificial inseminator of cows when computers were only just being invented! I cannot remember how I joined and am happy to pay to continue although I have limited means. Could a human advise me please............

Open 2

Firefox is not working properly on my device.

Hello, I am having a problem with Firefox on my Android phone. Firefox is not working properly. Please help me fix this issue and let me know what steps I should follow. … (read more)

Hello, I am having a problem with Firefox on my Android phone. Firefox is not working properly. Please help me fix this issue and let me know what steps I should follow. Thank you.

Open 1

Mi pregunta es: ¿Cómo puedo navegar correctamente por Internet usando un navegador web?

Necesito ayuda para resolver un problema al navegar por Internet. Por favor, indíquenme los pasos que debo seguir, qué información necesitan de mi navegador y cómo puedo … (read more)

Necesito ayuda para resolver un problema al navegar por Internet. Por favor, indíquenme los pasos que debo seguir, qué información necesitan de mi navegador y cómo puedo obtenerla de forma segura, respetando las normas y directrices de la plataforma.

Solved 1

I’m unable to find the contact form’s backend email in Inspect Element.

I’m trying to find the backend email address configured for a website’s contact form using Inspect Element/Developer Tools. I’ve checked the page source and searched thro… (read more)

I’m trying to find the backend email address configured for a website’s contact form using Inspect Element/Developer Tools. I’ve checked the page source and searched through the available HTML, but I’m unable to locate the email address or identify where the form submissions are being sent.

Could someone please guide me on where I should look or which files/settings I should check to find the form’s destination email?

Open 4

see no way send

Bugzilla Report Package Product: Developer Tools Component: General / Debugger Title: [Source Map Loader] Worker crash due to unhandled JSON.parse error on non-JSON/HTML … (read more)

Bugzilla Report Package

Product: Developer Tools

Component: General / Debugger

Title: [Source Map Loader] Worker crash due to unhandled JSON.parse error on non-JSON/HTML responses in fetchSourceMap.js

Description:

When fetching source maps in a worker context, fetchSourceMap.js occasionally encounters an unexpected non-JSON response (such as an HTML error page or 404 response starting with ). This causes an unhandled JSON.parse exception at line 83 (_fetch), crashing the source map consumer.

Stack Trace: Plaintext

Source map error: Error: JSON.parse: unexpected character at line 1 column 1 of the JSON data Stack in the worker: parseSourceMapInput@resource://devtools/client/shared/vendor/source-map/lib/util.js:163:15 _factory@resource://devtools/client/shared/vendor/source-map/lib/source-map-consumer.js:1069:22 SourceMapConsumer@resource://devtools/client/shared/vendor/source-map/lib/source-map-consumer.js:26:12 _fetch@resource://devtools/client/shared/source-map-loader/utils/fetchSourceMap.js:83:19

Proposed Patch (fetchSourceMap.js - Line 83): JavaScript

// Replace direct unhandled parse at line 83 with safe parsing: const sourceMap = (() => {

 try {
   const trimmed = responseText ? responseText.trim() : "";
   if (trimmed.startsWith("<") || trimmed.startsWith("

})();

Locked 2