-
Content count
390 -
Joined
-
Last visited
-
Days Won
4
mcmannehan last won the day on April 29 2018
mcmannehan had the most liked content!
About mcmannehan
-
Rank
That's Me
- Birthday 12/07/1960
Profile Information
-
Real Name
Manfred Wedel
-
Gender
Male
-
Location
Thailand
-
-
mcmannehan started following Upload Class File, osCommerce 2.2 hacked, Friendship customers discount and and 6 others
-
Bots send email thouhgt my system unable to find out from which file
mcmannehan replied to juniorpanu's topic in osCommerce Online Merchant Community Bootstrap Edition
Looks like both variable is undefined. Check your languages files -
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.
-
Paypal nimmt andere Versandkosten
mcmannehan replied to espacio81's topic in German Community's OSCOM v2.x
So wie das aussieht, ist die komplette PayPal- und Shopversion fehlerhaft installiert. -
Basket not emptying/stock not decreasing after order - Worldpay
mcmannehan replied to zefeena's topic in WorldPay
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. -
Support thread for Bootstrap V4 Oscommerce Administration v2.3.4.1 CE
mcmannehan replied to shetch's topic in General Add-Ons Support
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. -
Guest Account is one of the badest thing an Online Shop can have. This was good in the past, but now this feature for Online Shops get more and more down.
-
Eine Lösung: Warning: session_start(): Failed to decode session object
mcmannehan replied to googlefan's topic in German Community's Allgemein
Umständlicher kann man es wohl kaum machen!!! -
-
Thank you, i did click the wrong "Quote!!! Here https://emagicone-store-manager-for-oscommerce.software.informer.com/download/ i did downlaod the https://emagicone.com/products/solutions-for-oscommerce/
-
Neue Regeln für Internetshops
mcmannehan replied to infobroker1533005402's topic in German Community's Allgemein
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.- 14 replies
-
- datenschutz
- agb
-
(and 1 more)
Tagged with:
-
Es gibt dieses: https://apps.oscommerce.com/0R4VA&osc-affiliate-for-2-3-xx&v=23 aber ist mit viel Umprogrammieren verbunden!
-
Here https://emagicone-store-manager-for-oscommerce.software.informer.com/download/ i did downlaod the https://emagicone.com/products/solutions-for-oscommerce/
-
hmmm... why not use str_replace(' ','',$string); to remove all spaces.
-
Paypal nimmt andere Versandkosten
mcmannehan replied to espacio81's topic in German Community's OSCOM v2.x
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! -
Ganz wichtig ist auch das die Sprachdateien in utf8 ohne BOM abgespeichert werden müssen.
-
-
@raiwa yes you right, thx, i did not see that.