Hi,

Ok, I uploaded latest zen v1.3.5-full-fileset-09042006 via konqueror into public_ssl. I also have public_html but i want ssl for authorizenet though not sure if i need all files in the ssl folder and if that will make my site run slower and just be uneccessary so if i did that wrong let me know. Anyway changed folder to karberson and added htaccess under karberson with :

php_flag session.use_trans_sid off
php_flag register_globals off
<Files ".ht*">
deny from all
</Files>

and then changed dist-configs to configure and 777 with right click properties konqueror and same for cache, images, media, pub, etc using right click properties and clicking the checkbox for all subfolders. Opened https://ssl6.pair.com/bgy11f1/karberson to start the install and everything said "OK". Next page left as is except yes for ssl in both admin and catalog then filled in the database details and admin passwords and stuff and i get 404 for both admin and catalog. Before i show my config files below i did see that my public_ssl folder is a link to /usr/wwws/users/bgy11f1 but the installer gave the following that i used the first time around :

physical path = /usr/home/bgy11f1/public_ssl/karberson

virtual http path = http://ssl6.pair.com/bgy11f1/karberson

virtual https server = https://ssl6.pair.com

virtual https path = https://ssl6.pair.com/bgy11f1/karberson

i tried reinstalling with the physical path set to /usr/wwws/users/bgy11f1 but still got 404 though in both occasions i can reach the customer and admin and even login to admin and get the main page but if i click on anything in admin i get 404 using the following https://ssl6.pair.com/bgy11f1/karberson/



My admin/includes configure is:

define('HTTP_SERVER', 'http://ssl6.pair.com');
define('HTTPS_SERVER', 'https://ssl6.pair.com');
define('HTTP_CATALOG_SERVER', 'http://ssl6.pair.com');
define('HTTPS_CATALOG_SERVER', 'https://ssl6.pair.com');

// Use secure webserver for catalog module and/or admin areas?
define('ENABLE_SSL_CATALOG', 'true');
define('ENABLE_SSL_ADMIN', 'true');

// NOTE: be sure to leave the trailing '/' at the end of these lines if you make changes!
// * DIR_WS_* = Webserver directories (virtual/URL)
// these paths are relative to top of your webspace ... (ie: under the public_html or httpdocs folder)
define('DIR_WS_ADMIN', '/bgy11f1/karberson/admin/');
define('DIR_WS_CATALOG', '/bgy11f1/karberson/');
define('DIR_WS_HTTPS_ADMIN', '/bgy11f1/karberson/admin/');
define('DIR_WS_HTTPS_CATALOG', '/bgy11f1/karberson/');

define('DIR_WS_IMAGES', 'images/');
define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
define('DIR_WS_CATALOG_IMAGES', HTTP_CATALOG_SERVER . DIR_WS_CATALOG . 'images/');
define('DIR_WS_CATALOG_TEMPLATE', HTTP_CATALOG_SERVER . DIR_WS_CATALOG . 'includes/templates/');
define('DIR_WS_INCLUDES', 'includes/');
define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');
define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');
define('DIR_WS_CATALOG_LANGUAGES', HTTP_CATALOG_SERVER . DIR_WS_CATALOG . 'includes/languages/');

// * 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/store/
define('DIR_FS_ADMIN', '/usr/home/bgy11f1/public_ssl/karberson/admin/');
define('DIR_FS_CATALOG', '/usr/home/bgy11f1/public_ssl/karberson/');

define('DIR_FS_CATALOG_LANGUAGES', DIR_FS_CATALOG . 'includes/languages/');
define('DIR_FS_CATALOG_IMAGES', DIR_FS_CATALOG . 'images/');
define('DIR_FS_CATALOG_MODULES', DIR_FS_CATALOG . 'includes/modules/');
define('DIR_FS_CATALOG_TEMPLATES', DIR_FS_CATALOG . 'includes/templates/');
define('DIR_FS_BACKUP', DIR_FS_ADMIN . 'backups/');
define('DIR_FS_EMAIL_TEMPLATES', DIR_FS_CATALOG . 'email/');
define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/');

// define our database connection
define('DB_TYPE', 'mysql');
define('DB_PREFIX', '');
define('DB_SERVER', 'db88b.pair.com');
define('DB_SERVER_USERNAME', 'x');
define('DB_SERVER_PASSWORD', 'x');
define('DB_DATABASE', 'bgy11f1_zencart');
define('USE_PCONNECT', 'false'); // use persistent connections?
define('STORE_SESSIONS', 'db'); // use 'db' for best support, or '' for file-based storage

// The next 2 "defines" are for SQL cache support.
// For SQL_CACHE_METHOD, you can select from: none, database, or file
// If you choose "file", then you need to set the DIR_FS_SQL_CACHE to a directory where your apache
// or webserver user has write privileges (chmod 666 or 777). We recommend using the "cache" folder inside the Zen Cart folder
// ie: /path/to/your/webspace/public_html/zen/cache -- leave no trailing slash
define('SQL_CACHE_METHOD', 'file');
define('DIR_FS_SQL_CACHE', '/usr/home/bgy11f1/public_ssl/karberson/cache');
?>

and the other config:

<?php

// Define the webserver and path parameters
// HTTP_SERVER is your Main webserver: eg, http://www.yourdomain.com
// HTTPS_SERVER is your Secure webserver: eg, https://www.yourdomain.com
define('HTTP_SERVER', 'http://ssl6.pair.com');
define('HTTPS_SERVER', 'https://ssl6.pair.com');

// Use secure webserver for checkout procedure?
define('ENABLE_SSL', 'true');

// NOTE: be sure to leave the trailing '/' at the end of these lines if you make changes!
// * DIR_WS_* = Webserver directories (virtual/URL)
// these paths are relative to top of your webspace ... (ie: under the public_html or httpdocs folder)
define('DIR_WS_CATALOG', '/bgy11f1/karberson/');
define('DIR_WS_HTTPS_CATALOG', '/bgy11f1/karberson/');

define('DIR_WS_IMAGES', 'images/');
define('DIR_WS_INCLUDES', 'includes/');
define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');
define('DIR_WS_DOWNLOAD_PUBLIC', DIR_WS_CATALOG . 'pub/');
define('DIR_WS_TEMPLATES', DIR_WS_INCLUDES . 'templates/');

define('DIR_WS_PHPBB', '/');

// * 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/store/
define('DIR_FS_CATALOG', '/usr/home/bgy11f1/public_ssl/karberson/');

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/');

// define our database connection
define('DB_TYPE', 'mysql');
define('DB_PREFIX', '');
define('DB_SERVER', 'db88b.pair.com');
define('DB_SERVER_USERNAME', 'x');
define('DB_SERVER_PASSWORD', 'x');
define('DB_DATABASE', 'bgy11f1_zencart');
define('USE_PCONNECT', 'false'); // use persistent connections?
define('STORE_SESSIONS', 'db'); // use 'db' for best support, or '' for file-based storage

// The next 2 "defines" are for SQL cache support.
// For SQL_CACHE_METHOD, you can select from: none, database, or file
// If you choose "file", then you need to set the DIR_FS_SQL_CACHE to a directory where your apache
// or webserver user has write privileges (chmod 666 or 777). We recommend using the "cache" folder inside the Zen Cart folder
// ie: /path/to/your/webspace/public_html/zen/cache -- leave no trailing slash
define('SQL_CACHE_METHOD', 'file');
define('DIR_FS_SQL_CACHE', '/usr/home/bgy11f1/public_ssl/karberson/cache');

?>