Results 1 to 10 of 16

Hybrid View

  1. #1
    Join Date
    Mar 2004
    Posts
    16,042
    Plugin Contributions
    5

    Default Re: SSL issues with Network Solutions Anyone?

    the custom header isnt healping matters
    http://www.screenprintcatalog.com/us...header_top.jpg

    Looks like the html_header might have been changed the base href is non secure
    <base href="http://www.screenprintcatalog.com/us/" />
    Zen cart PCI compliant Hosting

  2. #2
    Join Date
    Nov 2006
    Posts
    35
    Plugin Contributions
    0

    Default Re: SSL issues with Network Solutions Anyone?

    Hey Merlin,

    Looking at the html_header.php I have handy looks like the Base href file is still intact:

    <base href="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER . DIR_WS_HTTPS_CATALOG : HTTP_SERVER . DIR_WS_CATALOG ); ?>" />

    Doing a view source via IE, yeah reads as:
    <base href="http://www.screenprintcatalog.com/us/" />


    Kobra-
    When starting with http://www.screenprintcatalog.com/us/index.php and clicking on login the link does indeed prompt me to go to the secured login page (https://www.screenprintcatalog.com/u...ain_page=login) but this lands me with the security prompt for missing images.

    Quick note, yeah the SSL is for the screenprintcatalog.com domain...the expanded version of the config file I should have posted is the following...any thoughts or suggestions?


    // Define the webserver and path parameters
    // Main webserver: eg, http://localhost - should not be empty for productive servers
    define('HTTP_SERVER', 'http://screenprintcatalog.com');
    // Secure webserver: eg, https://localhost - should not be empty for productive servers
    define('HTTPS_SERVER', 'https://screenprintcatalog.com');
    // 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', '/us/');
    define('DIR_WS_HTTPS_CATALOG', '/us/');

    define('DIR_WS_IMAGES', 'images/');
    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_DOWNLOAD_PUBLIC', DIR_WS_CATALOG . 'pub/');
    define('DIR_WS_BLOCKS', DIR_WS_INCLUDES . 'blocks/');
    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', '/data/12/1/102/160/1102323/user/1154976/htdocs/screenprintcatalog/us/');

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

    // 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', '/data/12/1/102/160/1102323/user/1154976/htdocs/screenprintcatalog/us/cache');

  3. #3
    Join Date
    Mar 2004
    Posts
    16,042
    Plugin Contributions
    5

    Default Re: SSL issues with Network Solutions Anyone?

    I just noticed that your view source of the login page has the non ssl link.
    as a base href
    Zen cart PCI compliant Hosting

  4. #4
    Join Date
    Nov 2006
    Posts
    35
    Plugin Contributions
    0

    Default Re: SSL issues with Network Solutions Anyone?

    Yeah Merlin, this is where I'm a tad confused...I've looked at other sites we've done with SSLs (on a different server) and doing a View Source on both secure and unsecure pages, the Base href 'shifts' accordingly - but of course not with this particular site...



    I did customize the header, image link for that particular top image is relative and not absolute.

  5. #5
    Join Date
    Mar 2004
    Posts
    16,042
    Plugin Contributions
    5

    Default Re: SSL issues with Network Solutions Anyone?

    try switching back to the classic template quick, see if this is still an issue
    Zen cart PCI compliant Hosting

  6. #6
    Join Date
    Nov 2006
    Posts
    35
    Plugin Contributions
    0

    Default Re: SSL issues with Network Solutions Anyone?

    Interesting...flipped back to classic mode, things are now good...

    https://www.screenprintcatalog.com/u...ain_page=login

    So where am I going wrong?

  7. #7
    Join Date
    Mar 2004
    Posts
    16,042
    Plugin Contributions
    5

    Default Re: SSL issues with Network Solutions Anyone?

    something to do with that header that you created
    looks like you might have removed something important
    Zen cart PCI compliant Hosting

 

 

Similar Threads

  1. Network Solutions Hosting
    By Forum5 in forum General Questions
    Replies: 8
    Last Post: 23 May 2014, 08:16 AM
  2. Replies: 2
    Last Post: 1 Oct 2009, 10:16 PM
  3. SSL not working properly - network solutions hosting
    By EnergyTincom in forum General Questions
    Replies: 1
    Last Post: 16 Jul 2009, 05:57 AM

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