Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

HelleM

Pioneers
  • Posts

    238
  • Joined

  • Last visited

Everything posted by HelleM

  1. Okay I've verified on Paypal, installed/uploaded the http://www.oscommerce.com/community/contributions,2679 Paypal modul. Trying to read/understand this in the readme file that came with the contribution Your Private Key The location and filename of your private key to use for signing the order data. ?? Key, is that a password or?? Your Public Certificate The location and filename of your public certificate to use for signing the order data. Which file? PayPal's Public Certificate The location and filename of the PayPal public key to use for encrypting the order data. what file - get this from where? Your PayPal Public Certificate ID The public certificate ID that PayPal should use to decrypt the encrypted order data. ?? Which Went to my sandbox and got this: View or Remove API Signature Back to Profile Summary Credential: API Signature API Username: xxx.dk API Password: xxxxxxxxx Signature: xxxxxxxxxxx. Request Date: Jan. 10, 2007 12:50:59 PST 1) Also when I test - the Paypal screen takes over and I, playing the customer, feels I'm off the shop page. 2) Is there any way to STAY on the shop page or make paypal a popup thing??? 3) Also, as others have mentioned - the adress fields are not beeing sent to paypal 4) I get this error for a field once I'm on Paypals page: Enter Payment Information You have entered unsupported characters for this field. Current available language character types are: European, Chinese, Korean, Japanese, and Thai. Please try again. What error is that?? Helle *Sorry for asking a lot - english is not my main language*
  2. Hi Surfalot Small Images are set to 120 - height is set to nothing <?php echo tep_image(DIR_WS_CATALOG_IMAGES . $products_image_name, $pInfo->products_name, SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, 'align="right" hspace="5" vspace="5"') . $pInfo->products_description; ?> Helle
  3. has anybody solved the issue of having more attributes where some of them only are colors or sizes (attributtes that doesn't add cost?) Helle
  4. I had 13 dec 06 AJAX-AttributeManager-v2.3b-beta working fine for some time. Now I also have MVS installed, and now I cannot insert or update attribute prices?? I keep getting javascript error messages?? I have been looking and looking for differencies. The only thing I can see is that I have moved the Ajax code a bit down - right after the vendor price - can that be it? Helle :'( <td class="main"><?php echo TEXT_PRODUCTS_PRICE_GROSS; ?></td> <td class="main"><?php echo tep_draw_separator('pixel_trans.gif', '24', '15') . ' ' . tep_draw_input_field('products_price_gross', $pInfo->products_price, 'OnKeyUp="updateNet()"'); ?></td> </tr> <?php //MVS start ?> <tr bgcolor="#ebebff"> <td class="main"><?php echo TEXT_VENDORS_PRODUCT_PRICE_BASE; ?></td> <td class="main"><?php echo tep_draw_separator('pixel_trans.gif', '24', '15') . ' ' . tep_draw_input_field('vendors_product_price', $pInfo->vendors_product_price, 'onKeyUp="updateNet()"'); ?></td> </tr> <?php //MVS end ?> <!-- [email protected] - AJAX Attribute Manager --> <tr> <td colspan="2"><?php require_once( 'attributeManager/includes/attributeManagerPlaceHolder.inc.php' )?></td> </tr> <!-- [email protected] - AJAX Attribute Manager end --> <tr>
  5. To Ron I can send you a copy of my orders.php - then you can use a compare program to see any diffirencies....? Send me a personal message if you are interested? Helle :-)
  6. kymation: This is the diffence between my original order.php and your mods. If I use your code all prices are gone from the invoice and all left is a x where product name should have been and 0 in all price fields. And of course I would really like to use your code. Is the something missing from the code inside admin/classes/order.php that removes prices. ?? //MVS Start $orders_shipping_id = ''; $check_new_vendor_data_query = tep_db_query("select orders_shipping_id, orders_id, vendors_id, vendors_name, shipping_module, shipping_method, shipping_cost, vendor_order_sent from " . TABLE_ORDERS_SHIPPING . " where orders_id = '" . (int)$order_id . "'"); while ($checked_data = tep_db_fetch_array($check_new_vendor_data_query)) { $this->orders_shipping_id = $checked_data['orders_shipping_id']; //$orders_vendor_name = $checked_data['vendors_name']; } if (tep_not_null($this->orders_shipping_id)) { /* MVS $Id: vendor_order_data.php By Craig Garrison Sr. ([email protected]) for Multi-Vendor Shipping osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2005 osCommerce Released under the GNU General Public License */ $index2 = 0; //let's get the Vendors $vendor_data_query = tep_db_query("select orders_shipping_id, orders_id, vendors_id, vendors_name, shipping_module, shipping_method, shipping_cost, shipping_tax, vendor_order_sent from " . TABLE_ORDERS_SHIPPING . " where orders_id = '" . (int)$order_id . "'"); while ($vendor_order = tep_db_fetch_array($vendor_data_query)) { $this->products[$index2] = array('Vid' => $vendor_order['vendors_id'], 'Vname' => $vendor_order['vendors_name'], 'Vmodule' => $vendor_order['shipping_module'], 'Vmethod' => $vendor_order['shipping_method'], 'Vcost' => $vendor_order['shipping_cost'], 'Vship_tax' => $vendor_order['shipping_tax'], 'Vorder_sent' => $vendor_order['vendor_order_sent'], //a yes=sent a no=not sent 'Vnoname' => 'Shipper', 'spacer' => '-'); $index = 0; $orders_products_query = tep_db_query("select orders_products_id, products_name, products_model, products_price, products_tax, products_quantity, final_price, vendors_id from " . TABLE_ORDERS_PRODUCTS . " where orders_id = '" . (int)$order_id . "' and vendors_id = '" . (int)$vendor_order['vendors_id'] . "'"); while ($orders_products = tep_db_fetch_array($orders_products_query)) { $this->products[$index2]['orders_products'][$index] = array('qty' => $orders_products['products_quantity'], 'name' => $orders_products['products_name'], 'tax' => $orders_products['products_tax'], 'model' => $orders_products['products_model'], 'price' => $orders_products['products_price'], 'vendor_name' => $orders_products['vendors_name'], 'vendor_ship' => $orders_products['shipping_module'], 'shipping_method' => $orders_products['shipping_method'], 'shipping_cost' => $orders_products['shipping_cost'], 'final_price' => $orders_products['final_price'], 'spacer' => '-'); //MVS end $subindex = 0; $attributes_query = tep_db_query("select products_options, products_options_values, options_values_price, price_prefix from " . TABLE_ORDERS_PRODUCTS_ATTRIBUTES . " where orders_id = '" . (int)$order_id . "' and orders_products_id = '" . (int)$orders_products['orders_products_id'] . "'"); if (tep_db_num_rows($attributes_query)) { while ($attributes = tep_db_fetch_array($attributes_query)) { $this->products[$index2]['orders_products'][$index]['attributes'][$subindex] = array('option' => $attributes['products_options'], 'value' => $attributes['products_options_values'], 'prefix' => $attributes['price_prefix'], 'price' => $attributes['options_values_price']); $subindex++; } } $index++; } $index2++; } } else { // old order, use the regular osC data //MVS End
  7. Does anybody have a solution to: When I want to print out invoice from admin - the product, model, tax and all price fields are emty!! The below line: sub-totals, freight, totals and tax are showing fine? How can I get the invoice to show what products the customer bought? I need to print out these information to my "tax examiner" (don't know the correct word) *s* It seems I'm not alone with this issue - ronr1999 is having the same problem?? Are we the only ones? Now for something else: I sell digital downloads, and created a vendor that ONLY have free shipping. Then I discovered to my horror, if you order in Danish currency - no problem, but if you order in another - wooow - then it cost money?? This is my currencies right now: DKK (standard) DKK 1.00000000 EUR 0.13420001 GBP 0.09034000 USD 0.17600000 When using FREE shipping for one vendor it seems the currency values somehow get mixed up? See how similar they are?? This is currently the only shipping method available to use on this order. (the same order on checkout_shipping.php - I just kept changing the currency) Free Shipping - No charge EUR 1.34 Free Shipping - No charge USD 1.76 Free Shipping - No charge DKK 0,00 Free Shipping - No charge GBP 9.03 I changed the vendors shipping method to Per Item and also tried the Flat Rate - no problem. But it would be nice if it said "Free Shipping" to the customer........? Can somebody tell me what's happening?
  8. Did anyone ever get it to work with "WYSIWYG HTMLArea FOR PRODUCT DESCRIPTIONS v1.7" - I read nigecon question earlier - and it seems he never got an answer?? Please Helle :-)
  9. Think I found a small bug *or maybe I'm the 'bug* *lol* When in Danish, the top bar, breadcrum, changes language in the 4' link.... Forside » Butik » Produkt artikler » A Tiny Book about "Matador" It should be in Danish all the way like: Forside » Butik » Produkt artikler » En lille bog om "Matador" This is the english version (just to show you) which works fine Top » Catalog » Product articles » A Tiny Book about "Matador" is it me - or is something missing in the translation code? Helle :-)
  10. I've been reading and reading - must be going blind. Think I saw the solution in here - or maybe not? When I want to print out invoice from admin - the product, model, tax and all price fields are emty!! The below line: sub-totals, freight, totals and tax are showing fine? How can I get the invoice to show what products the customer bought? I need to print out these information to my "tax examiner" (don't know the correct word) *s* Helle
  11. Unfortunately it doesn't work. Can you think of any other ideas *please* Helle :-)
  12. Hi again Well, the More Picts code say SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, I tried to fighure out how to "divide" the size like SMALL_IMAGE_WIDTH/3 But it didn't work though. Is there a special way to divide in PHP? Helle :-)
  13. Hi Surfalot I got it *ss* - I grouped the images in admin and in product_info.php I changed this; $mopics_image_width = (MOPICS_RESTRICT_IMAGE_SIZE=='true'?SMALL_IMAGE_WIDTH*1.5:''); $mopics_image_height = (MOPICS_RESTRICT_IMAGE_SIZE=='true'?SMALL_IMAGE_HEIGHT*1.5:''); That way, my small images are a little bigger than when you see them in the right or left column. The site is still running like a test site, but if you want too, you can see how it looks from here: Test site page with more picts I know this next question may be out of this Forum, but is it possible to make the image preview a bit smaller when I finish edit a products and hit "Preview" the images on that next page are full size and it easily becomes messy? You know what I mean? Helle :-)
  14. Is it possible to make the thumbnails on the product_info page a little bigger, when the setup is like this: Show All MorePics on Product Info page - true Group parent image with sub-images - false Use SMALL_IMAGE_ Restrictions - true Restrict parent image size - true Table Alignment - right Table Location - below Number of Columns - 1 Number of Rows - 6 I use Images Magic too, and if I change the "Product Information Image Width", it also changes the image size in the reviews box and more "unwanted" places Alex gave me this advise - and it works: #3: In html_output.php, - Find the following code: if (strstr($_SERVER['PHP_SELF'],"product_info.php")) { - Change it for if (strstr($_SERVER['PHP_SELF'],"product_info.php") && isset($in_product_info_block) & $in_product_info_block) { This did the trick - to get my pictures bigger on the product_info.php page - and no where else! I also put this in the product_info.php page SMALL_IMAGE_WIDTH*1.5, SMALL_IMAGE_HEIGHT*1.5 But when the More Picts is set up my way - all the exstra images are small. I would so like them to be *1.5 too. Anybody knows where to look and change images code?? Helle :-)
  15. I have two languages - if a review is written and approved in one language, the counter for reviews on the product_info.php page shows fine, but unfortunately also on the "other" language, which must be a mistake.... How can I solve this? Helle :-)
  16. I may have found a solution to the download file problem. In the "Zero Weight Skips Shipping" contrib I found this bit of code - then I created a new vendor, without any shipping options - then it worked. It doesn't skip the shipping page, which would have been great, but the shipping is free of charge as I so needed it to be. _________________________________________________ Very simple, in 'checkout_shipping.php' find the lines here: // if the order contains only virtual products, forward the customer to the billing page as // a shipping address is not needed if (($order->content_type == 'virtual') || ($order->content_type == 'virtual_weight')) { if (!tep_session_is_registered('shipping')) tep_session_register('shipping'); $shipping = false; $sendto = false; tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, '', 'SSL')); } $total_weight = $cart->show_weight(); $total_count = $cart->count_contents(); and replace them with this: // IFD BEGIN: zero weight should skip shipping page $total_weight = $cart->show_weight(); $total_count = $cart->count_contents(); // if the order contains only virtual products, forward the customer to the billing page as // a shipping address is not needed if (($order->content_type == 'virtual') || ($order->content_type == 'virtual_weight') || ($total_weight == 0 )) { if (!tep_session_is_registered('shipping')) tep_session_register('shipping'); $shipping = false; $sendto = false; tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, '', 'SSL')); } // IFD END Note: I only use this bit: // new code IFD BEGIN: zero weight should skip shipping page $total_weight = $cart->show_weight(); $total_count = $cart->count_contents(); if anybody out there has a better solution - I'm ALL ear Helle :-)
  17. I've searching and searching for what's wrong. At first I thought it was a weight issue, but it's not. It's whenever there's a download file attached to the product! Has any of you tried this too ? If so, or if you have an idea how to solve this major problem - I would be VERY greatful. My site consist of many download files - so this is a MAJOR problem for me. Please Helle :(
  18. Hi Jim The idea of setting up free shipping sounded like a good idea, but it doesn't work either. I also tried 0 weight in shipping per item - nope! If I buy two items, one from the vendor with 0 shipping cost and another item from another vendor at the same time that has a a weight - every thing works. Please, this otherwise great contribution, one simply MUST be able to buy downloads. Can anybody tell me a solution. It is very important to me...... Helle :(
  19. Thanks I'll give it go tomorrow.... Helle :-)
  20. Hi Tom - sorry for the late answer.... I tried that, but then the images in the colunm under reviews also were bigger.... Helle :-)
  21. Hi Finally got it to work *pyyy* But now - my electronic downloads don't work anymore? They of course have a weight at "0" and I believe I've tried my best, but the checkout_shipping.php will ONLY work if the product has some kind of weight? I used to use "Free Shipping with Zero Weight" without any problems. Also tried to merge the differencies with WinMerge - no luck.... What do I do - I hope I'm not the only person with file download for sale? Helle :'(
  22. Thanks for the fast reply.... I'll save your solution - because last night I changed the GIF arrows to text. Later though i will try and use your advice Helle :-)
  23. Okay - it's up and running..... working fine with Image magic. This only thing I cannot get to work is when you click on a thumbnail - there's no small images for "next and previous" I have tried the solution in the 29/11/06 version and the 10/04/06 solution - none of them work! I have dobble chekked that the two image files ARE in fact uploaded to my server, and is in the folder images/ - and they are.... What am I doing wrong? Helle :-)
  24. Hi Dj I just installed ORDERS AT-A-GLANCE 4.1 It works fine - but it gives me java script errors on edit_orders.php which also have tool tips ? Can this be fixed? Helle :-) PS: I've renamed dhtmltooltip to dhtmltooltip2 on the edit_orders.php page - is that a good way to solve this?
×
×
  • Create New...