How do I stop the default image browser from creating an /Image/ directory in the directory I specify in $Config['UserFilesPath'] ? I want the browser to start searching in the directory I specify, not some /Image/ path that doesn't and shouldn't exist.
Thu, 11/03/2005 - 12:18
#1
RE: Stop image browser's /Image/ dir creation
To avoid this, debug the browser and remove every entry of Resource when it is specified within a path. Problem solved.
// redRemedy
RE: Stop image browser's /Image/ dir creation?
Subfolder control for the PHP version is implemented in a patch at:
http://sourceforge.net/tracker/index.ph ... tid=543655
but the patch has yet to be reviewed yet, so obviously use at your own risk.
Using a single global folder is also thus possible as each resource type can just be set to an empty string '' rather than 'Image/', 'File/', etc, or you could use whatever you want, e.g. 'image/'
RE: S