Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

playcraft

Pioneers
  • Posts

    200
  • Joined

  • Last visited

Profile Information

  • Real Name
    Legend
  • Gender
    Male
  • Location
    USA

Recent Profile Visitors

17,948 profile views

playcraft's Achievements

  1. Shipping address line 2 is omitted in ext modules express_payflow.php file. (http://addons.oscommerce.com/info/5657) After line 182: $ship_address = tep_db_prepare_input($response_array['SHIPTOSTREET']); add: $ship_address2 = tep_db_prepare_input($response_array['SHIPTOSTREET2']); Change line 208: From: $check_query = tep_db_query("select address_book_id from " . TABLE_ADDRESS_BOOK . " where customers_id = '" . (int)$customer_id . "' and entry_firstname = '" . tep_db_input($ship_firstname) . "' and entry_lastname = '" . tep_db_input($ship_lastname) . "' and entry_street_address = '" . tep_db_input($ship_address) . "' and entry_postcode = '" . tep_db_input($ship_postcode) . "' and entry_city = '" . tep_db_input($ship_city) . "' and (entry_state = '" . tep_db_input($ship_zone) . "' or entry_zone_id = '" . (int)$ship_zone_id . "') and entry_country_id = '" . (int)$ship_country_id . "' limit 1"); To: $check_query = tep_db_query("select address_book_id from " . TABLE_ADDRESS_BOOK . " where customers_id = '" . (int)$customer_id . "' and entry_firstname = '" . tep_db_input($ship_firstname) . "' and entry_lastname = '" . tep_db_input($ship_lastname) . "' and entry_street_address = '" . tep_db_input($ship_address) . "' and entry_suburb = '" . tep_db_input($ship_address2) . "' and entry_postcode = '" . tep_db_input($ship_postcode) . "' and entry_city = '" . tep_db_input($ship_city) . "' and (entry_state = '" . tep_db_input($ship_zone) . "' or entry_zone_id = '" . (int)$ship_zone_id . "') and entry_country_id = '" . (int)$ship_country_id . "' limit 1"); Add after line 217: 'entry_suburb' => $ship_address2, Add after line 416: $params['SHIPTOSTREET2'] = urlencode($order->delivery['suburb']);
  2. The Payflow module has issues with retrying credit cards and different Paypal accounts for the same shopping cart, session id, etc. I would recommend the $request_id be changed to include the token for Paypal Express checkout and for the regular payment pro checkout the $post_string should be hashed and tacked onto $request_id. Otherwise, the customer will be hit with the DUPLICATE flag, causing a false positive.
  3. hi playcraft,

    i am looking for a multiple shop addon, that'll make my planned shop like ebay or Amazon marketplace.

    will this add-on do that? anyone can sign on setup a shop. and others can come to buy. would i have to do a lot of tweaking?

    well there's alot to it. just a plan/thought. are you for hire? how much would you charge to modify osCommerce into...

  4. I would recommend installing the latest patch to this contribution as there is an exploit that allows anyone to access the admin side without actually logging in. See http://addons.oscommerce.com/info/1730.
  5. In the process of planning a big collaboration Project.

  6. What are the exact steps to replicate this? I cannot seem to replicate it.
  7. What is on line 312 of your application_top.php file?
  8. I would start by searching fedex in the add-on section.
  9. Excellent job keeping the forums running smoothly.

  10. Check your margin setting on your browser (page setup).
  11. Uncomment in ship_fedex.php //$update_status = array ('orders_status' => 3); //tep_db_perform(TABLE_ORDERS, $update_status, 'update', "orders_id = '" . $order . "'");
  12. You can add substr() to the shipper company variable (ex. substr($company, 0, 35)).
  13. You might want to make a backup of your backup. I would make a subdomain for testing your migration process. You cannot restore a database file through oscommerce without oscommerce being installed. So the way to go about this is run you sql file in phpmyadmin (make sure you use the same login credentials as your old database). Then upload your backup files.
  14. Your product info (aside from the images) are stored in a database.
  15. Do you have your database file?
×
×
  • Create New...