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:
Categorized in:
Tagged in:
3i Infotech Limited interview questions and answers, Accel Frontline Ltd interview questions and answers, Accenture interview questions and answers, add php script to html, apache php download instead execute, Applied Materials interview questions and answers, Brillio Technologies Pvt Ltd interview questions and answers, Cactus Communications interview questions and answers, CASTING NETWORKS INDIA PVT LIMITED interview questions and answers, CGI Group Inc interview questions and answers, Chetu interview questions and answers, compile php script, CSG International interview questions and answers, Cybage interview questions and answers, Dell International Services India Pvt Ltd interview questions and answers, download a folder using phpdownload php file from server directory, download file from folder in php, download file php script, download php files, execute php script, Harbinger Systems interview questions and answers, how to call php script from html, how to create php script, how to execute php script, how to make a php script, how to use php script in html, how to use script in php, IBM interview questions and answers, Indecomm Global Services interview questions and answers, Info Edge interview questions and answers, Infogain interview questions and answers, Maintec Technologies Pvt Ltd interview questions and answers, Mphasis interview questions and answers, mysql trigger php script, Net Solutions interview questions and answers, Oracle Corporation interview questions and answers, php code for downloading a file from database, php code for downloading a file from folder, php code for downloading a file from server, php download all files in directory, php download file script, php download folder from servercode for downloading a file in phphow to make a file downloadable in phpphp script free download, php download php file, php file download example, php file download script, php file download script example, php file downloader, php file hosting script, php include script, php list all files in directory and subdirectories, php list folders in directory, php mysql download, php script, php script example, php script in html page, php script name, php script online, php script path, php server script, php web script, Prokarma Softech Pvt Ltd interview questions and answers, Raqmiyat Information Technologies Pvt Ltd interview questions and answers, run php script, run php script from command line, sample php script, Sopra Steria interview questions and answers, Tech Mahindra interview questions and answers, test php script, test php script online, UnitedHealth Group interview questions and answers, ValueLabs interview questions and answers, Virtusa Consulting Services Pvt Ltd interview questions and answers, Wipro interview questions and answers, write php script, zmanda interview questions and answers