Most voted "download" questions
In technology, the term download is used to reference the acquisition of data from a device through a communication channel.
Learn more…127 questions
Sort by count of
-
0
votes1
answer1666
views -
0
votes1
answer240
viewsHide download link
I am with a difficulty, I made a system that releases file download for each specific user, this verification is done by the logged user code and filters month and year that the user fills, so…
-
0
votes2
answers1750
viewsForce download with php file comes corrupted
Hello, the code even downloads, the problem is that it is corrupted, and I have no idea why it happens. The download is called so site.com/download/key .htaccess: RewriteEngine On RewriteBase /…
-
0
votes2
answers117
viewsCreate a Download according to element id
I created a system that uploads several files, but I ran into the following problem: I need to create a way to download according to the element id in the database. I wonder if anyone has an idea I…
-
0
votes0
answers381
viewsProblem with file download in php
am with the following file download code: set_time_limit(0); // Define o tempo máximo de execução em 0 para as conexões lentas $arquivoLocal = "../arquivo/emboss/needle/Resultado/$resultado"; //…
-
0
votes0
answers2315
viewsHow to download a file with Python?
This site has several links that open Pdfs, in the locations of "Entire content": http://www.camara.gov.br/proposicoesWeb/prop_emendas?idProposicao=2122076&subst=0 In Python 3 I wrote this code…
-
0
votes2
answers111
viewsSecure delivery of digital products in PHP
Speaking personally, I am developing a system where the customer can make the purchase and receives a link to download the product. The system has a registration area in which it is possible to…
-
0
votes1
answer2811
viewsUpload an entire folder via FTP using DOS
I need to upload a folder (~300mb) that contains files from a framework (Magento) to the cloud server where my application is. The server GUI only allows you to upload files individually and the…
-
0
votes0
answers24
viewsCreate PHP encrypted file download link
I have a site where users can download the files. These files are with the path in an sql table and have an access key and the request id. Hj file download is direct at url, ex: <a…
-
0
votes2
answers994
viewsRecover an image in firebase Storage and display in the app using GLIDE
I’m trying to recover an image from Storage of Firebase using the Glide, I searched in many places, I used the code the way I’ve been seeing and yet I couldn’t recover the image at all. Attached…
-
0
votes2
answers397
viewsHow to enable PDF dowload on webView with Android Studio
//MainActivity package app.inova.appfatto; import android.support.v7.app.AppCompatActivity; import…
-
0
votes1
answer68
viewsMonitor if files were inserted in a specific folder
Good morning friends, I would like an opinion or dirty from you in the following situation: In one of the company’s clients who work in the financial sector daily makes a download of an archive of…
-
0
votes1
answer71
viewsHow to Download SQL Server File using Servlet
I have a basic application where I save files in the database SQL Server using Java, the part of insert into the bank I’ve done, I’d like to know how to download the file that is in the bank via…
-
0
votes0
answers280
viewsHow to download files using Puppeteer with headless: true
I have a system that searches download websites, some zip files, the download is working perfect when I use the mode: const browser = await puppeteer.launch({headless: False}) const page = await…
-
0
votes0
answers20
viewsCakephp 3 Download Large Files
I have the following problem. My Cakephp 3 application stores some BIG files (200mbs), uploaded via FTP. These files are in a folder outside of my project. When you click on the download link, it…
-
0
votes0
answers89
viewsConsumption given in the Firebase Database
I’m having a doubt that’s making me nervous, and I couldn’t find the answer. On Android, when we’re making an app, usually there are several calls to collect "the same" data from Firebase. For…
-
0
votes0
answers20
viewsSelection of the Downloads folder instead of the project in Pphstorm
I downloaded Phpstorm and went to select the project that was inside the Downloads folder. In this, I ended up selecting the "Downloads" and my problem now is that what I bass is not recognized. In…
-
0
votes1
answer49
viewsPHP file download taking all html code instead of file content
Well, as the title implies. My code is downloading all the html from my page instead of just the content I write in the file. if(isset($_GET['cpf'])){ //config $namefile = $_GET['nome'].'.txt';…
-
0
votes1
answer542
viewsUpload/Download large files with ASP.NET Core 2.2
I need to upload and downlods files above 2GB using ASP.NET Core 2.2, but I don’t know the best way to do this. For the download, to using the following method: [HttpGet("id")] public IActionResult…
-
0
votes0
answers67
viewsDownload compressed folder (.zip) from a URL (FTP) with JAVA
I am trying to download a "zipped" folder through the URL http://portal.insoft4.com.br/site/Download/RepositorioSCR/Teste.zip (FTP) with the following code snippet made in Java: try…
-
-1
votes1
answer507
viewsHow do I place a downloadable file with a unique id for each person who downloads
How do I put a file to download to my website where the button link changes every time after the file is downloaded and never to a person to download by the same link that has already been…
-
-1
votes1
answer324
viewsProblem downloading a php export
Good afternoon, I have a script where generates an excel spreadsheet with information, but after the exchange of the server started to give problem, before it generated and downloaded normally but…
-
-1
votes1
answer14
viewsHow to create an endpoint that downloads a local file as soon as requested in Nodejs?
I have a file in my project that I need to make available for download, through an endpoint that when requested will automatically download, but I can not use any framework, only Nodejs.
-
-1
votes1
answer71
viewsDisable download link while downloading
How to implement this functionality? When the user presses the Download link he will receive a download confirmation message and where he wants to save the file. This download takes on average about…
-
-1
votes1
answer241
viewsAllow access to the Chrome Filesystem API with Selenium using Python
I need a little help here! I need to set up selenium using the webdrive to click on a Chrome pop-up window. I’ve tried several alternatives I found, but none of them work. A company security policy…
-
-1
votes1
answer32
viewsHow to start a download automatically when the user enters a specific page
I have a MVC C#application, where after login (it will be the first time you access the platform) the system starts downloading some files (the files change according to the needs of the department,…
-
-2
votes2
answers485
viewsHow to list only PDF documents in PHP?
I have a code that is listing the files within a certain folder, and linking to download, working all right. However, I would need this code to list only files with the format *.pdf, the code is…