Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

magicandmischief182

Pioneers
  • Posts

    179
  • Joined

  • Last visited

Everything posted by magicandmischief182

  1. I called them. And they updated it right then and there. Thanks!
  2. I just installed USPS Shipping Methods http://addons.oscommerce.com/info/487/ And I get the error "United States Postal Service United States Postal Service An error occured with the USPS shipping calculations. If you prefer to use USPS as your shipping method, please contact the store owner." On the shipping selection page. I've contacted USPS at [email protected] to tell them to make my account a production server (or whatever it's called). So do I just need to wait on them to allow me to do so? Also here's a screen shot of the install after I hit the "edit" button. Shouldn't I be able to choose between "Test" and "Production" servers? Thanks, Jeffrey PS I know there isn't a User ID & Password.......
  3. Any update on this? I also noticed that when an order comes through there is no information only a total and a date, when you click on the order the shipping and billing address are filled in but the customer, phone number, and email address fields are empty.
  4. Anyone else getting the "There was an error setting payment method, please inform IT Web Experts about this error." when you click the credit card as your payment option? Also I noticed when you click paypal as your payment option the credit card slot where your info goes disappears and when you click the credit card it doesn't pop back up unless you refresh the page.
  5. The zip folder for the Oscommerce 2.2 non RCa is empty. http://addons.oscommerce.com/info/4129 So I was seeing if anyone else happens to have the zip folder or all of the files before they were updated to the RCa format. Thanks, Jeffrey
  6. After I did all the steps I get this error, can anyone help out? Fatal error: error traversing database - perhaps it is corrupt? in public_html/oscommerce/includes/geoip.inc on line 416 Thanks Jeffrey
  7. So there are still some unresolved issues with this. The first one that is a majorly important one for me is that not all the products with the pricematch feature work when you click the link to fill out the form. I've checked to see if form conflicts with a special or free shipping but it doesn't. Basically sometimes it works, sometimes it doesn't. Simple as that. The second issue, which isn't too big of a concern for right now is that when you click the form, if a product is on special it still uses the higher price in the form. Those are the major issues i've run into thus far. Any help will be greatly appreciated. Jeffrey
  8. I just added the free shipping by categories: http://addons.oscommerce.com/info/4475 and I'm getting this error "Call to undefined function tep_draw_pull_multiselect_menu() in /home/alex/public_html/oscommerce/admin/includes/functions/general.php on line 1411" when I tried to edit the properties from the admin side. Any help would be grateful! Thanks!
  9. Is it possible to make the site search not search in the files? If a customer searches on my website they get the following "Products meeting the search criteria" and "Files found meeting the search criteria". So is it possible just to search in the Products so that it doesn't slow down the search wait time. Thanks, Jeff
  10. I have a discount coupon code on my website and it works fine.
  11. I have the discount coupon codes and another paypal module that doesn't have the paypal_standard.php and everything worked fine.
  12. Where exactly was the error for the shipping problems? They didn't really give much insight if you were just updating the version. Also did this fix the problem with there not being anything in the Customer Info section?
  13. That does solve the one problem with the shipping already being highlighted as the lowest shipping charge and not adding it to the total price. BUT It does not solve the issue with this scenario: If a customer adds something to car, clicks the shipping method (shipping price "A"), then empties the cart, and adds another (different/same) item to the cart the shipping price "A" is already factored into the final price without them selecting a shipping method. This isn't two big of a deal but I know a lot of my customers like to see how much overnight shipping is then if they empty their cart and try to purchase something else they might be turned away without even realizing that the shipping could be cheaper.
  14. I also noticed they are using flat rate on his shipping for the test website.
  15. Awesome contribution! I like everything, and I have read through this entire Support Thread and still haven't found the answer to Johnny's questions. The most important issues to me are the shipping one. If you do change the shipping method from one to another it updates it and charges that price. BUT if you change and update the shipping method like above, remove the items from the basket then you add another product it will charge you the previous shipping price from the item you just removed from your cart. UNLESS you change the shipping options from 2nd day air to ground (just an example). Hopefully we can get this resolved because I know my customers will love this contribution!
  16. In order to use the Backup Manager and I supposed to download the .sql file on my website that is created when I hit "backup" and upload it to the PHP admin?
  17. Specifically I'm having trouble understanding this: In the same function, in the $this->info array, " $this->info = array('currency' => $order['currency'], 'currency_value' => $order['currency_value'], ................................... " add some lines, to look like this: " $this->info = array('order_id' => $order_id, 'currency' => $order['currency'], 'currency_value' => $order['currency_value'], ......................................................
  18. I'm having trouble on the order.php edit. Can someone please clarify theses steps: iii) admin/includes/classes/order.php In function "function query($order_id) {" modify the line: $order_query = tep_db_query("select customers_name, customers_company, customers_street_address, customers_suburb, customers_city, customers_postcode, customers_state, customers_country, o.customers_telephone, o.customers_email_address, customers_address_format_id, delivery_name, delivery_company, delivery_street_address, delivery_suburb, delivery_city, delivery_postcode, delivery_state, delivery_country, delivery_address_format_id, billing_name, billing_company, billing_street_address, billing_suburb, billing_city, billing_postcode, billing_state, billing_country, billing_address_format_id, payment_method, cc_type, cc_owner, cc_number, cc_expires, currency, currency_value, date_purchased, orders_status, last_modified from " . TABLE_ORDERS . " o left join " . TABLE_CUSTOMERS . " using(customers_id) where orders_id = '" . (int)$order_id . "'"); add "customers_id, customers_fax," in fields retrieval list. In the same function, under line: $totals_query = tep_db_query("select title, text from " . TABLE_ORDERS_TOTAL . " where orders_id = '" . (int)$order_id . "' order by sort_order"); Add the following lines: $order_total_query = tep_db_query("select text from " . TABLE_ORDERS_TOTAL . " where orders_id = '" . (int)$order_id . "' and class = 'ot_total'"); $order_total = tep_db_fetch_array($order_total_query); $shipping_method_query = tep_db_query("select title,value from " . TABLE_ORDERS_TOTAL . " where orders_id = '" . (int)$order_id . "' and class = 'ot_shipping'"); $shipping_method = tep_db_fetch_array($shipping_method_query); In the same function, in the $this->info array, " $this->info = array('currency' => $order['currency'], 'currency_value' => $order['currency_value'], ................................... " add some lines, to look like this: " $this->info = array('order_id' => $order_id, 'currency' => $order['currency'], 'currency_value' => $order['currency_value'], ...................................................... 'total' => strip_tags($order_total['text']), 'shipping_method' => ((substr($shipping_method['title'], -1) == ':') ? substr(strip_tags($shipping_method['title']), 0, -1) : strip_tags($shipping_method['title'])), 'shipping_cost' => strip_tags($shipping_method['value'])); " In the same function, in the $this->customer array, " $this->customer = array('name' => $order['customers_name'], 'company' => $order['customers_company'], ...................................................... " add some lines to look like this: $this->customer = array('id' => $order['customers_id'], 'name' => $order['customers_name'], 'company' => $order['customers_company'], ...................................................... 'fax' => $order['customers_fax']) /////warehouse location as custom fields In the same function, see the following line: $orders_products_query = tep_db_query("select orders_products_id, products_name, products_model, products_price, products_tax, products_quantity, final_price from " . TABLE_ORDERS_PRODUCTS . " where orders_id = '" . (int)$order_id . "'"); add the following field to it: "products_warehouse_location " in field list In the same function, in the $this->products[$i] array, add some lines, so from: " while ($orders_products = tep_db_fetch_array($orders_products_query)) { $this->products[$index] = array('qty' => $orders_products['products_quantity'], 'name' => $orders_products['products_name'], ...................................................... " should have this: " while ($orders_products = tep_db_fetch_array($orders_products_query)) { $this->products[$index] = array('qty' => $orders_products['products_quantity'], 'name' => $orders_products['products_name'], ...................................................... 'products_warehouse_location' => $orders_products['products_warehouse_location'] ); "
  19. So I added everything, and followed the instructions verbatim. And I got this error: Fatal error: Call to undefined function tep_hide_session_id() in /home/alex/public_html/oscommerce/admin/all_customers.php on line 122 So I removed: <?php echo tep_draw_form('news_date', FILENAME_ALL_CUSTOMERS, '', 'get') . tep_draw_hidden_field('process_form', 'process_form') . tep_hide_session_id(); ?> And now it appears to be like it should be but when I hit submit query it doesn't do anything. I'm only running MS2.2 not RCA if that matters. Edit: fixed it my deleting the ". tep_hide_session_id();" Edit: New problem, when I go to save csv it goes to a blank page.
  20. I did test it, and all I did was put the product search in the title, hit submit and it automatically emailed me. As far as I can tell I'm using the latest version.
×
×
  • Create New...