Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
55 views

I have about 10.000 pages that are not indexed on a website. I want to download all the URLs in bulk but I don't know how. I found something about a bulk download via Google Cloud, but it seems like ...
ofmiceandmoon's user avatar
0 votes
0 answers
36 views

I have created a download functionality and here is the code for the same: $.ajax({ url: filename, // URL of the file to be downloaded method: 'GET', xhrFields: { ...
Aashish Singh Bisht's user avatar
0 votes
1 answer
112 views

I can upload images to our website no problem, in particular a generated QR code. I use the code to follow an ordered product and match it to the printed personalised message that also has the same QR ...
Sweets-n -Stuff's user avatar
0 votes
0 answers
24 views

I have added my code below. Let me know if there are any issues. The request comes through a proxy in Next.js. try { const s3Provider = strapi.plugins.upload.provider; const ...
Avnish Kumar's user avatar
0 votes
1 answer
81 views

Need Assistance with Featured Image Sizes in Easy Digital Downloads Plugin Hello everyone, I’m encountering an issue with the featured image sizes in the Easy Digital Downloads plugin. Currently, the ...
Hasib Shah's user avatar
1 vote
0 answers
113 views

I shared a file in OneDrive by creating a link in the format https://1drv.ms/x/s!<fileId> Then I converted the link to the format https://api.onedrive.com/v1.0/shares/s!<fileId>/root/...
martfra's user avatar
  • 11
1 vote
1 answer
60 views

When I execute API in SwaggerUI it returns OK and I get download link and it works. It's used for PDF files, this is the kind of data And I need to download this using javascript, I tried converting ...
KonTiki's user avatar
  • 23
1 vote
1 answer
384 views

I’m building a Streamlit app that uses yt-dlp (a command-line tool for downloading YouTube videos) to download videos when a user enters a YouTube URL. The app works perfectly on my local machine, ...
Asad Sheikh's user avatar
0 votes
1 answer
96 views

I have a working macro, I just download an excel from a website, then I can use it. I need a similar file but the download icon doesn't have an own 'path' and I need to choose the format type. Can I ...
Danhadnagy's user avatar
0 votes
1 answer
92 views

I'm having trouble downloading this zip file from the URL: https://www.dgii.gov.do/app/WebApps/Consultas/RNC/DGII_RNC.zip with python code. I tried many things but every time I try to download the zip ...
Dev Machine's user avatar
0 votes
1 answer
143 views

I am trying include the download files option in my flutter app. I am using pocketbase to store the files and cubit for my state management. How can I implement this so that it works on all the ...
Nikhila's user avatar
  • 11
0 votes
1 answer
561 views

I am building a Flutter app and need to implement functionality to download a PDF file and save it to the Downloads folder on iOS devices. Additionally, I want the file to appear in the Recents ...
Ragul PR's user avatar
  • 422
0 votes
0 answers
31 views

Using testcfae We are trying to export a .csv file in chrome and save it in our automation package folder (Automation/UI/Downloads) itself. But we not able to set the custom download path in testcafe. ...
Suresh SK's user avatar
0 votes
1 answer
54 views

I am working with an s3 bucket in laravel (11) and have following function in my controller to dowload a given file to chrome: public function downloadFile(Materials $material) { Gate::...
helle's user avatar
  • 11.8k
1 vote
1 answer
180 views

I am currently working on a CI Pipeline to create and sign docker images; I uploaded the delegated key for signing to GitLab. During the pipeline, I use download secure file to retrieve the file. My ...
Franz's user avatar
  • 476
1 vote
2 answers
35 views

My Flask server generates an HTML file containing an anchor tag resembling this: <a href="https://example.com/href_without_extension" download="excelfile.xls"> Download ...
IronPillow2's user avatar
0 votes
0 answers
149 views

I have java 23 installed, I download the eclipse installer, but it does not start and gives this log: `!SESSION 2024-11-08 13:24:02.001 ----------------------------------------------- eclipse.buildId=...
Mariam Mariam's user avatar
0 votes
0 answers
33 views

I have the angular code below to download xls file from API response, I am trying to change the file name to filenameDD_HH:MM . For some reason, the ":" is replaced with "" after ...
Nancy's user avatar
  • 1,029
1 vote
0 answers
140 views

I downloaded a few HLS streaming videos as .movpkg folders. I turned off both wifi and LTE. Some of the videos are playing and some are not. I checked the file size and those not playing are obviously ...
Rao's user avatar
  • 71
1 vote
1 answer
156 views

I am still struggling with cython and pyinstaller to package a python script, say appX.py with a folder containing a pyd file. I modified appX.spec to include options for hidden imports, which ...
Farn Wang's user avatar
  • 241
0 votes
0 answers
39 views

In JS, I have the following function to download one file from a URL: export async function downloadFile(url: string, filename: string) { const res = await fetch(url); const blob = await res.blob()...
Berry's user avatar
  • 2,300
0 votes
0 answers
20 views

I want to download an MS Access file (.mdb) file available online and handle its content from within R. I'm, however, having an issue opening it as the result of a temporary download. I have used the ...
MerlinLutin's user avatar
0 votes
0 answers
112 views

Error: 'Safari cannot download' and 'Cannot install to Passbook at this time' when downloading .pkpass file on iOS const formBody = `paxList=${encodedPayLoad}`; const response = await fetch( "...
Shenal33's user avatar
1 vote
0 answers
79 views

For example, we have a link to the file like <a href="/file.zip">file.zip</a> Let the filesize will be 1000Mb. If we click on the link, the browser will start downloading ...
android's user avatar
  • 11
0 votes
0 answers
166 views

Trying to download file using barryvdh/laravel-dompdf from HTML render view // Generate the PDF from the HTML content $pdf = PDF::loadHTML($contract_document)->setPaper('a4', 'landscape'...
mmantach's user avatar
  • 140