Page 4 of 5 FirstFirst ... 2345 LastLast
Results 31 to 40 of 41
  1. #31
    Join Date
    Dec 2006
    Location
    Ontario
    Posts
    112
    Plugin Contributions
    0

    Default Re: Turn off HOME link in Logo Image

    Quote Originally Posted by Merlinpa1969 View Post
    you are using c-panel,
    you shouldn't be using a mirror for your site,
    however if you are then you need to make the changes in the 2 configure.php files in the mirror to reflect the server change.

    Your host seems to have something set up totally weird,

    You were right. My host set a symbolic link to my catalog directory. No more mirror. Which is cool. Did not solve the IE problem. IE still has no style wether you choose to show secure items or not. All other browsers work fine.

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

    Default Re: Turn off HOME link in Logo Image

    Which URL are you using now?
    Please do not PM for support issues: a private solution doesn't benefit the community.

    Be careful with unsolicited advice via email or PM - Make sure the person you are talking to is a reliable source.

  3. #33
    Join Date
    Dec 2006
    Location
    Ontario
    Posts
    112
    Plugin Contributions
    0

    Default Re: Turn off HOME link in Logo Image

    www.washingtonpools.ca/online
    The last thing I did was remove the call for the logo image,the sign-in image and the submit info image. As far as could tell there were no other images being called and it still had no style in https.(I have put them back since then) In page source say the css files are called but it seems like they are not loading properly or something. This one really has me stumped. The pro I hired is having no luck either.

    When you tell IE to not show insecure items it does say in properties these images are not available.

    It gives path http://%20https//ssl5.servage.net/~sc15698-NLZR/online/includes/templates/custom/images/logo when you tell it to show insecure items.

    But I removed it completly from the php file that calls it and still have same problem.

    I do use shared ssl but really do not want to spend money and find out the problem still exists. It is not easy to find someone expierenced in this stuff to ask for help. I am sure someone online would be more then happy to charge me to solve it but how do you find some one you can trust.

    The solution must be somewhere. But where?

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

    Default Re: Turn off HOME link in Logo Image

    Can you Post your config files, here
    MINUS any passwords
    Zen cart PCI compliant Hosting

  5. #35
    Join Date
    Dec 2006
    Location
    Ontario
    Posts
    112
    Plugin Contributions
    0

    Default Re: Turn off HOME link in Logo Image

    <?php
    /**
    *
    * @package Configuration Settings
    * @copyright Copyright 2003-2006 Zen Cart Development Team
    * @copyright Portions Copyright 2003 osCommerce
    * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
    */


    /*************** NOTE: This file is similar, but DIFFERENT from the "admin" version of configure.php. ***********/
    /*************** The 2 files should be kept separate and not used to overwrite each other. ***********/

    // 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://www.washingtonpools.ca');
    define('HTTPS_SERVER', ' https://ssl5.servage.net/~sc15698-NLZR');

    // 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', '/online/');
    define('DIR_WS_HTTPS_CATALOG', '/online/');

    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', '/home8/sub004/sc15698-NLZR/www/online/phpbb2');

    // * 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', '/home8/sub004/sc15698-NLZR/www/online/');

    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', 'zen_');
    define('DB_SERVER', 'xxxxxxxxxx');
    define('DB_SERVER_USERNAME', 'xxxxxxxxxx');
    define('DB_SERVER_PASSWORD', 'xxxxxxxxxx');
    define('DB_DATABASE', 'xxxxxxxxxx');
    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', 'database');
    define('DIR_FS_SQL_CACHE', '/home8/sub004/sc15698-NLZR/www/online/cache');

    ?>






    <?php
    //
    /**
    *
    * @package Configuration Settings
    * @copyright Copyright 2003-2006 Zen Cart Development Team
    * @copyright Portions Copyright 2003 osCommerce
    * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
    */


    /*************** NOTE: This file is similar, but DIFFERENT from the "store" version of configure.php. ***********/
    /*************** The 2 files should be kept separate and not used to overwrite each other. ***********/

    // Define the webserver and path parameters
    // Main webserver: eg, http://localhost - should not be empty for productive servers
    // HTTP_SERVER is your Main webserver: eg, http://www.yourdomain.com
    // HTTPS_SERVER is your Secure webserver: eg, https://www.yourdomain.com
    // HTTP_CATALOG_SERVER is your Main webserver: eg, http://www.yourdomain.com
    // HTTPS_CATALOG_SERVER is your Secure webserver: eg, https://www.yourdomain.com
    /*
    * URLs for your site will be built via:
    * HTTP_SERVER plus DIR_WS_ADMIN or
    * HTTPS_SERVER plus DIR_WS_HTTPS_ADMIN or
    * HTTP_SERVER plus DIR_WS_CATALOG or
    * HTTPS_SERVER plus DIR_WS_HTTPS_CATALOG
    * ...depending on your system configuration settings
    */
    define('HTTP_SERVER', 'http://www.washingtonpools.ca');
    define('HTTPS_SERVER', ' https://ssl5.servage.net/~sc15698-NLZR');
    define('HTTP_CATALOG_SERVER', 'http://www.washingtonpools.ca');
    define('HTTPS_CATALOG_SERVER', ' https://ssl5.servage.net/~sc15698-NLZR');

    // 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', '/online/admin/');
    define('DIR_WS_CATALOG', '/online/');
    define('DIR_WS_HTTPS_ADMIN', '/online/admin/');
    define('DIR_WS_HTTPS_CATALOG', '/online/');

    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', '/home8/sub004/sc15698-NLZR/www/online/admin/');
    define('DIR_FS_CATALOG', '/home8/sub004/sc15698-NLZR/www/online/');

    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', 'zen_');
    define('DB_SERVER', 'xxxxxxxxxxxx');
    define('DB_SERVER_USERNAME', 'xxxxxxxxxx');
    define('DB_SERVER_PASSWORD', 'xxxxxxxxxxxxxxx');
    define('DB_DATABASE', 'xxxxxxxxxxx');
    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', '/home8/sub004/sc15698-NLZR/www/online/cache');

    ?>

  6. #36
    Join Date
    Dec 2006
    Location
    Ontario
    Posts
    112
    Plugin Contributions
    0

    Default Re: Turn off HOME link in Logo Image

    Just to put an end to the thread. I am afraid I can not find the problem.
    My zencart will not work with SSL In Internet explorer and thats that.
    See Ya.

  7. #37
    Join Date
    Apr 2006
    Location
    West Salem, IL
    Posts
    2,888
    Plugin Contributions
    0

    Default Re: Turn off HOME link in Logo Image

    I don't know that much about setting up ssl but now that your host has turned off mirroring......why are you still pointing to the secure server url for https in your config files?
    Mike
    AEIIA - Zen Cart Certified & PCI Compliant Hosting
    The Zen Cart Forum...Better than a monitor covered with post-it notes!

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

    Default Re: Turn off HOME link in Logo Image

    I found your error

    Look at this CLOSE

    define('HTTPS_SERVER', ' https://ssl5.servage.net/~sc15698-NLZR');

    it should be

    define('HTTPS_SERVER', 'https://ssl5.servage.net/~sc15698-NLZR');

    you have a space between ' and https
    Zen cart PCI compliant Hosting

  9. #39
    Join Date
    Dec 2006
    Location
    Ontario
    Posts
    112
    Plugin Contributions
    0

    Default Re: Turn off HOME link in Logo Image

    Quote Originally Posted by barco57 View Post
    I don't know that much about setting up ssl but now that your host has turned off mirroring......why are you still pointing to the secure server url for https in your config files?
    The host did not really turn it off. They created a symbolic link in the ssl folder to thw www file, so any file changes are automatically put in SSl folder.
    Its pretty cool. i am not sure why the did not set it up like that to begin with.

  10. #40
    Join Date
    Dec 2006
    Location
    Ontario
    Posts
    112
    Plugin Contributions
    0

    Default Re: Turn off HOME link in Logo Image

    Quote Originally Posted by Merlinpa1969 View Post
    I found your error

    Look at this CLOSE

    define('HTTPS_SERVER', ' https://ssl5.servage.net/~sc15698-NLZR');

    it should be

    define('HTTPS_SERVER', 'https://ssl5.servage.net/~sc15698-NLZR');

    you have a space between ' and https

    I stared at the config files now for almost two weeks
    I did see that space but i thought it was the way the file came and did not consider removing it.
    It is amazing that such all small thing can cause so much frustration.
    Internet explorer is obviously a stickler for details.

    Merlinpa1969, I can not begin to tell you how much I apprieciate your help.
    I do not know if you are part of the ZenCart team but I am going to make a donation to ZenCart for $200.00 and if I can, do it on your behalf.

    Thanks

    Time to put the site back together!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

 

 
Page 4 of 5 FirstFirst ... 2345 LastLast

Similar Threads

  1. Changing URL link of image with logo from Home Page
    By Sachin1008 in forum Templates, Stylesheets, Page Layout
    Replies: 8
    Last Post: 28 Apr 2014, 02:24 PM
  2. Home Link image (logo.gif)
    By ThomasT in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 1 Jul 2010, 09:02 PM
  3. Turn Off Certain Sideboxes on Home Page
    By autoace in forum Basic Configuration
    Replies: 5
    Last Post: 30 Sep 2009, 06:08 PM

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