Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

dakota259

Pioneers
  • Posts

    24
  • Joined

  • Last visited

Everything posted by dakota259

  1. Hi, since a couple of days I am not receiving confirmation mails from Paypal. When a customer makes an order and pays with paypal the first status is "Preparing [PayPal IPN]" And that's it. The stock isnt updated and there are no other status updates. But the money was received by paypal and I have got a mail in my mailbox from paypal.saysing that the money is on my account. How can i fix this? Any ideas? Are the fields required in the paypal module? I am not using a SSL - Your Public Certificate - PayPals Public Certificate - Your PayPal Public Certificate ID - Working Directory thanks for the support gp
  2. Hi, We are using "product_quickedit" already a long time, but now we are using it with "Google Chrome". When we want to edit a product, we click on the record, but "product_quickedit_info" is not activated. When we are doing the same in IE 9 there is no problem and we can edit the product in "product_quickedit_info". Who can help us with this problem? Thanks
  3. Hi, I am looking for a addon or a piece of code so I can achieve the same (almost) as in this link Explode view When the customer select a product there should be an image, a exploded view of this product. Than the customer has to click on the numbers of the exploded parts of the product to order these parts. Is thispossible? How can I achieve this? best regards, gp
  4. Hi, I have installed the PayPal Express module wich is delivered with osc. I have also created a test account in the paypal-sandcast. Everything works, but... When a customer has no paypal-account and wants to pay with his visacard (by using paypal express), then he has to give his phonenumber, address,... But he has already given these data, when he had created an account in the store. How can I override the phonenumber and the addresses in paypal? So that Paypal is using the addresses of the customer already given in osc? regards, gp
  5. Hi, I have installed MindSparx Admin 4.0, everything is ok. Now I have installed another add-on "FCK Edit shipping, conditions, privacy, contact us, index & about us pages from admin" 7255. The default language in the Admin section is English (I have 3 languages installed: English-Dutch-French) If you want to change for example the shipping page with addon 7255, you can also selected a language, then the page for that language is openend. But, here's the problem, the editor opens always the English pages. There's an interference between the language of the admin and the language for the editor. Can somebody help me? Thanx gp
  6. Hi, I have installed these add-ons: Maual Order Maker and Order Editor. These 2 work great. But when I make a new order or when I change an existing order, an email (with the new order details) is send to the customer. When the customer wants to pay with his credit card (or with paypal), than there should be a link to the payment method in this email. So that when he opens the mail, he can click on the paypal-link to compleet his new order and we receive the payment. Is this possible? thanx, gp
  7. Hi, I have done a reinstall of the addon, now the errorsare gone. But when I open the admin\shipping page there is a lot of source code on the screen. (previous post). And it isnt possible to install the request-module. g
  8. Hi Chris, I have installed this addon on a "fresh" catalog and it gives a lot of errors in the admin/shipping page: code = 'rfq2'; $this->title = MODULE_PAYMENT_RFQ2_TEXT_TITLE; $this->description = MODULE_PAYMENT_RFQ2_TEXT_DESCRIPTION; $this->sort_order = MODULE_PAYMENT_RFQ2_SORT_ORDER; $this->enabled = ((MODULE_PAYMENT_RFQ2_STATUS == 'True') ? true : false); if ((int)MODULE_PAYMENT_RFQ2_ORDER_STATUS_ID > 0) { $this->order_status = MODULE_PAYMENT_RFQ2_ORDER_STATUS_ID; } if (is_object($order)) $this->update_status(); $this->email_footer = MODULE_PAYMENT_RFQ2_TEXT_EMAIL_FOOTER; } // class methods function update_status() { global $order; if ( ($this->enabled == true) && ((int)MODULE_PAYMENT_RFQ2_ZONE > 0) ) { $check_flag = false; $check_query = tep_db_query("select zone_id from " . TABLE_ZONES_TO_GEO_ZONES . " where geo_zone_id = '" . MODULE_PAYMENT_RFQ2_ZONE . "' and zone_country_id = '" . $order->delivery['country']['id'] . "' order by zone_id"); while ($check = tep_db_fetch_array($check_query)) { if ($check['zone_id'] < 1) { $check_flag = true; break; } elseif ($check['zone_id'] == $order->delivery['zone_id']) { $check_flag = true; break; } } if ($check_flag == false) { $this->enabled = false; } } // disable the module if the order only contains virtual products if ($this->enabled == true) { if ($order->content_type == 'virtual') { $this->enabled = false; } } } function javascript_validation() { return false; } function selection() { return array('id' => $this->code, 'module' => $this->title); } function pre_confirmation_check() { return false; } function confirmation() { return false; } function process_button() { return false; } function before_process() { return false; } function after_process() { return false; } function get_error() { return false; } function check() { if (!isset($this->_check)) { $check_query = tep_db_query ("select configuration_value from " . TABLE_CONFIGURATION . " where configuration_key = 'MODULE_PAYMENT_RFQ2_STATUS'"); $this->_check = tep_db_num_rows ($check_query); } return $this->_check; } function install() { tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, date_added) values ('Enable Quote Order Module', 'MODULE_PAYMENT_RFQ2_STATUS', 'True', 'Do you want to accept Requests for Quotes?', '6', '1', 'tep_cfg_select_option(array(\'True\', \'False\'), ', now());"); tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, use_function, set_function, date_added) values ('Request for Quote Zone', 'MODULE_PAYMENT_RFQ2_ZONE', '0', 'If a zone is selected, only enable this request module for that zone.', '6', '2', 'tep_get_zone_class_title', 'tep_cfg_pull_down_zone_classes(', now())"); tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('For more info contact:', 'MODULE_PAYMENT_RFQ2_PAYTO', '', 'Who is the contact for quotations?', '6', '1', now());"); tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added) values ('Sort order of display.', 'MODULE_PAYMENT_RFQ2_SORT_ORDER', '0', 'Sort order of display. Lowest is displayed first.', '6', '0', now())"); tep_db_query("insert into " . TABLE_CONFIGURATION . " (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, set_function, use_function, date_added) values ('Set Order Status', 'MODULE_PAYMENT_RFQ2_ORDER_STATUS_ID', '0', 'Set the status of orders made with this payment module to this value', '6', '0', 'tep_cfg_pull_down_order_statuses(', 'tep_get_order_status_name', now())"); } function remove() { tep_db_query("delete from " . TABLE_CONFIGURATION . " where configuration_key in ('" . implode("', '", $this->keys()) . "')"); } function keys() { return array ('MODULE_PAYMENT_RFQ2_STATUS', 'MODULE_PAYMENT_RFQ2_ZONE', 'MODULE_PAYMENT_RFQ2_PAYTO', 'MODULE_PAYMENT_RFQ2_ORDER_STATUS_ID', 'MODULE_PAYMENT_RFQ2_SORT_ORDER'); } } ?> But I can't find the reason of this error. grt g
  9. Hi all, I the webshop I have 3 zones: Belgium, Europe and World with different rates depending on the weight. This is all going very well. Now I want that when the weight is over a 25kg, the customer can choose for a "request for a shipping quote". After I calculated the shipping cost and changed the order, an email must been send to the customer, so he can pay this order. When a customer is living in the zone "world", there should always be the possiblity "request for a shipping quote". I have already installed the add-on "REQUEST FOR QUOTE: Freight and International Shipping Quote Modules" (3735). But this add-on isn't working proberly. Can somebody get me going with this shipping problem? thx, gp
  10. Hi, Make a copy of flat.php to flat_world.php Change all the "flag" -words in the flag_world.php in "flag_world" Do a refresh of your admin window and you have 2 flat shipping rates in your shipping module. PS. you can copy the flat.php as many times as you like! cheers g
  11. Hi, when I click on "new order email" I get the following error: 1146 - Table 'spares.eorder_text' doesn't exist SELECT * FROM eorder_text where eorder_text_id = '1' and language_id = '4' [TEP STOP] Can somebody help me? Thx
×
×
  • Create New...