I need to specify ONE remote path for all uploads, not a relative path on the same domain. How can I accomplish?
The closest I got was I tried setting the AbsoluteImageGalleryPath at the php level to a fake folder:
$editor->AbsoluteImageGalleryPath = '~/somevirtualfolder';
and in the apache config, added an alias:
Alias /somevirtualfolder http://xxx.xxx.xxx/uploads/images/
or
Alias /somevirtualfolder \\networklocation\uploads\images\
I think I run into permissions problems here.
How can I set this sort of path?