Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

albundy

Pioneers
  • Posts

    24
  • Joined

  • Last visited

Profile Information

  • Real Name
    marcel

albundy's Achievements

  1. great contribution. Will there also come a automatic newsletter / new products module for this contribution. A module which sends ones every x days/weeks/month a update newsletter on whats new in the shop? ofcource text and pictures in the mail....
  2. Very nice added on for oscommerce and other related shoppingsoftware. A suggestion for a module i'm missing is a kind of automatic newsletter which sends ones every xx days and gives a update of x new products added tot online shop.
  3. i'm trying again; i use the latest version of paypal-ipn 2.3.4.6 everything works fine accept for attributes/options i use two options for every article one for color and one for size. when people place the order and pay with paypal-ipn these options are no longer available in the order and in the database. For some reason paypal-ipn delete this information for the order. I can't figure out what's wrong. If somebody can help me please! because now i have to ask every customer what color and size they have order. Thank you for the help Marcel only article and price info is left. Where the options have to be is only: eur 0.00 1 x Manas 81B013LS - : eur 0.00 9211.19.31 % eur 124.95 eur 124.95 eur 124.95 1 x Manas 82087JKX Laarzen - : eur 0.00 - : eur 0.00 2432.21.2 % eur 74.95 eur 74.95 eur 74.95 1 x Fantasy 316112 - : eur 0.00 - : eur 0.00 2221.9.8 % eur 49.98 eur 49.98 eur 49.98 1 x Rapisardi 3506 slippers - : eur 0.00 - : eur 0.00 6218-93-6 % eur 44.95 eur 44.95 eur 44.95
  4. can please someone help me. I use the latest paypal-ipn version. everything seems to work fine only attributes whihc belong to the articles of the order are not been lost when somebody pays with paypal-ipn in my backoffice and in the email it looks like this after payment 1 x Vingino footwear Jay canvas boots - : 0 - : 0 iso 1 x Vingino footwear Jay canvas boots color black - : 0 size 31 - : 0 who knows what wrong? thank you for the help Marcel
  5. Hi, This isn't solving the problem url is wrong it shows product_info.php/my-great-product-p-37
  6. i have try your seo with the upgrade instruction in Revision 67 for users of version 2.1d everything was easy to do however when i go to my site link look like this: product_info.php/airstep-570208-boots-p-13662 and this isn't working. wiht version 2.1d i had no problems and everything works without any problems. do you know whats wrong? als i was wondering why the seo isn't looking more like www.domain.com/catogory/boots/airstep-570208.html i this not possible? thanks Marcel
  7. i have try your seo with the upgrade instruction in Revision 67 for users of version 2.1d everything was easy to do however when i go to my site link look like this: product_info.php/airstep-570208-boots-p-13662 and this isn't working. wiht version 2.1d i had no problems and everything works without any problems. do you know whats wrong? als i was wondering why the seo isn't looking more like www.domain.com/catogory/boots/airstep-570208.html i this not possible? thanks Marcel
  8. Help, I have moved my site to a new server with Mysql 5 PHP 5.2 and apache 2.2 every thing is working fine also the point and reward system, however in admin at customer points pending the value of the points is 0 (zero) so if i confirm the points the customer gets a mail that his point are been confirmed and the message says 500 points with a value of 0 (zero) In the frontend at articles the points and the value is correct and the points which have been confirm to the customer have the right value in money at there account. So the only problem is that for some reason in in customer points pending is something wrong or no longer working correct. I think this has to do with the new server specification. Can somebody please help me where to look or what is no longer compatible with the new server specification? Thank you for the help Marcel
  9. never mind i have already found the problem, Curl was not been installed on my new server and this was the problem
  10. I have workt with this contribute without any problems untill 4 may. On 5 may i have moved my site to a new server with apache 2 and php.5 Everything works on the site except maxmind is no longer getting information and as result of that i don't get any fraud check information. I have contact Maxmind and they have let me know that they don't receive any information for me after 4 may. So the problem seems to be the new server Debian Etch with apache 2.2.3 and php 5.02.08 Is there any one who knows what can be wrong? Thanks Marcel
  11. I thing you can solve this by changing the sorting in the order total. Make sure that point redeem are been set before ordertotal. With most regards Marcel
  12. hi, i have found the just bought contribution for oscommerce. I have alter the script so that it can also show place and country where the last has been bought. However the contribution is a box item which only refresh on page refresh. I want it more dynamic so that it shows every XX second a new record without refreshing the whole page. Is this possible and if so is there anybody who can help to make this work? below is the script Marcel <?php /* $Id: justbought.php,v 1.0 2004/06/24 22:31:00 by Johannes Teitge, http://www.shopexpress.info osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2003 osCommerce Released under the GNU General Public License */ ?> <!-- justbought //--> <?php global $languages_id; // seconds the last bought products are shown (Set in admin) $timelimit = JUSTBOUGHT_SECONDS; //$products_query = tep_db_query("select op.products_id from " . TABLE_ORDERS . " o, " . TABLE_ORDERS_PRODUCTS . " op where UNIX_TIMESTAMP(NOW())-UNIX_TIMESTAMP(o.date_purchased) < ".$timelimit." and o.orders_id = op.orders_id"); $products_query = tep_db_query("select op.products_id from " . TABLE_ORDERS . " o, " . TABLE_ORDERS_PRODUCTS . " op where (UNIX_TIMESTAMP(NOW())-UNIX_TIMESTAMP(o.date_purchased) < ".$timelimit.") and o.orders_id = op.orders_id"); $bought_products = array(); while ($products = tep_db_fetch_array($products_query)) { $bought_products[] = $products['products_id']; } $products_count = count($bought_products); if ($products_count > 0) { $selitem = $random = mt_rand(0, $products_count-1); $product_query = tep_db_query("select p.products_id,p.products_image, pd.products_name, o.customers_city, o.customers_country from " . TABLE_PRODUCTS . " p, " . TABLE_ORDERS . " o, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_id=".$bought_products[$selitem]." and p.products_id=pd.products_id and pd.language_id=".$languages_id); if ($product = tep_db_fetch_array($product_query)) { echo("\n<tr><td><br>\n"); $info_box_contents = array(); $info_box_contents[] = array('text' => BOX_HEADING_JUSTBOUGHT); // To hide the hide use admin if (JUSTBOUGHT_SHOWHEADER == 'true') { new info2BoxHeading($info_box_contents, false, false, tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $product["products_id"])); } $info_box_contents = array(); $info_box_contents[] = array('text' => '<table cellspacing="0" cellpadding="0" style="height 40px;" id="justbought'.$row.'"><tr><td class=smallText align=center>'.BOX_TEXT_JUSTBOUGHT . '</td></tr>'. '<tr><td>'.tep_draw_separator('pixel_trans.gif', '100%', '3').'</td></tr>'. '<tr><td>'.tep_draw_separator('pixel_blue.gif', '100%', '1').'</td></tr>'. '<tr><td>'.tep_draw_separator('pixel_trans.gif', '100%', '8').'</td></tr>'. '<tr><td class=smallText align=center><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $product["products_id"]) . '">' . tep_image(DIR_WS_IMAGES . $product['products_image'], $product['products_name'], SMALL_IMAGE_WIDTH*0.7, SMALL_IMAGE_HEIGHT*0.7) . '</a></td></tr>'. '<tr><td>'.tep_draw_separator('pixel_trans.gif', '100%', '3').'</td></tr>'. '<tr><td class=smallText align=center><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $product['products_id']) . '"><b>' . $product['products_name'] . "</a><br>" . $product['customers_city'] . " " .$product['customers_country'] .'</b></td></tr></table>'); new info2Box($info_box_contents); echo("\n</td></tr>\n"); } } ?> <!-- justbought_eof //-->
  13. yes what? do you know a contribution for oscommerce? and if so where can i find it?
  14. hi, on www.yoox.com i have seen i naice feature: last minute this feature shows the live the last order items at www.yoox.com a visitor can see what has been last order by other visitors and from which country. The feature is changing every few seconds on the main page. Are there people who have seen something like this for oscommerce? or is there somebody who knows how to build this.... Thanks Marcel
  15. i'm getting crasy please help somebody!!! in admin i go to customer pending points. if i click there on the preview before customername i get drop out of admin. If i look at the link it looks like this www.domain.nl/orders.php?oID=2030123&action=edit?osCAdminID=2e1ei7qwoirqouoroy after action=edit it starts with a ? in state of a & i have try everything but can't get this link to work and i need this to view the orders before a approve the points. in the other options like Referral- Review Pending Points the preview edit button work without any problem. Please can somebody help me thank you Marcel
×
×
  • Create New...