getConfigKey('ENABLE_SSL') . '\');' . "\n\n" . '// NOTE: be sure to leave the trailing \'/\' at the end of these lines if you make changes!' . "\n" . '// * DIR_WS_* = Webserver directories (virtual/URL)' . "\n" . ' // these paths are relative to top of your webspace ... (ie: under the public_html or httpdocs folder)' . "\n" . ' define(\'DIR_WS_CATALOG\', \'' . $http_catalog . '\');' . "\n" . ' define(\'DIR_WS_HTTPS_CATALOG\', \'' . $https_catalog . '\');' . "\n\n" . ' define(\'DIR_WS_IMAGES\', \'images/\');' . "\n" . ' define(\'DIR_WS_INCLUDES\', \'includes/\');' . "\n" . ' define(\'DIR_WS_FUNCTIONS\', DIR_WS_INCLUDES . \'functions/\');' . "\n" . ' define(\'DIR_WS_CLASSES\', DIR_WS_INCLUDES . \'classes/\');' . "\n" . ' define(\'DIR_WS_MODULES\', DIR_WS_INCLUDES . \'modules/\');' . "\n" . ' define(\'DIR_WS_LANGUAGES\', DIR_WS_INCLUDES . \'languages/\');' . "\n" . ' define(\'DIR_WS_DOWNLOAD_PUBLIC\', DIR_WS_CATALOG . \'pub/\');' . "\n" . ' define(\'DIR_WS_TEMPLATES\', DIR_WS_INCLUDES . \'templates/\');' . "\n\n" . ' define(\'DIR_WS_PHPBB\', \'' . $this->getConfigKey('DIR_FS_PHPBB') . '/\');' . "\n\n" . '// * DIR_FS_* = Filesystem directories (local/physical)' . "\n" . ' //the following path is a COMPLETE path to your Zen Cart files. eg: /var/www/vhost/accountname/public_html/store/' . "\n" . ' define(\'DIR_FS_CATALOG\', \'' . $this->getConfigKey('DIR_FS_CATALOG') . '/\');' . "\n\n" . ' define(\'DIR_FS_DOWNLOAD\', DIR_FS_CATALOG . \'download/\');' . "\n" . ' define(\'DIR_FS_DOWNLOAD_PUBLIC\', DIR_FS_CATALOG . \'pub/\');' . "\n" . ' define(\'DIR_WS_UPLOADS\', DIR_WS_IMAGES . \'uploads/\');' . "\n" . ' define(\'DIR_FS_UPLOADS\', DIR_FS_CATALOG . DIR_WS_UPLOADS);' . "\n" . ' define(\'DIR_FS_EMAIL_TEMPLATES\', DIR_FS_CATALOG . \'email/\');' . "\n\n" . '// define our database connection' . "\n" . ' define(\'DB_TYPE\', \'' . $this->getConfigKey('DB_TYPE'). '\');' . "\n" . ' define(\'DB_PREFIX\', \'' . $this->getConfigKey('DB_PREFIX'). '\');' . "\n" . ' define(\'DB_SERVER\', \'' . $this->getConfigKey('DB_SERVER') . '\');' . "\n" . ' define(\'DB_SERVER_USERNAME\', \'' . $this->getConfigKey('DB_SERVER_USERNAME') . '\');' . "\n" . ' define(\'DB_SERVER_PASSWORD\', \'' . $this->getConfigKey('DB_SERVER_PASSWORD') . '\');' . "\n" . ' define(\'DB_DATABASE\', \'' . $this->getConfigKey('DB_DATABASE') . '\');' . "\n" . ' define(\'USE_PCONNECT\', \'false\');' . "\n" . ' define(\'STORE_SESSIONS\', \'' . $this->getConfigKey('STORE_SESSIONS') . '\');' . "\n" . ' // for STORE_SESSIONS, use \'db\' for best support, or \'\' for file-based storage' . "\n\n" . ' // The next 2 "defines" are for SQL cache support.' . "\n" . ' // For SQL_CACHE_METHOD, you can select from: none, database, or file' . "\n" . ' // If you choose "file", then you need to set the DIR_FS_SQL_CACHE to a directory where your apache ' . "\n" . ' // or webserver user has write privileges (chmod 666 or 777). We recommend using the "cache" folder inside the Zen Cart folder' . "\n" . ' // ie: /path/to/your/webspace/public_html/zen/cache -- leave no trailing slash ' . "\n" . ' define(\'SQL_CACHE_METHOD\', \'' . $this->getConfigKey('SQL_CACHE_METHOD') . '\'); ' . "\n" . ' define(\'DIR_FS_SQL_CACHE\', \'' . $this->getConfigKey('DIR_FS_SQL_CACHE') . '\');' . "\n\n" . //'?'.'>' . '// EOF'; ?>