Results 1 to 7 of 7
  1. #1
    Join Date
    Aug 2006
    Posts
    7
    Plugin Contributions
    0

    Default Email or Configuration issue?

    I am using ZC 1.3.0.2 and my confirmation emails are showing this as the return url.

    https://www.anystore.com/https:www.a...nfo&order_id=8


    How do I get it to show correctly? Thanks for any assistance.

  2. #2
    Join Date
    Jan 2004
    Posts
    66,444
    Plugin Contributions
    279

    Default Re: Email or Configuration issue?

    please post your /includes/configure.php file contents here without the passwords
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  3. #3
    Join Date
    Aug 2006
    Posts
    7
    Plugin Contributions
    0

    Default Re: Email or Configuration issue?

    Thank you for responding. Here is the file requested.


    <?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
    */


    // 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.roarockcandy.com');
    define('HTTPS_SERVER', 'https://www.roarockcandy.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', '/');
    define('DIR_WS_HTTPS_CATALOG', '/');

    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', '/home/titian/roarockcandy-www/');

    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', 'roa');
    define('DB_SERVER', 'www.roarockcandy.com'); // eg, localhost - should not be empty
    define('DB_DATABASE', 'roarockcandy_com');
    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', 'database');
    define('DIR_FS_SQL_CACHE', '/home/titian/roarockcandy-www/cache');

    ?>

  4. #4
    Join Date
    Jan 2004
    Posts
    66,444
    Plugin Contributions
    279

    Default Re: Email or Configuration issue?

    is this happening with HTML emails or text-only emails?
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  5. #5
    Join Date
    Aug 2006
    Posts
    7
    Plugin Contributions
    0

    Default Re: Email or Configuration issue?

    text only...I have not changed anything to enable HTML emails, have not made it that far yet!!

  6. #6
    Join Date
    Jan 2004
    Posts
    66,444
    Plugin Contributions
    279

    Default Re: Email or Configuration issue?

    1. I assume you're having no trouble with any checkout or my-account pages?
    2. if you change your configure.php setting for SSL to 'false', does the email link show correctly?
    Code:
    define('ENABLE_SSL', 'false');
    I can't reproduce the problem on my fresh install...
    .

    Zen Cart - putting the dream of business ownership within reach of anyone!
    Donate to: DrByte directly or to the Zen Cart team as a whole

    Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
    Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.

  7. #7
    Join Date
    Aug 2006
    Posts
    7
    Plugin Contributions
    0

    Default Re: Email or Configuration issue?

    I have corrected it. It was not this config file but the one under admin. When I had the cert installed on the server, I needed to make the paths relative...

    Thank you for pointing me in the right direction!!

 

 

Similar Threads

  1. v139h Configuration issue - odd
    By buildingblocks in forum General Questions
    Replies: 8
    Last Post: 18 Feb 2015, 08:50 PM
  2. Configuration issue with zone rates
    By acummins in forum Built-in Shipping and Payment Modules
    Replies: 1
    Last Post: 30 Mar 2009, 11:29 PM
  3. Configuration Issue?
    By eradio in forum Installing on a Windows Server
    Replies: 0
    Last Post: 4 Mar 2008, 03:02 PM
  4. Configuration File issue
    By terryray in forum General Questions
    Replies: 1
    Last Post: 25 Nov 2007, 08:06 PM
  5. configuration issue
    By onequickmemory in forum Basic Configuration
    Replies: 3
    Last Post: 23 Jul 2006, 03:22 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