Hi.
When i'm using "upload image" function from main editor window, it is uploading file to /siteroot/files/ folder. But when i'm choosing "browse on server" it is seeking images in directory /files/Image/
any solution? thanx
When i'm using "upload image" function from main editor window, it is uploading file to /siteroot/files/ folder. But when i'm choosing "browse on server" it is seeking images in directory /files/Image/
any solution? thanx

Re: File uploading/Browsing problem
Re: File uploading/Browsing problem
Re: File uploading/Browsing problem
One line 121 change:
$Config['FileTypesPath']['Image'] = $Config['UserFilesPath'] . 'image/' ;
to:
$Config['FileTypesPath']['Image'] = $Config['UserFilesPath'];
Hope this helps,
-Matthew
Re: File uploading/Browsing problem
That did not work, It gave me an idea of putting the fully qualified path, tried that did not work either.


Look at the right of the directories and they are 666, so that's not it.
And yes, I changed all references of /userfiles/ --> /userdata/
And tried using backslashes on UserFilePath, that gave me this...
It worked in version 2.4.x or version 2.3.x, but not in 2.5.1, or 2.6.rc
Re: File uploading/Browsing problem