Accessing php files just downloads them

Accessing php files just downloads them

accessing php files just downloads them

If your Apache 2 web server is failing to execute PHP files, learn how to How many times have you set up a web server with Apache 2 only to to save onto the local drive or it displays the PHP code in the browser? Blogs · Downloads · TechRepublic Forums · Meet the Team · TechRepublic Academy. Just removing the AddHandler line from the.htaccess file solved it for me. If you are prompted to download a.php file instead of executing it, then Assuming you have php7 installed, search available php7 modules using. if you're using PHP 5, uncomment this line to activate it #LoadModule php5_module libexec/libphp5.so # -- if If that file executes in my browser, it the first 3 points are ok However, you specifically say it's only sometimes.

A Beautiful Site

I've seen a number of methods to force file downloads using the PHP function which, essentially, sends a raw HTTP header to the browser. Depending on your browser, some files won't be downloaded automatically. Instead, they will be handled by the browser itself or a corresponding plug-in. This is often an issue with PDF files, TXT files, CSV files, LOG files, multimedia files (MP3, WAV, MOV, MPEG, AVI, etc.), and, for many users, Microsoft Office files. As a developer, being able to force the download of any type of file is extremely useful.

To Force, Or Not To Force?

The argument of whether or not it is considered "good practice" to force users to download files rather than letting their browser handle them as exepected does not really have a place in this article. In some cases it is appropriate while in others it is probably not.

It has been a convenience the many times I have used it to push CSV files out to end users who wouldn't know enough to copy and paste the data from the browser window into a file and then save it.

It is also handy for when you generate PDF files and want to push them to the user as a download rather than have it open up inside the browser window. Not only does this make the PDF easier for the user to download, it also provides consistency for the way downloads are handled regardless of what browser plug-ins the user has installed.

Again, in some cases it is appropriate to force a download, in others it is not.

The Force Download Script

After rigorous browser testing and code tweaking, here is the script I ended up with. All of the unnecessary stuff has been stripped out and it has been simplified as much as possible.

<?php $file = "filename.ext"; // Quick check to verify that the file exists if( !file_exists($file) ) die("File not found"); // Force the download header("Content-Disposition: attachment; filename="" . basename($file) . """); header("Content-Length: " . filesize($file)); header("Content-Type: application/octet-stream;"); readfile($file); ?>

Using the script

Although you can implement this script practically anywhere you want, it is easiest to copy the code into a file named something like and pass an identifier via query string, POST form data, or session variable. Users who are directed to the script will be prompted to download the appropriate file regardless of their browser and plug-in settings.

The PHP function reads files verbatim, including PHP files. This opens up a major security hole if you are passing the actual filename using GET or POST form data (or anything else that the user can spoof). A curious user could easily gain access to sensitive database connection information or other system data by entering something like . You should always use some kind of identifier to prevent unauthorized access to sensitive information.

Compatibility

This script has been tested to work in IE6/7, Firefox 2, Opera 9, and Safari 3.

Browser Issues

Safari and Filenames

Surprisingly, all of the force-download scripts I researched online failed to work properly in Safari. The download occurred, but the resulting file was named after the script (i.e. ). If I renamed the downloaded file to its correct name, it would open just fine. This, however, was a terrible inconvenience. A bit of testing revealed the culprit. Most of the scripts had a line similar to this:

header("Content-Disposition: attachment");

Others went a step further and had something like this:

header("Content-Disposition: attachment; filename=" . basename($file));

But the correct way to specify the filename requires that you put double quotes around the filename attribute:

header("Content-Disposition: attachment; filename="" . basename($file) . """);

By simply adding quotes around the filename, Safari correctly names the resulting download.

Caching Problems

Many of the scripts I found included header calls to tell the browser not to use a cached version of the file. Caching wasn't an issue with any of the browsers I tested, but if it becomes problematic, add the following lines to the script (above the call to ).

header("Cache-Control: no-cache, must-revalidate"); header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");

The above lines are from the PHP Manual and are expected to work in most browsers.

Internet Explorer & HTTPS

Certain versions of Internet Explorer will generate the following error message when downloads are forced using this technique:

Internet Explorer cannot download file from server. Internet Explorer was not able to open this Internet site. The requested site is either unavailable or cannot be found. Please try again later.

To get around this, whenever you are forcing a download over HTTPS append the following two lines of code to the force download script (above the call to ).

// IE fix (for HTTPS only) header('Cache-Control: private'); header('Pragma: private');

You can find more information about this bug on the MSDN Help & Support website.

About the author

Creator of Surreal CMS and other web things. Follow me for tweets about JavaScript, CSS, and web programming.

Источник: [https://torrent-igruha.org/3551-portal.html]

Accessing php files just downloads them

3 thoughts to “Accessing php files just downloads them”

Leave a Reply

Your email address will not be published. Required fields are marked *