notquietdead Posted October 16, 2008 Posted October 16, 2008 Hello, I have a big problem with my os-commerce implementation. This is the situation: when a user make a payment, the url passed to my payment-provider (www.clickandbuy.com) is like this: [...]clickandbuy_check.php?price=4489&userid=5& TransactionID=XXXXX& check=XXXX& b_check=XXX& externalBDRID=XXXXXXXXXX& osCsid= 〈=XX &[... and so on] you can see that osCsid is empty! In fact, normally osCsid is not passed in url when user visit my website. I don't know if this is good. So, when clickandbuy call my website to check transaction, send an url like this: http://www.<name>.<dom>/catalo...ndbuy_check.php?[... various data...]&TransactionID=XXXXX&ZIP=XXXXX&b_check=XXX&check=XXXX&externalBDRID=XXXXXXXXXX〈=XX&osCsid=&price=XXXX&telefone=XXXXXXX&userid=XX osCsid is empty. I don't know if this can be issue of problem, anyway the check procedure fail. Other information: I made a porting from a web host to another: in first all ok, in last not! The only one difference (that I know for the moment) is that SSL was used in first, and not used in actual webserver. This is my config.php: define('HTTP_SERVER', 'http://www.<name>.<dom>'); define('HTTPS_SERVER', 'http://www.<name>.<dom>'); define('ENABLE_SSL', false); define('HTTP_COOKIE_DOMAIN', 'www.<name>.<dom>'); define('HTTPS_COOKIE_DOMAIN', 'www.<name>.<dom>'); define('HTTP_COOKIE_PATH', '/catalog/'); define('HTTPS_COOKIE_PATH', '/catalog/'); define('DIR_WS_HTTP_CATALOG', '/catalog/'); define('DIR_WS_HTTPS_CATALOG', '/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/'); define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/'); define('DIR_FS_CATALOG', '/home/<userId>/public_html/<name>/catalog/'); define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/'); define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/'); define('USE_PCONNECT', 'false'); define('STORE_SESSIONS', 'mysql'); Tnx in advance
Recommended Posts
Archived
This topic is now archived and is closed to further replies.