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.
Re: Blocked Checkout - stuck on login
Sounds like you have an SSL sharing problem.
Please post your /includes/configure.php file without passwords.
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
Re: Blocked Checkout - stuck on login
I'll quote myself:
Quote:
Originally Posted by DrByte
Please post your /includes/configure.php file without passwords.
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.:lookaroun
Re: Blocked Checkout - stuck on login
PHP Code:
define('DIR_WS_HTTPS_CATALOG', 'https://www.digitalscrapheaven/');
try:
PHP Code:
define('DIR_WS_HTTPS_CATALOG', '/');
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!:smartass: Thanks to all who replied and emailed me.
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');
?>
Re: Blocked Checkout - stuck on login
If you set this to false, do things work properly?
Code:
define('ENABLE_SSL', 'true');
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.