These are incorrect:
Code:
define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . '/home2/badbubba/public_html/headsonic/download/');
define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . '/home2/badbubba/public_html/headsonic/pub/');
define('DIR_WS_UPLOADS', DIR_WS_IMAGES . '/home2/badbubba/public_html/headsonic/uploads/');
define('DIR_FS_UPLOADS', DIR_FS_CATALOG . DIR_WS_UPLOADS);
define('DIR_FS_EMAIL_TEMPLATES', DIR_FS_CATALOG . '/home2/badbubba/public_html/headsonic/email/');
You shouldn't have /home2/badbubba/public_html/headsonic/ in them... its only the last part you need. DIR_FS_CATALOG which you defined here:
Code:
// * DIR_FS_* = Filesystem directories (local/physical)
//the following path is a COMPLETE path to your Zen Cart files. eg: /var/www/vhost/accountname/public_html/
define('DIR_FS_CATALOG', '/home2/badbubba/public_html/headsonic/');
Fills in the paths up to that point for you.. so with the way you've defined it its looking for e-mail templates in /home2/badbubba/public_html/headsonic//home2/badbubba/public_html/headsonic/email/
So.. to fix it change it to this:
Code:
define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');
define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/');
define('DIR_WS_UPLOADS', DIR_WS_IMAGES . 'uploads/');
define('DIR_FS_UPLOADS', DIR_FS_CATALOG . DIR_WS_UPLOADS);
define('DIR_FS_EMAIL_TEMPLATES', DIR_FS_CATALOG . 'email/');