Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Unable to download multiple files from website after upgrading to the Firefox 65

  • 7 பதிலளிப்புகள்
  • 1 இந்த பிரச்சனை உள்ளது
  • 14 views
  • Last reply by pratRockss

I have designed a website, which downloads two files.

1. test.txt 2. test.log

I was working good before i upgraded the Firefox to version 65.0.1

Now after upgrading, only the test.log file gets downloaded. Other file is not downloaded. Is there any settings can be done for downloading multiple files ?

I have designed a website, which downloads two files. 1. test.txt 2. test.log I was working good before i upgraded the Firefox to version 65.0.1 Now after upgrading, only the test.log file gets downloaded. Other file is not downloaded. Is there any settings can be done for downloading multiple files ?

All Replies (7)

Are you downloading the files one at a time, or together? Are you using a download add-on or program?

I am using program as below to download files.

let fileName = 'test.txt';
                                               let Lurl = window.URL.createObjectURL(blobLog);
                                               let Le = document.createElement('a');
                                               Le.setAttribute('href', Lurl);
                                               Le.setAttribute('download', fileName);


let fileName = 'test.log';
                                               let Lurl = window.URL.createObjectURL(blobLog);
                                               let Le = document.createElement('a');
                                               Le.setAttribute('href', Lurl);
                                               Le.setAttribute('download', fileName);

I download files one by one.

I called for more help.

FredMcD said

I called for more help.

I didn't get.

I don't know the coding you are using, so I called for more help.

Did you check the Web Console for related messages?

Can you post a link to a publicly accessible page (i.e. no authentication or signing on required) so we can test if/how it works?

Maybe you need to call URL.revokeObjectURL before creating a new object.

cor-el said

Did you check the Web Console for related messages? Can you post a link to a publicly accessible page (i.e. no authentication or signing on required) so we can test if/how it works? Maybe you need to call URL.revokeObjectURL before creating a new object.

I have tried above solution but didn't solve the issue. When I try to export the files, on the console I Find below behavior.

1. All content on the console gets removed (like previous logs since application has launched) and prints below:

Source map error: request failed with status 404 Resource URL: http://localhost:4200/#/home/configuration Source Map URL: index.css.map[Learn More]

Source map error: TypeError: NetworkError when attempting to fetch resource. Resource URL: null Source Map URL: ref-parser.min.js.map[Learn More]

Could you help. It's difficult to provide the access to application.