Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

mcmannehan

Pioneers
  • Posts

    390
  • Joined

  • Last visited

  • Days Won

    4

mcmannehan last won the day on April 29 2018

mcmannehan had the most liked content!

2 Followers

About mcmannehan

  • Birthday 12/07/1960

Profile Information

  • Real Name
    Manfred Wedel
  • Gender
    Male
  • Location
    Thailand

Recent Profile Visitors

11,866 profile views

mcmannehan's Achievements

  1. What version of osC and what version of PayPal you use? Normally you should check the languages file, it deppends what version of PayPal you use. Check /includes/languages/english/checkout_process.php or /includes/languages/english/modules/payment/paypal_standard.php If you can't fix, than send a PM to me.
  2. So wie das aussieht, ist die komplette PayPal- und Shopversion fehlerhaft installiert.
  3. The issue is the customer. If he don't finish the payment correct, than this happens. After he paid, than he close the webbrowser or he use the back buttons of his browser. Same problem if customer pay with PayPal. And if the basket not empty, than it's logical, that the stock dosent decrease.
  4. Great new modern admin nice work, but i find an issue: this (line 20): $low_query = tep_db_query("select distinct p.products_id, pd.products_name, p.products_quantity from products p, products_description pd where p.products_id = pd.products_id and p.products_quantity < '" . (int)$low_amount . "' and p.products_quantity <> '0' order by p.products_quantity"); // with that and p.products_quantity <> '0' you get also the minus quantity. have to change to: $low_query = tep_db_query("select distinct p.products_id, pd.products_name, p.products_quantity from products p, products_description pd where p.products_id = pd.products_id and p.products_quantity < '" . (int)$low_amount . "' and p.products_quantity > '0' order by p.products_quantity"); // with p.products_quantity > '0' you get only the range about STOCK_REORDER_LEVEL! and this (line25): $out_query = tep_db_query("select distinct p.products_id, pd.products_name, p.products_quantity from products p, products_description pd where p.products_id = pd.products_id and p.products_quantity = '0' order by p.products_quantity"); //with p.products_quantity = '0' you don't get the minus quantity have to change to: $out_query = tep_db_query("select distinct p.products_id, pd.products_name, p.products_quantity from products p, products_description pd where p.products_id = pd.products_id and p.products_quantity <= '0' order by p.products_quantity"); // with p.products_quantity <= '0' you get the minus quantity And what's the reason to do in line 19 that: $low_amount = STOCK_REORDER_LEVEL + 1; To check STOCK_REORDER_LEVEL > 0 the resolution should be different.
  5. Nicht immer, denn die Siegel sind auch mit Kosten verbunden. Es gibt viele gute profesionelle Online Shops die kein Siegen haben, denn die wissen, wie man Kundenpflege betreibt und lassen sich von profesionellen Programmierer und Online-Shop Betreuern unterstützen. Dies ist eine Win-Win Situation für beide. Die meisten Hobby-Onlnie Shops sind sowies am sterben, da viele Abmahnungen auf die zugekommen sind. Und wenn alle Gesetze in DE bzw EU beachtet werden sollen und müssen, kommt man um eine profesionelle Betreung nicht herum, wenn man sich selbst weder mit den Regeln noch mit programmieren auskennt.
  6. Es gibt dieses: https://apps.oscommerce.com/0R4VA&osc-affiliate-for-2-3-xx&v=23 aber ist mit viel Umprogrammieren verbunden!
  7. hmmm... why not use str_replace(' ','',$string); to remove all spaces.
  8. Vorsicht mit PayPal Express! Es entspricht nicht den Online Shop Gesetzen für EU bzw DE! Und wenn schon unbedingt PayPal, dann dieses Paypal Modul verwenden: PayPal App v5.010 Des weiteren empfehle ich mal dies zu lesen: https://www.it-recht-kanzlei.de/Brauchen_wir_PayPal.html Besonders die Antworten von Benutzern! Des weiteren wäre es gut, zu wissen, welche OSC Version Du verwendest und welches Versandmodul! Dein Problem kann viele Ursachen haben. Sind die Zonen richtig eingestellt? Da werden oft seht viele Fehler gemacht!
  9. Ganz wichtig ist auch das die Sprachdateien in utf8 ohne BOM abgespeichert werden müssen.
  10. @raiwa yes you right, thx, i did not see that.
  11. The navbar (not megamenu) have to activate extra. Read the manual, for newbies a must!
  12. osC ist nicht tot, aber es hat sich viel geändert. Gewisse Module und Hilfen die freie Version nach eigenen Wünschen zu ändern, sind nun mal nicht mehr kostenlos. Shopbetreiber die Ihren Shop nicht als Hobby betreiben, investieren auch entsprechend und dies macht sich wiederum im Umsatz des Shops und der Gewinne bemerkbar.
  13. To turn off the erros or the warnings is a very bad solution. Shame on this idea. Change this: foreach ( $text_array as $key => $text ) { if ( tep_not_null( trim( $text ) ) ) { $final_text_array[$key] = $text; } } to this: if (is_array($text_array)) { foreach ( $text_array as $key => $text ) { if ( tep_not_null( trim( $text ) ) ) { $final_text_array[$key] = $text; } } } Clean code is important and a code with turn off erros or warnings tells a lot about the codestyle.
×
×
  • Create New...