ccagle8 Wrote:i haven't tested it, but you should be able to set the define() variable in /admin/inc/common.php to a specific folder. If that works, we can maybe setup a gsconfig option to set an alternative path (just like we did with the /admin/ folder')
It didn't work but the following code in the upload.php is the cause (I assume).
Code:
if (isset($_GET['path'])) {
$path = str_replace('../','', $_GET['path']);
$path = tsl("../data/uploads/".$path);
$subPath = str_replace('../','', $_GET['path']);
$subFolder = tsl($subPath);
} else {
$path = "../data/uploads/";
$subPath = '';
$subFolder = '';
}