Page 1 of 3 123 LastLast
Results 1 to 10 of 29
  1. #1
    Join Date
    Dec 2005
    Posts
    21
    Plugin Contributions
    0

    Default Blocked Checkout - stuck on login

    Hi, I've searched previous posts on this topic and checked my shipping options - I have flat rate shipping on and that's all.

    I can purchase products OK the first time by entering customer info, but when I come for a 2nd purchase and checkout, I enter the login info but I get bounced back to the main page which says 'Hello David....' so I click on a thumbnail and instead of going to the product detail page it takes me to login again.

    You can see my install details at http://www.stevegrove.com/gallery/zc...l/techsupp.php

    I'm not sure if this has worked before and I've upset some setting somewhere or never worked.

  2. #2
    Join Date
    Jan 2004
    Posts
    66,419
    Blog Entries
    7
    Plugin Contributions
    277

    Default Re: Blocked Checkout - stuck on login

    Sounds like you have an SSL sharing problem.
    Please post your /includes/configure.php file without 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
    10
    Plugin Contributions
    0

    Can Not Checkout........help

    I was hoping to find someone online to help figure out why when u click on the "Check Out" I get an error on the next page saying it can not be displayed and it puts: "http://www.MYSITENAME.comhttps://www.MYSITENAME.com/" A bunch of other stuff. Why does it place the address twice? Is my SSL screwed up? I use Dreamhost and Paypal as my checkout option. All I did was go into the FTP and enable Paypal, disabled all others, and set up Paypal. My shopping cart works great....You just can't check out. I know N O T H I N G about ANY of this...Just trying to wing it and look up self-helps online. So if u can explain it or know how I can fix it, I would be forever grateful!
    Other Info: I may have said I had a SSL, Could this be a problem? And if so, How do I fix it?
    And I have the most current ZenCart. Windows Server.
    To see excactly what I mean, you can test my site here:
    www.digitalscrapheaven.com

  4. #4
    Join Date
    Jan 2004
    Posts
    66,419
    Blog Entries
    7
    Plugin Contributions
    277

    Default Re: Blocked Checkout - stuck on login

    I'll quote myself:
    Quote Originally Posted by DrByte
    Please post your /includes/configure.php file without 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.

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

    Re: Blocked Checkout - stuck on login

    <?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.digitalscrapheaven.com');
    define('HTTPS_SERVER', 'http://www.digitalscrapheaven.com');

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

    // 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', 'https://www.digitalscrapheaven/');

    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/scrapprincess/digitalscrapheaven.com/');

    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', 'boutique');
    define('DB_SERVER', 'mysql.digitalscrapheaven.com'); // eg, localhost - should not be empty
    define('DB_SERVER_USERNAME', 'myusernamedeleted');
    define('DB_SERVER_PASSWORD', 'password deleted');
    define('DB_DATABASE', 'boutique');
    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', '');

    ?>

    Ok....this is what it says...I hope u can help. Or Someone. I wouyld really like to get my site up and running.


    Again, to vie the error....You can go to www.digitalscrapheaven.com and try to buy something to see what it says in the URL.

  6. #6
    Join Date
    Jan 2004
    Posts
    66,419
    Blog Entries
    7
    Plugin Contributions
    277

    Default Re: Blocked Checkout - stuck on login

    PHP Code:
    define('DIR_WS_HTTPS_CATALOG''https://www.digitalscrapheaven/'); 
    try:
    PHP Code:
    define('DIR_WS_HTTPS_CATALOG''/'); 
    .

    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
    10
    Plugin Contributions
    0

    Idea or Suggestion Re: Blocked Checkout - stuck on login

    Ya know....I have read 1000's of posts in here....and have memorized all info, and remembered something and i have fixed it myself....WOOO HOOO For me! Thanks to all who replied and emailed me.

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

    Default Re: Blocked Checkout - stuck on login

    Hi, I'm back again...didn't realise someone had replied to my qn...here's my config file:

    <?php
    //
    // +----------------------------------------------------------------------+
    // |Zen Cart Open Source E-commerce |
    // +----------------------------------------------------------------------+
    // | Copyright (c) 2004 The Zen Cart developers |
    // | |
    // | http://www.zen-cart.com/index.php |
    // | |
    // | Portions Copyright (c) 2003 osCommerce |
    // +----------------------------------------------------------------------+
    // | This source file is subject to version 2.0 of the GPL license, |
    // | that is bundled with this package in the file LICENSE, and is |
    // | available through the world-wide-web at the following url: |
    // | http://www.zen-cart.com/license/2_0.txt. |
    // | If you did not receive a copy of the Zen Cart license and are unable |
    // | to obtain it through the world-wide-web, please send a note to |
    // | license AT zen-cart DOT com so we can mail you a copy immediately. |
    // +----------------------------------------------------------------------+
    //

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

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

    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', 'mysql.godzone.net.nz'); // eg, localhost - should not be empty
    define('DB_SERVER_USERNAME', 'xxxxx');
    define('DB_SERVER_PASSWORD', 'xxxxx');
    define('DB_DATABASE', 'xxxxx');
    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', 'none');
    define('DIR_FS_SQL_CACHE', '/home20/amurphy/gallery/cache');

    ?>

  9. #9
    Join Date
    Jan 2004
    Posts
    66,419
    Blog Entries
    7
    Plugin Contributions
    277

    Default Re: Blocked Checkout - stuck on login

    If you set this to false, do things work properly?
    Code:
    define('ENABLE_SSL', 'true');
    .

    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.

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

    Another Problem.....Multiple Downoads

    I sell digital scrapbook items and some of the kits are to large for 1 zip file. I noticed there were posts with step by step instruction's however i can not find it.




    I know when I go into to the attributes manager, it won't let me have multiple "zip" downloads for that file.
    This is at the top: {Highlighted in Pink}

    Duplicate Attribute - Attribute was not added - DOWNLOAD : ZIP

    Admin Demo is currently Active. Some settings are will be disabled - NOTE: Admin Override Enabled


    {I have since turned off admin demo} still will not let me put duplicate zips.

 

 
Page 1 of 3 123 LastLast

Similar Threads

  1. Styling login area - stuck
    By pb4 in forum Templates, Stylesheets, Page Layout
    Replies: 3
    Last Post: 31 Dec 2009, 01:04 AM
  2. checkout login is stuck
    By sveetcouture in forum Managing Customers and Orders
    Replies: 4
    Last Post: 30 Aug 2006, 05:56 AM
  3. Checkout - stuck on login
    By davidf in forum General Questions
    Replies: 2
    Last Post: 7 Aug 2006, 11:54 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