The only problem is that once you select the uploaded image, Image Dialog Box still thinks the image is in the default resourceFile folder (Image) and therefore you have to manualy edit the path to the image folder.
Overall, nice patch up. If you can only find where to fix this display issue, it would work perfect.
RE: how to custom upload image path?
I put up directions on how to control the image upload here:
http://phiyan.hollosite.com/
I hope it helps.
RE: how to custom upload image path?
Overall, nice patch up. If you can only find where to fix this display issue, it would work perfect.
RE: how to custom upload image path?
in the \filemanager\upload\php\config.php
// Path to uploaded files relative to the document root.
//$Config['UserFilesPath'] = '/UserFiles/' ;
include("path.inc");
In the path.inc
$Config['UserFilesPath'] = "/content/content_group/".$cg_id."/".$item."/" ;
$Config['UserFilesAbsolutePath'] = "D:/inetpub/www/content/content_group/".$cg_id."/".$item."/" ;
Hope it helps!