18,372 questions
0
votes
0
answers
55
views
bulk download not indexed pages urls from Google Search Console
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 ...
0
votes
0
answers
36
views
CORS Errors on random basis when creating a download functionality
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: {
...
0
votes
1
answer
112
views
Another PHP ftp_get() Connecting but not downloading file
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 ...
0
votes
0
answers
24
views
I'm using an AWS instance (4GB RAM, 2vCPU) and struggling to download a 5–7GB file. The download code seems to block the event loop. Any solutions?
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 ...
0
votes
1
answer
81
views
Need Help Adjusting Featured Image Sizes in Easy Digital Downloads Plugin [closed]
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 ...
1
vote
0
answers
113
views
Download Password Protected File from OneDrive with CURL
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/...
1
vote
1
answer
60
views
API returns a PDF file (byteArray) and it needs to be downloaded using Javascript
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 ...
1
vote
1
answer
384
views
Streamlit App Using yt-dlp for YouTube Video Downloads - Downloads Files to Server, Not Local Machine
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, ...
0
votes
1
answer
96
views
How to download a CSV file via Excel macro plus choose the type of the file
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 ...
0
votes
1
answer
92
views
Trouble with downloading a zip file with incomplete read [closed]
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 ...
0
votes
1
answer
143
views
How to download files in flutter using pocketbase across all the platforms?
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 ...
0
votes
1
answer
561
views
How to Download a PDF in Flutter and Save It to the iOS Downloads Folder So It Appears in Recents?
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 ...
0
votes
0
answers
31
views
How to export the CSV file to the specified package folder instead of default downloads folder in Testcafe?
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. ...
0
votes
1
answer
54
views
How to correctly set the filename in Laravel for a s3 download?
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::...
1
vote
1
answer
180
views
Download secure files doesn't download files
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 ...
1
vote
2
answers
35
views
Return text error message when browser expecting a .XLS or other binary file
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 ...
0
votes
0
answers
149
views
Can't install Eclipse on Windows 10
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=...
0
votes
0
answers
33
views
How to add ":" to xls filename after download using angular - ":" gets replaced by "_"
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 ...
1
vote
0
answers
140
views
Downloaded .movpkg not playing until connected with network
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 ...
1
vote
1
answer
156
views
why pyinstaller failed to find files for numpy dependency?
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 ...
0
votes
0
answers
39
views
Download multiple files as a folder in JS [duplicate]
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()...
0
votes
0
answers
20
views
error accessing downloaded mdb temp file in R using RODBC [duplicate]
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 ...
0
votes
0
answers
112
views
Unable to Download .pkpass File to iOS Device
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(
"...
1
vote
0
answers
79
views
Send the file to the browser when it has downloaded 100%
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 ...
0
votes
0
answers
166
views
Download PDF in Laravel 9 using barryvdh/laravel-dompdf give us a pdf file corrupted
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'...