Page 1 of 2 12 LastLast
Results 1 to 10 of 11
  1. #1
    Join Date
    Dec 2005
    Posts
    60
    Plugin Contributions
    0

    Default Install in both httpdocs and httpsdocs?

    I installed in httpdocs and enabled ssl. When I try to access the admin area I get Error 404. It is trying to connect to https:/kethmemorialgolf.com/onlinestore_test/admin, but there is no such folder in the httpsdocs directory.

    Did the install not go properly? Do I need to install to both?

    I also tried installing in httpsdocs only, but when I try to access the admin tools get Error 404 due to trying to connect to http:/kethmemorialgolf.com/onlinestore_test/admin, and no such folder exists.

    I know I can disable ssl and continue, but I want to be able to use it later, so I would like to fix the issue before I get too far in to it.

    Thanks,
    Shannon
    Last edited by onisama; 6 Jul 2006 at 12:58 AM.

  2. #2
    Join Date
    Jun 2003
    Posts
    33,715
    Plugin Contributions
    0

    Default Re: Install in both httpdocs and httpsdocs?


  3. #3
    Join Date
    Dec 2005
    Posts
    60
    Plugin Contributions
    0

    Default Re: Install in both httpdocs and httpsdocs?

    My configure files checkout OK.

  4. #4
    Join Date
    Dec 2005
    Posts
    60
    Plugin Contributions
    0

    Default Re: Install in both httpdocs and httpsdocs?

    includes/configure.php:

    define('HTTP_SERVER', 'http://www.kethmemorialgolf.com');
    define('HTTPS_SERVER', 'https://www.kethmemorialgolf.com');

    define('ENABLE_SSL', 'true');

    define('DIR_WS_CATALOG', '/onlinestore_test/');
    define('DIR_WS_HTTPS_CATALOG', '/onlinestore_test/');

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

    define('DIR_FS_CATALOG', '/home/httpd/vhosts/kethmemorialgolf.com/httpdocs/onlinestore_test/');

    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('DB_TYPE', 'mysql');
    define('DB_PREFIX', 'zen_test_');
    define('DB_SERVER', 'localhost'); // eg, localhost - should not be empty
    define('DB_SERVER_USERNAME', '*****');
    define('DB_SERVER_PASSWORD', '*****');
    define('DB_DATABASE', '*****');
    define('USE_PCONNECT', 'false'); // use persistent connections?
    define('STORE_SESSIONS', 'db'); // leave empty '' for default handler or set to 'db'

    define('SQL_CACHE_METHOD', 'database');
    define('DIR_FS_SQL_CACHE', '/home/httpd/vhosts/kethmemorialgolf.com/httpdocs/onlinestore_test/cache');

    --------------------------------------------------------------------------------------------

    admin/includes/configure.php:

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

    define('ENABLE_SSL_CATALOG', 'true');
    define('ENABLE_SSL_ADMIN', 'true');

    define('DIR_WS_ADMIN', '/onlinestore_test/admin/');
    define('DIR_WS_CATALOG', '/onlinestore_test/');
    define('DIR_WS_HTTPS_ADMIN', '/onlinestore_test/admin/');
    define('DIR_WS_HTTPS_CATALOG', '/onlinestore_test/');

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

    define('DIR_FS_ADMIN', '/home/httpd/vhosts/kethmemorialgolf.com/httpdocs/onlinestore_test/admin/');
    define('DIR_FS_CATALOG', '/home/httpd/vhosts/kethmemorialgolf.com/httpdocs/onlinestore_test/');

    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('DB_TYPE', 'mysql');
    define('DB_PREFIX', 'zen_test_');
    define('DB_SERVER', 'localhost'); // eg, localhost - should not be empty
    define('DB_SERVER_USERNAME', '*****');
    define('DB_SERVER_PASSWORD', '*****');
    define('DB_DATABASE', '*****');
    define('USE_PCONNECT', 'false'); // use persistent connections?
    define('STORE_SESSIONS', 'db'); // leave empty '' for default handler or set to 'db'

    define('SQL_CACHE_METHOD', 'database');
    define('DIR_FS_SQL_CACHE', '/home/httpd/vhosts/kethmemorialgolf.com/httpdocs/onlinestore_test/cache');
    Last edited by onisama; 6 Jul 2006 at 05:02 AM.

  5. #5
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Install in both httpdocs and httpsdocs?

    Your secure certificate is for:
    You should be using that and not:
    kethmemorialgolf.com
    in your URLs ...
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today: v1.5.5]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  6. #6
    Join Date
    Dec 2005
    Posts
    60
    Plugin Contributions
    0

    Default Re: Install in both httpdocs and httpsdocs?

    I am, I just forgot to add the www to the url in the post.

  7. #7
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Install in both httpdocs and httpsdocs?

    You might try reloading the /admin files and see if any missed the boat on a good upload first time around ...
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today: v1.5.5]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  8. #8
    Join Date
    Dec 2005
    Posts
    60
    Plugin Contributions
    0

    Default Re: Install in both httpdocs and httpsdocs?

    I will try that.

    Should I have any files/folders related to the store in the https: folder when checking through ftp?

  9. #9
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Install in both httpdocs and httpsdocs?

    If you have to have both directories you will need copies of everything in both ...
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today: v1.5.5]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  10. #10
    Join Date
    Dec 2005
    Posts
    60
    Plugin Contributions
    0

    Default Re: Install in both httpdocs and httpsdocs?

    So any changes I make will have to be changed in both directories?

    Thanks,
    Shannon

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Two folder on Webserver: httpdocs and httpsdocs
    By jgalty in forum Basic Configuration
    Replies: 4
    Last Post: 28 Feb 2008, 06:11 PM
  2. need help with SSL on httpdocs and httpsdocs
    By mansoor in forum Installing on a Linux/Unix Server
    Replies: 1
    Last Post: 31 Mar 2007, 01:52 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR