How to download a php script directly in your script page ?
Here we create a PHP script, name it “download.php” and copy/paste the following code:
<?php
ignore_user_abort(true);
set_time_limit(0); // disable the time limit for this script
$path = "/absolute_path_to_your_files/"; // change the path to fit your websites document structure
$dl_file = preg_replace("([^\w\s\d\-_~,;:\[\]\(\).]|[\.]{2,})", '', $_GET['download_file']); // simple file name validation
$dl_file = filter_var($dl_file, FILTER_SANITIZE_URL); // Remove (more) invalid characters
$fullPath = $path.$dl_file;
if ($fd = fopen ($fullPath, "r")) {
$fsize = filesize($fullPath);
$path_parts = pathinfo($fullPath);
$ext = strtolower($path_parts["extension"]);
switch ($ext) {
case "pdf":
header("Content-type: application/pdf");
header("Content-Disposition: attachment; filename=\"".$path_parts["basename"]."\""); // use 'attachment' to force a file download
break;
// add more headers for other content types here
default;
header("Content-type: application/octet-stream");
header("Content-Disposition: filename=\"".$path_parts["basename"]."\"");
break;
}
header("Content-length: $fsize");
header("Cache-control: private"); //use this to open files directly
while(!feof($fd)) {
$buffer = fread($fd, 2048);
echo $buffer;
}
}
fclose ($fd);
exit; Create on your webpage links for each file which attacks in a password protected directory or in a directory above the website root directory.
In our example use the following download URL:
<a href="https://mydomain.com/download.php?download_file=some_file.pdf">PHP download file</a> Tags:
3i Infotech Limited interview questions and answersAccel Frontline Ltd interview questions and answersAccenture interview questions and answersadd php script to htmlapache php download instead executeApplied Materials interview questions and answersBrillio Technologies Pvt Ltd interview questions and answersCactus Communications interview questions and answersCASTING NETWORKS INDIA PVT LIMITED interview questions and answersCGI Group Inc interview questions and answersChetu interview questions and answerscompile php scriptCSG International interview questions and answersCybage interview questions and answersDell International Services India Pvt Ltd interview questions and answersdownload a folder using phpdownload php file from server directorydownload file from folder in phpdownload file php scriptdownload php filesexecute php scriptHarbinger Systems interview questions and answershow to call php script from htmlhow to create php scripthow to execute php scripthow to make a php scripthow to use php script in htmlhow to use script in phpIBM interview questions and answersIndecomm Global Services interview questions and answersInfo Edge interview questions and answersInfogain interview questions and answersMaintec Technologies Pvt Ltd interview questions and answersMphasis interview questions and answersmysql trigger php scriptNet Solutions interview questions and answersOracle Corporation interview questions and answersphp code for downloading a file from databasephp code for downloading a file from folderphp code for downloading a file from serverphp download all files in directoryphp download file scriptphp download folder from servercode for downloading a file in phphow to make a file downloadable in phpphp script free downloadphp download php filephp file download examplephp file download scriptphp file download script examplephp file downloaderphp file hosting scriptphp include scriptphp list all files in directory and subdirectoriesphp list folders in directoryphp mysql downloadphp scriptphp script examplephp script in html pagephp script namephp script onlinephp script pathphp server scriptphp web scriptProkarma Softech Pvt Ltd interview questions and answersRaqmiyat Information Technologies Pvt Ltd interview questions and answersrun php scriptrun php script from command linesample php scriptSopra Steria interview questions and answersTech Mahindra interview questions and answerstest php scripttest php script onlineUnitedHealth Group interview questions and answersValueLabs interview questions and answersVirtusa Consulting Services Pvt Ltd interview questions and answersWipro interview questions and answerswrite php scriptzmanda interview questions and answersOther Articles
Previous