Welcome Guest, Not a member yet? Register   Sign In
storing images outside of public_html
#4

[eluser]Jelmer[/eluser]
Use PHP's readfile() function: http://www.php.net/manual/en/function.readfile.php

And don't forget to output the correct MIME type before you use the readfile function.

For example like this:
Code:
// for security reasons, don't allow "../" in the request URI
$server_request = str_replace('../', '', $_SERVER['REQUEST_URI']);
// Rewrite the request to the path on your server
$file = '../outside_webroot/'.$server_request;
// Get the requested path and explode it by the dots
$file_ext = explode('.', $_SERVER['REQUEST_URI']);
// The last value in the array will be the file extention, pop it off
$file_ext = array_pop($file_ext);
// Use the file extention in the MIME type so you don't have to write
// a switch or if/else for every image type (jpg, gif, png)
header('Content-Type: image/'.$file_ext);
readfile($file);


Messages In This Thread
storing images outside of public_html - by El Forum - 02-24-2009, 04:06 AM
storing images outside of public_html - by El Forum - 02-24-2009, 06:13 AM
storing images outside of public_html - by El Forum - 02-24-2009, 05:04 PM
storing images outside of public_html - by El Forum - 02-24-2009, 06:00 PM
storing images outside of public_html - by El Forum - 02-25-2009, 04:27 AM
storing images outside of public_html - by El Forum - 02-25-2009, 04:40 AM
storing images outside of public_html - by El Forum - 02-25-2009, 05:26 AM
storing images outside of public_html - by El Forum - 02-25-2009, 05:47 AM
storing images outside of public_html - by El Forum - 02-25-2009, 10:26 AM
storing images outside of public_html - by El Forum - 02-25-2009, 09:42 PM
storing images outside of public_html - by El Forum - 02-28-2009, 03:40 AM
storing images outside of public_html - by El Forum - 02-28-2009, 06:15 AM
storing images outside of public_html - by El Forum - 02-28-2009, 07:47 PM
storing images outside of public_html - by El Forum - 02-28-2009, 08:17 PM
storing images outside of public_html - by El Forum - 02-28-2009, 09:09 PM
storing images outside of public_html - by El Forum - 02-28-2009, 09:20 PM
storing images outside of public_html - by El Forum - 02-28-2009, 09:27 PM
storing images outside of public_html - by El Forum - 02-28-2009, 09:35 PM



Theme © iAndrew 2016 - Forum software by © MyBB