18,372 questions
1
vote
1
answer
205
views
File download from Javascript not working but OK from direct HTML link
I am trying to download a file from an ESP32 which is running the PsychicHTTP webserver. For testing, this is just a fixed .CSV file. In HTML:
<div>
<button type="button" onclick=&...
0
votes
1
answer
123
views
how to crawl a movie by python?
I am trying to download a movie titled "Shimen," which was showcased at the 60th Golden Horse Awards. I discovered a streaming link:
https://www.fofoyy.com/dianying/96937
I was unable to ...
0
votes
1
answer
103
views
Android Studio is stuck at "Starting download..." screen for a while now
Android studio is stuck at "Starting download...." screen and not moving forward from an hour almost.
Image attached for reference.
It is taking longer than expected. Not showing any ...
1
vote
0
answers
37
views
How to Download Assets from air.inc API and Maintain Folder Structure for Large Data Sets?
I am working on a project where I need to download a smaller portion of data (around 10 GB) from the air.inc.
I am still in the planning phase and don't have much experience with such tasks. I would ...
-1
votes
1
answer
49
views
Laravel how to download a file from a distant server with SFTP
I'm writing to StackOverflow about a problem I'm having downloading a file from a distant server using SFTP.
I can upload and delete a file, but I cannot download a file.
Here is my code for download :...
0
votes
1
answer
185
views
Trying to download file from memory: System.Web.HttpException (0x80004005): Server cannot set content type after HTTP headers have been sent
This is my first time working in an ASP.NET application (and C# in general) and I have issues creating a file in memory and downloading it from the browser.
My component .ascx file contains a button. ...
0
votes
1
answer
52
views
PROFTPD / SWAPPED FILES / downloading a file contains the contents of another file, but the file name is correct
I am facing a problem on my PROFTPD server on which there is a lot of traffic.
installed on CENTOS8 server with docker.
ProFTPD Version 1.3.7a
Take for example two clients:
Client-1 requests the ...
0
votes
1
answer
273
views
Problem with downloading data from OECD using R
I have been trying to download datasets from the OECD using R.
library(OECD)
search_dataset("transport")
Error in read_xml.response(httr::GET(url, ...)): Not Found (HTTP 404).
and
...
0
votes
0
answers
48
views
How to download a file storaged in Google Cloud using only a URL with file's view
I only have a link from a file storaged in the URL https://storage.googleapis.com/ (I understand that it is Google Cloud), this link shows me the file in the browser and I can download it manually.
I ...
0
votes
0
answers
57
views
Why setting Response.Body makes response content empty
I have an endpoint with the following code:
var range = Request.GetTypedHeaders().Range;
var file = new MemoryStream(Enumerable.Range(0, 255).Select(x => (byte)x).ToArray());
// Response.Body = ...
1
vote
1
answer
191
views
Trying to install Ruby on Windows to download website
I've been working on a project that involves using Ruby. Despite several attempts, I haven't been successful in installing it.
I'm attempting to download a website with the Wayback Machine using a ...
0
votes
1
answer
44
views
How to download existing file on server with blazor wasm
Suppos I have a existing file ("export.xls") on "wwwroot/files" folder and I want to download it,
I tried to use MemoryStream like:
await ms.WriteAsync(resFile.Content);
var res =...
2
votes
2
answers
319
views
In R, how to use Chromote to download (or "save as") a file
In R and using Chromote, how could one download (or "Save as") a given file? For example, consider Wikipedia's tagline image: "https://en.wikipedia.org/static/images/mobile/copyright/...
0
votes
0
answers
181
views
Download txt file from within RStudio Posit Workbench that runs on a Unix system to local windows machine
I am running RStudio Posit Workbench in my Chrome browser and want to download programmatically a text file to my local windows machine.
I have tried
# File on Unix server
unix_file <- "/users/...
1
vote
1
answer
84
views
How to download and read .csv file (daily streamflow) from Water Survey of Canada website?
I'm trying to have R automatically download and read a .csv file (daily streamflow) from Water Survey of Canada website to a local directory. To do this manually, I have to click on the "Download?...
0
votes
1
answer
119
views
How to Download a PDF from Power BI Report in Flutter?
I'm working on a Flutter project where I've integrated a Power BI report. The report is generated based on an API call that I make, and it displays correctly in my app using a WebView package. The UI ...
0
votes
1
answer
459
views
Page Size Error Loading Bigquery table into R Studio
Using the bq_table_download() function to download a table that has only 408,000 rows. Seems way to small to be getting a page size error, but this is the error message I get.
Downloading first chunk ...
1
vote
1
answer
75
views
Downloading more than one .xlsm files as ZIP is corrupted
I could download the .xlsm file individually but when I tried to download them as ZIP. It says 'The file is corrupt and cannot be opened'. This is happening only for the .xlsm files but not while ...
0
votes
0
answers
286
views
How to install PyMOL without disturbing the python librarys I already have installed
The official PyMOL-download includes a download of Python v.10. But I already have Python installed and are unsure how other libraries (CSV in particular) are connected to the version of Python I ...
0
votes
0
answers
792
views
NodeJS ECONNRESET error onStreamRead while downloading large csv
I'm trying to download a very large gzipped csv file, hosted on a S3 server. I want to insert each csv row to my database. To achieve that I get the encoded stream, unzip it, parse it and save it to ...
0
votes
1
answer
80
views
jquery how to download inline data as a file
Say I have a database driven website with lots of events, each event is loaded and displayed on a listing page.
I want to present the data of each event as a download (lets say an eventname.txt file) ...
3
votes
1
answer
3k
views
How to download the model from Roboflow Universe?
I want to download the model from roboflow https://universe.roboflow.com/rookeye/thesis-iklwo/model/3
Is there anyway to download the model as tflite?
0
votes
2
answers
823
views
downloading file-stream from browser get request
Im working on a service to download large files. There is a web frontend, that sends a get request, which recieves the file as a stream. I have looked into Streamsaver.js, but i dont want the mitm. ...
1
vote
0
answers
77
views
Server files greater than 1GB from Nginx to chrome browser
I am trying to have my Nginx 1.14.1 on an AlmaLinux 8 machine serve private file larger than 1 GB. I am using a Chrome browser.
If the file size is less than 1GB, everything works as expected. However,...
0
votes
0
answers
72
views
Download SAM Exclusions List Using a Python script
I am attempting to write a Python script that will let me download the latest SAM Exclusions list from a government website. I get very close, but when my Python script clicks on the link to download ...