Okay ... so ... you've got this:
Code:
define('DIR_FS_CATALOG', '/home/pennerpa/public_html/');
define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . '/home/pennerpa/download/');
And, since DIR_FS_CATALOG is (correctly) already defined as /home/pennerpa/public_html, when you add /home/pennerpa/download/ to the end of that you get /home/pennerpa/public_html/home/pennerpa/download/ exactly as the store is telling you.
That's why the instructions on changing the download location show you to remove DIR_FS_CATALOG from the define when you edit it. Read again: https://www.zen-cart.com/tutorials/i...hp?article=280