Does anybody have any advice / ideas regarding the change of the download directory location? I did it as it is suggested below and it is not working.
Usually the "download" folder is located inside your store area, for example:I did do all of what has been mentioned and I still get the red tape warning sign on top of the web page regarding the download directory not been found.
- /home/my_user_name/public_html/mystore/download
You want to move it "above" your public_html folder, something like this:
- /home/my_user_name/download
Edit your two configure.php files to show the new path to your download folder:
- /includes/configure.php
- /admin/includes/configure.php
You'll need to edit the line that says this:
define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
to look something like this:
define('DIR_FS_DOWNLOAD', '/home/my_user_name/download/');


Reply With Quote

