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

[eluser]Jelmer[/eluser]
There's more wrong with the code.

The following does nothing usefull:
Code:
$server_request = str_replace('../../system/uploads/', '', $_SERVER['REQUEST_URI']);
That statement used to read:
Code:
str_replace('../', '', $_SERVER['REQUEST_URI']);
Because it is meant to replace any previous directory requests (../) by the user to prevent them from requesting anything they like. I presume that '../../system/uploads/' in general won't be in the request URI, so replacing it is kinda useless.

Code:
$file = '../../system/uploads/feb09-001.jpg';
The fixed file is for testing I presume?


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