Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

onkel_tom

Archived
  • Posts

    5
  • Joined

  • Last visited

Profile Information

  • Real Name
    Thomas

onkel_tom's Achievements

  1. Hi Stew! I tried several times to edit the order editor Version 3.0.2.1 as you wrote for some other Users with the Contrib "ot_netto" installed but I didn't success with it. My problem is that the shipping costs are shown including tax (7,70€) but must be calculaed to the ot_netto wihtout tax (6.47€) but still added with 7,70€ (incl. tax) when I push update in the order editor. orders_total looks this way: ot_shipping => sort_order 1 ot_netto => sort_order 2 ot_tax => sort_order 3 ot_total => sort_order 4 These are the correct values when update button of order editor isn't klicked and this is the output when update button of order editor was klicked (without changing anything!) any idea what must be changed?
  2. Yes, sir! This Contrib works fine for all pictures only this error in checkout_payment.php
  3. Hi all, I found the following errors in my Server error_log. PHP Warning: %v%v() [<a href='function.%v'>function.%v</a>]: Invalid image dimensions in /srv/www/vhosts/domainname.com/httpdocs/catalog/product_thumb.php on line 307, referer: http://www.domainname.com/ catalog/checkout_payment.php?osCsid=xyz PHP Warning: imagecolorallocate(): supplied argument is not a valid Image resource in /srv/www/vhosts/domainname.com/httpdocs/catalog/product_thumb.php on line 310, referer: http://www.domainname.com/ catalog/checkout_payment.php?osCsid=xyz PHP Warning: imagefill(): supplied argument is not a valid Image resource in /srv/www/vhosts/domainname.com/httpdocs/catalog/product_thumb.php on line 312, referer: http://www.domainname.com/ catalog/checkout_payment.php?osCsid=xyz PHP Warning: imagecolortransparent(): supplied argument is not a valid Image resource in /srv/www/vhosts/domainname.com/httpdocs/catalog/product_thumb.php on line 313, referer: http://www.domainname.com/ catalog/checkout_payment.php?osCsid=xyz PHP Warning: imagecopyresampled(): supplied argument is not a valid Image resource in /srv/www/vhosts/domainname.com/httpdocs/catalog/product_thumb.php on line 347, referer: http://www.domainname.com/ catalog/checkout_payment.php?osCsid=xyz any idea what is wrong?
  4. Okay, i fixed it with some code from a old post (MYC267 Aug 13 2005, 08:29 AM) find in /catalog/admin/whos_online.php: }elseif (strpos($temp_url_link,'cPath')) { $temp=str_replace('index.php?','',$temp_url_link); $temp=str_replace('?','',$temp); $temparr=split("\/",$temp); $cat=$temparr[2]; if (!$cat) { $temp=str_replace('/','',$temp); $parameters=split("&",$temp); $i=0; while($i < count($parameters)) { $a=split("=",$parameters[$i]); if ($a[0]=="cPath") { $cat=$a[1]; } $i++; } } $parameters=split("_",$cat); $i=0; and replace it with: }elseif (strpos($temp_url_link,'?cPath=')) { $temp=str_replace('index.php?','',$temp_url_link); $temp=str_replace('?','',$temp); $parameters=split("&",$temp); $parameters=split("/",$temp); $i=0; while($i < count($parameters)) { $a=split("=",$parameters[$i]); if ($a[0]=="cPath") { $cat=$a[1]; } $i++; } $parameters=split("_",$cat); $i=0; now the Categories are shown with name on the Who's Online page.
  5. Still the same problem with this Contrib! Can anybody fix that problem to show the Categories_name instead of only "Category"?
×
×
  • Create New...