Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

ssoeb

Pioneers
  • Posts

    116
  • Joined

  • Last visited

Profile Information

  • Real Name
    soeb
  • Gender
    Male
  • Location
    India
  • Interests
    sports, reading , travelling

ssoeb's Achievements

  1. ssoeb

    Sage Pay Server

    @@Harald Ponce de Leon Hi Sir, Any update regarding Sage Pay Server for 2.2rc2a? Awaiting response.
  2. ssoeb

    Sage Pay Server

    Hi sir, Any update regarding Sage Pay Server for 2.2rc2a?
  3. Hi, I have recieved email from amazon to upgrade current code with new one. https://payments.amazon.co.uk/help?nodeId=201033780 Can you tell me have you planning to upgrade current oscommerce module?
  4. Thankyou for responding, I have a problem that i cannot getting any notifications from amazon. I have to manage my orders via sellercentral. Any suggestions?
  5. First Thankyou for amazon inline module. I have successfully integrate it with oscommerce. My question is How to integrate checkout by amazon logo on oscommerce sidebox?
  6. ssoeb

    Sage Pay Server

    @@Harald Ponce de Leon Hi Sir, Thank you for updating version of sagepay server. I have tested Sage Pay Server v1.2. This version is working very well with default oscommerce2.3.3 but it is not working with default oscommerce 2.2rc2a. My store is running on oscommerce 2.2rc2a. Any further suggestions?
  7. ssoeb

    Sage Pay Server

    @@Harald Ponce de Leon Hi sir, Thanks for your support. I have uploaded file which you have attached and reinstalled it from admin panel, but unfortunately same result i got as before. Any further suggestions?
  8. ssoeb

    Sage Pay Server

    @@Harald Ponce de Leon Hi again sir, I have also test it in default oscommerce2.3.3 and got same error as before. what can i do?
  9. ssoeb

    Sage Pay Server

    @@Harald Ponce de Leon Hi Sir, I have upload clean oscommerce 2.2rc2a in same server in test folder with different database as you suggested. Unfortunately i have got same error as on live. HTTP Status Code: 500 HTTP Status Message:The request was unsuccessful due to an unexpected condition encountered by the server. Error Code : 5006 Error Description : Unable to redirect to Vendor's web site. The Vendor failed to provide a RedirectionURL. I have question if is due to any setting on server or module error or something else. How can come over this situation? I have search many post to get any solution but not succeeded. Any further suggestions?
  10. ssoeb

    Sage Pay Server

    @@Harald Ponce de Leon Sir, If i am not wrong this code is replace '&amp' with '&' in url. But in my case NotificationURL is already has & instead of &amp like below. any further suggestion. Awaiting response. Thanks and Regards Soeb Shaikh Ecommerce Department Email : [email protected] Perceptionsystem Pvt. Ltd. http://www.xxx.co.uk/checkout_process.php?check=SERVER&osCsid=4b35f00ce9eeed27c3ee0e34cf2c68e4
  11. ssoeb

    Sage Pay Server

    @@Harald Ponce de Leon Hi Sir, My store is running on oscommerce 2.2rc2a. I have installed several contribtions like onepage checkout, seo urls etc. I have also installed sagepay server payment module. It is installed and redirect me to sagepay. but after providing card details it is not processing its give me following errors. HTTP Status Code: 500 HTTP Status Message: The request was unsuccessful due to an unexpected condition encountered by the server. Error Code : 5006 Error Description : Unable to redirect to Vendor's web site. The Vendor failed to provide a RedirectionURL. below are my posted variables to sagepay [VPSProtocol] => 2.23 [ReferrerID] => C74D7B82-E9EB-4FBD-93DB-76F0F551C802 [Vendor] => hunterswholesal [VendorTxCode] => 20120831130748-6589- [Amount] => 18.72 [Currency] => GBP [Description] => Hunters Wholesalers [NotificationURL] => http://www.xxx.co.uk/checkout_process.php?check=SERVER&osCsid=4b35f00ce9eeed27c3ee0e34cf2c68e4 [billingSurname] => STEPHENS [billingFirstnames] => MARK ANDREW STEPHENS [billingAddress1] => 1 The Close [billingCity] => BRISTOL [billingPostCode] => BS34 6BB [billingCountry] => GB [billingPhone] => 9898989898 [DeliverySurname] => STEPHENS [DeliveryFirstnames] => MARK ANDREW STEPHENS [DeliveryAddress1] => 1 The Close [DeliveryCity] => BRISTOL [DeliveryPostCode] => BS34 6BB [DeliveryCountry] => GB [DeliveryPhone] => 9898989898 [CustomerEMail] => [email protected] [Apply3DSecure] => 0 I have asked sagepay but they are unable to help. I want sagepay working on my site. any suggestion to work it? Awaiting response. Thanks and Regards Soeb Shaikh Ecommerce Department Email : [email protected] Perceptionsystem Pvt. Ltd.
  12. Hi jack, I want to integrate easy map on contact us page. How can this be done ? soeb
  13. hello, This module can run without one_page_checkout.php(it is not compulsory) In /home/bbhyd/public_html/oscommerce/includes/modules/shipping/indvship.php, function indvship() may be declared more then one,remove additional. if problem continues , pls reply.
  14. Hi, There is a instruction in contribution name- 'How_To_Install_individual_shipping_4.5.txt'. In that file find '/catalog/admin/categories.php'. then find if (USE_CACHE == 'true') { tep_reset_cache_block('categories'); tep_reset_cache_block('also_purchased'); } but there is more then 1 statement like this on categories.php You have to find - if ($action == 'insert_product') { $insert_sql_data = array('products_id' => $products_id, 'language_id' => $language_id); $sql_data_array = array_merge($sql_data_array, $insert_sql_data); tep_db_perform(TABLE_PRODUCTS_DESCRIPTION, $sql_data_array); } elseif ($action == 'update_product') { tep_db_perform(TABLE_PRODUCTS_DESCRIPTION, $sql_data_array, 'update', "products_id = '" . (int)$products_id . "' and language_id = '" . (int)$language_id . "'"); } } after above statement you have to insert // start indvship $sql_shipping_array = array('products_ship_zip' => tep_db_prepare_input($_POST['products_ship_zip']), 'products_ship_methods_id' => tep_db_prepare_input($_POST['products_ship_methods_id']), 'products_ship_price' => round(tep_db_prepare_input($_POST['products_ship_price']),4), 'products_ship_price_two' => round(tep_db_prepare_input($_POST['products_ship_price_two']),4)); $sql_shipping_id_array = array('products_id' => (int)$products_id); $products_ship_query = tep_db_query("SELECT * FROM " . TABLE_PRODUCTS_SHIPPING . " WHERE products_id = " . (int)$products_id); if(tep_db_num_rows($products_ship_query) >0) { if (($_POST['products_ship_zip'] == '')&&($_POST['products_ship_methods_id'] == '')&&($_POST['products_ship_price'] == '')&&($_POST['products_ship_price_two'] == '')){ tep_db_query("DELETE FROM " . TABLE_PRODUCTS_SHIPPING . " where products_id = '" . (int)$products_id . "'"); } else { tep_db_perform(TABLE_PRODUCTS_SHIPPING, $sql_shipping_array, 'update', "products_id = '" . (int)$products_id . "'"); } } else { if (($_POST['products_ship_zip'] != '')||($_POST['products_ship_methods_id'] != '')||($_POST['products_ship_price'] != '')||($_POST['products_ship_price_two'] != '')){ $sql_ship_array = array_merge($sql_shipping_array, $sql_shipping_id_array); tep_db_perform(TABLE_PRODUCTS_SHIPPING, $sql_ship_array, 'insert'); } } // end indvship enjoy :thumbsup:
  15. please follow the manual installation.txt, also put ajax_onchange_price.php in your root folder where product_info.php is situated. i have tested also in osc2.3.1. and it will running nicely.
×
×
  • Create New...