This is a discussion on Tax Error and Logging in Problem within the osCMax v1.7 Discussion forums, part of the osCMax v1.7 Forums category; I have had several issues come to my attention during this hoiday season. The first being that customers can not ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
|
#1
| |||
| |||
| I have had several issues come to my attention during this hoiday season. The first being that customers can not log back in for a second time. I have checked and rechecked my configuration files and they are fine. I have noticed that the path that OSCMAX is creating is what seems to be causing the error. I also have found that you can not use flash in the main_page.tpl.php is causes a security error. And last but not least for some reason it looks like OSCMAX is taking the subtotal and subtracting the shipping and then charging tax on that total. Any ideas? All my setting are fine and it has only happened twice that I know of. Any help with the above issues would be great. I have searched the entire site with several different keywords with no answers. Thanks in advance. Jessica McCarty D & J Designs |
| Sponsored Links | ||
| ||
| |
|
#2
| ||||
| ||||
| Hi, If customers cannot login to your site a second time, you have something set up incorrectly. Check your path settings in the configure.php files and sessions settings. This is a setup problem on your part, not a problem with the osCMax application itself. Yes, you can use flash in the templates. You need to switch between http and https in your coding. Remember, it is a dynamic app, so you need to code with this in mind. Static urls will not work with ssl. Your last issue is again most likely a setup problem somewhere in the admin with shipping or tax zones. This is not a problem with the applcation, but a problem with the setup.
__________________ Michael Sasek osCMax Developer
|
|
#3
| |||
| |||
| I am including my configure.php because I took the link that pulls the error and after I take out the path OSC makes it works fine. So I am at a loss.3 My configure.php <?php /* osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2003 osCommerce Released under the GNU General Public License */ // Define the webserver and path parameters // * DIR_FS_* = Filesystem directories (local/physical) // * DIR_WS_* = Webserver directories (virtual/URL) define('HTTP_SERVER', 'http://gullahgourmet.net'); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', 'https://67.18.52.66'); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', true); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'www.gullahgourmet.net'); define('HTTPS_COOKIE_DOMAIN', 'https://67.18.52.66/~debbie'); define('HTTP_COOKIE_PATH', '/catalog/'); define('HTTPS_COOKIE_PATH', '/catalog/'); define('DIR_WS_HTTP_CATALOG', '/catalog/'); define('DIR_WS_HTTPS_CATALOG', '/~debbie/catalog/'); define('DIR_WS_IMAGES', 'images/'); define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/'); 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/'); //Added for BTS1.0 define('DIR_WS_TEMPLATES', 'templates/'); define('DIR_WS_CONTENT', DIR_WS_TEMPLATES . 'content/'); define('DIR_WS_JAVASCRIPT', DIR_WS_INCLUDES . 'javascript/'); //End BTS1.0 define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/'); define('DIR_FS_CATALOG', '/home/debbie/public_html/catalog/'); define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/'); define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/'); // define our database connection define('DB_SERVER', 'localhost'); // eg, localhost - should not be empty for productive servers define('DB_SERVER_USERNAME', 'debbie'); define('DB_SERVER_PASSWORD', 'nelson'); define('DB_DATABASE', 'debbie_osc1'); define('USE_PCONNECT', 'false'); // use persistent connections? define('STORE_SESSIONS', 'mysql'); // leave empty '' for default handler or set to 'mysql' ?> Flash buttons work fine. I am guessing it's the macromedia link in the coding of the flash buttons that is calling the security error. Do you know if it is possible to get rid of those links and still have it work? Not a Flash Wiz. The only country is US the only tax zone is SC and the only tax is 6%. How can it be a configuration error if it has only happened twice in 6 months and there are many orders that are fine? Thanks for your quick responce any other help is greatly appreciated. Jessica McCarty D & J Designs |
|
#4
| ||||
| ||||
| Here is what the problem is: You have: Code: define('HTTP_COOKIE_DOMAIN', 'www.gullahgourmet.net');
define('HTTPS_COOKIE_DOMAIN', 'https://67.18.52.66/~debbie');
define('HTTP_COOKIE_PATH', '/catalog/');
define('HTTPS_COOKIE_PATH', '/catalog/');
define('DIR_WS_HTTP_CATALOG', '/catalog/');
define('DIR_WS_HTTPS_CATALOG', '/~debbie/catalog/');
Code: define('HTTP_COOKIE_DOMAIN', 'gullahgourmet.net');
define('HTTPS_COOKIE_DOMAIN', '67.18.52.66');
define('HTTP_COOKIE_PATH', '/catalog/');
define('HTTPS_COOKIE_PATH', '/catalog/');
define('DIR_WS_HTTP_CATALOG', '/catalog/');
define('DIR_WS_HTTPS_CATALOG', '/catalog/');
Code: define('HTTPS_SERVER', 'https://67.18.52.66');
Code: define('HTTPS_SERVER', 'https://67.18.52.66/~debbie');
__________________ Michael Sasek osCMax Developer
|
|
#5
| ||||
| ||||
| Quote:
__________________ Michael Sasek osCMax Developer
|
| Sponsored Links | ||
| ||
| |
| Thread Tools | |
| |
| ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| oscMax = cool, logging in? = can't do it. | [wicked] | osCMax v2 Installation issues | 1 | 08-09-2005 01:57 PM |
| Shipping quote without logging in | tommygunner | osCMax v1.7 Discussion | 1 | 04-20-2005 06:47 PM |
| problem logging in to admin on a recent development install | hedro | osCMax v1.7 Installation | 3 | 02-10-2005 02:06 AM |
| Problem with CheckOut, Creating New Accounts, and Logging in | Anonymous | osCMax v1.7 Discussion | 1 | 07-19-2004 08:09 AM |