Results 1 to 5 of 5

Tax Error and Logging in Problem

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 ...

      
  1. #1
    New Member
    Join Date
    Nov 2004
    Posts
    6
    Rep Power
    0


    Default Tax Error and Logging in Problem

    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

  2. #2
    osCMax Developer

    michael_s's Avatar
    Join Date
    Jul 2002
    Location
    Phoenix, AZ
    Posts
    20,759
    Rep Power
    573


    Default RE: Tax Error and Logging in Problem

    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


    osCmax Installation Service
    - Have our professionals install osCmax on your server - same day service!
    osCmax 2.5 User Manual - the must have beginners guide to osCmax v2.5

    Stay Up To Date with everything osCMax:
    Free osCmax Newsletters - Security notices, New Releases, osCMax News
    osCmax on Twitter - Up to the minute info as it happens. Know it first.

    osCmax Documentation

  3. #3
    New Member
    Join Date
    Nov 2004
    Posts
    6
    Rep Power
    0


    Default RE: Tax Error and Logging in Problem

    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. #4
    osCMax Developer

    michael_s's Avatar
    Join Date
    Jul 2002
    Location
    Phoenix, AZ
    Posts
    20,759
    Rep Power
    573


    Default

    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/');
    It should be:

    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/');
    You also need to change this:
    Code:
    define('HTTPS_SERVER', 'https://67.18.52.66');
    to this:
    Code:
    define('HTTPS_SERVER', 'https://67.18.52.66/~debbie');
    Michael Sasek
    osCMax Developer


    osCmax Installation Service
    - Have our professionals install osCmax on your server - same day service!
    osCmax 2.5 User Manual - the must have beginners guide to osCmax v2.5

    Stay Up To Date with everything osCMax:
    Free osCmax Newsletters - Security notices, New Releases, osCMax News
    osCmax on Twitter - Up to the minute info as it happens. Know it first.

    osCmax Documentation

  5. #5
    osCMax Developer

    michael_s's Avatar
    Join Date
    Jul 2002
    Location
    Phoenix, AZ
    Posts
    20,759
    Rep Power
    573


    Default

    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?
    You should look at those 2 orders and figure out what is different about them from all the others. Then start looking at your configuration. If everything was setup fine, you would not be getting this problem.
    Michael Sasek
    osCMax Developer


    osCmax Installation Service
    - Have our professionals install osCmax on your server - same day service!
    osCmax 2.5 User Manual - the must have beginners guide to osCmax v2.5

    Stay Up To Date with everything osCMax:
    Free osCmax Newsletters - Security notices, New Releases, osCMax News
    osCmax on Twitter - Up to the minute info as it happens. Know it first.

    osCmax Documentation

Similar Threads

  1. oscMax = cool, logging in? = can't do it.
    By [wicked] in forum osCmax v2 Installation issues
    Replies: 1
    Last Post: 08-09-2005, 01:57 PM
  2. Shipping quote without logging in
    By tommygunner in forum osCmax v1.7 Discussion
    Replies: 1
    Last Post: 04-20-2005, 06:47 PM
  3. problem logging in to admin on a recent development install
    By hedro in forum osCMax v1.7 Installation
    Replies: 3
    Last Post: 02-10-2005, 02:06 AM
  4. Problem with CheckOut, Creating New Accounts, and Logging in
    By Anonymous in forum osCmax v1.7 Discussion
    Replies: 1
    Last Post: 07-19-2004, 08:09 AM

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
  •