OpenCart 1.5.0.5 Bug Thread
Re: OpenCart 1.5.0.5 Bug Thread
What a discount code is used during checkout, customers get this error when being sent to PayPal for the final step.
"The link you have used to enter the PayPal system contains an incorrectly formatted item amount."
Never encountered this before 1.5.x and I can't get too much useful info on Google. Please help, thanks!
"The link you have used to enter the PayPal system contains an incorrectly formatted item amount."
Never encountered this before 1.5.x and I can't get too much useful info on Google. Please help, thanks!
- Attachments
-
- 000.png (7.33 KiB) Viewed 1216 times
- jtam
- Posts: 10
- Joined: Tue Aug 31, 2010 9:40 am
Re: meta_keyword(s)
Michael.Maardt.dk wrote:When translating I noticed variable in product_description was meta_keywords in 1.4.9.5 and in 1.5.0.4 it was meta_keyword (s missing)
It's not a bug. It was just changed for 1.5x. product_tags got changed too. I imagine it was done to keep everything in the database singular.
-Ryan
VQMod Manager: FREE extension to fully manage your VQMods from Admin!
Admin Enhancement Suite: Powerful Admin features and enhancements
Dependent Options: Option values displayed based on customer input
Catalog Mode: Disable "Add to Cart" and display your store in view-only
Unofficial OpenCart Wiki | Commercial Support and Development
VQMod Manager: FREE extension to fully manage your VQMods from Admin!
Admin Enhancement Suite: Powerful Admin features and enhancements
Dependent Options: Option values displayed based on customer input
Catalog Mode: Disable "Add to Cart" and display your store in view-only
Unofficial OpenCart Wiki | Commercial Support and Development
-

rph - Posts: 2725
- Joined: Thu Jan 07, 2010 9:05 pm
- Location: Lincoln, Nebraska
Re: OpenCart 1.5.0.5 Bug Thread
jtam wrote:What a discount code is used during checkout, customers get this error when being sent to PayPal for the final step.
"The link you have used to enter the PayPal system contains an incorrectly formatted item amount."
Never encountered this before 1.5.x and I can't get too much useful info on Google. Please help, thanks!
try OpenCart 1.5.0.5
OpenCart®
Project Owner & Developer.
OpenCart commercial support now available!
Project Owner & Developer.
OpenCart commercial support now available!
-

Daniel - Administrator
- Posts: 5173
- Joined: Fri Nov 03, 2006 10:57 am
Re: OpenCart 1.5.0.5 Bug Thread
Daniel wrote:uksitebuilder wrote:Product Options vanish when editing a product.
When viewing/editing an already created product that has options, some of the options values do not re-appear and when going to save errors are displayed.
probably trying to save the page without waiting before its finished loading.
Turns out it was vQmod because $usecache by default is set to FALSE.
Happy Coding!
Simon
------
Commercial Mods:
Google Merchant / Base XML Feed + Bing Shopping + Sitemaps - Automatic Friendly SEO URLs
Full List of UKSB Extensions and Mods
vQmod Generator - Develop & Test OpenCart on your Local Windows machine
Click here if I have helped you and you would like to make a donation
Simon
------
Commercial Mods:
Google Merchant / Base XML Feed + Bing Shopping + Sitemaps - Automatic Friendly SEO URLs
Full List of UKSB Extensions and Mods
vQmod Generator - Develop & Test OpenCart on your Local Windows machine
Click here if I have helped you and you would like to make a donation
-

uksitebuilder - Posts: 5602
- Joined: Thu Jun 09, 2011 3:37 pm
- Location: United Kindgom
Re: OpenCart 1.5.0.5 Bug Thread
Rewards program can be removed from account.tpl with Extensions -> Order Totals -> Reward Points -> Uninstall,
BUT it still shows reward points on product.tpl.
See thread: viewtopic.php?f=20&t=34377
BUT it still shows reward points on product.tpl.
See thread: viewtopic.php?f=20&t=34377
Most answers are from my OpenCart 1.5 User Manual UPDATED TO 1.5.5.1 and includes free updates.
FREE HELP! 60-page user guide with OpenCart Admin Menu Cheatsheet, Install Guide & 30 Minute QuickStart Guide: http://oscmanuals.com/opencart
FREE HELP! 60-page user guide with OpenCart Admin Menu Cheatsheet, Install Guide & 30 Minute QuickStart Guide: http://oscmanuals.com/opencart
-

merry - Posts: 459
- Joined: Wed Dec 08, 2010 4:51 pm
- Location: Mexico and sometimes Texas
Re: OpenCart 1.5.0.5 Bug Thread
jcsmithy wrote:Me once again lol....
in the following function
- Code: Select all
public function getProducts($data = array()) {
All tag queries need to be changed to lowercase - the tag it'self is passed as lowercase from PHP, but the tag column isn't converted to lower...
Existing query being run
- Code: Select all
p.product_id IN (SELECT pt.product_id FROM product_tag pt WHERE pt.language_id = '1' AND pt.tag LIKE '%co20101%')
Should be
- Code: Select all
p.product_id IN (SELECT pt.product_id FROM product_tag pt WHERE pt.language_id = '1' AND LCASE(pt.tag) LIKE '%co20101%')
Only looked in this one function
Hi I have the same problem in the search, all my tags are in capitals (as they come from our suppliers) which file do i need to modify with the code above to get this working?
Many Thanks
Chris W
- Probuild_247
- Posts: 2
- Joined: Wed Jun 22, 2011 4:06 pm
Re: OpenCart 1.5.0.5 Bug Thread
V1.5.0.5 again,
The invoice created from the backend, the "billing address" section has the store's email / telephone instead of the customers.
admin/controller/sale/order.php
should be
The invoice created from the backend, the "billing address" section has the store's email / telephone instead of the customers.
admin/controller/sale/order.php
- Code: Select all
$this->data['orders'][] = array(
'order_id' => $order_id,
'invoice_no' => $invoice_no,
'invoice_date' => date($this->language->get('date_format_short'), strtotime('now')),
'date_added' => date($this->language->get('date_format_short'), strtotime($order_info['date_added'])),
'store_name' => $order_info['store_name'],
'store_url' => rtrim($order_info['store_url'], '/'),
'address' => nl2br($this->config->get('config_address')),
'telephone' => $this->config->get('config_telephone'),
'fax' => $this->config->get('config_fax'),
'email' => $this->config->get('config_email'),
'shipping_address' => $shipping_address,
'payment_address' => $payment_address,
'product' => $product_data,
'total' => $total_data,
'comment' => nl2br($order_info['comment'])
);
should be
- Code: Select all
$this->data['orders'][] = array(
'order_id' => $order_id,
'invoice_no' => $invoice_no,
'invoice_date' => date($this->language->get('date_format_short'), strtotime('now')),
'date_added' => date($this->language->get('date_format_short'), strtotime($order_info['date_added'])),
'store_name' => $order_info['store_name'],
'store_url' => rtrim($order_info['store_url'], '/'),
'address' => nl2br($this->config->get('config_address')),
'telephone' => $order_info['telephone'],
'fax' => $order_info['fax'],
'email' => $order_info['email'],
'shipping_address' => $shipping_address,
'payment_address' => $payment_address,
'product' => $product_data,
'total' => $total_data,
'comment' => nl2br($order_info['comment'])
);
- jcsmithy
- Posts: 373
- Joined: Fri Oct 01, 2010 1:54 pm
Re: OpenCart 1.5.0.5 Bug Thread
Probuild_247 wrote:jcsmithy wrote:Me once again lol....
in the following function
- Code: Select all
public function getProducts($data = array()) {
All tag queries need to be changed to lowercase - the tag it'self is passed as lowercase from PHP, but the tag column isn't converted to lower...
Existing query being run
- Code: Select all
p.product_id IN (SELECT pt.product_id FROM product_tag pt WHERE pt.language_id = '1' AND pt.tag LIKE '%co20101%')
Should be
- Code: Select all
p.product_id IN (SELECT pt.product_id FROM product_tag pt WHERE pt.language_id = '1' AND LCASE(pt.tag) LIKE '%co20101%')
Only looked in this one function
Hi I have the same problem in the search, all my tags are in capitals (as they come from our suppliers) which file do i need to modify with the code above to get this working?
Many Thanks
Chris W
catalog/model/catalog/product.php
- jcsmithy
- Posts: 373
- Joined: Fri Oct 01, 2010 1:54 pm
Re: OpenCart 1.5.0.5 Bug Thread
Hi, We are running the latest release of Opencart V1.5.0.5 but we can not get the opencart google base module to work, Google is saying there is an XML Formatting Error, When i manually go to the link provided through the admin section the page loads but return no results:
http://www.probuild-uk.com/index.php?ro ... oogle_base
There are no reported problems in the error log, sorry for the vague info.
Is this a bug or am i being stupid?
http://www.probuild-uk.com/index.php?ro ... oogle_base
There are no reported problems in the error log, sorry for the vague info.
Is this a bug or am i being stupid?
- Probuild_247
- Posts: 2
- Joined: Wed Jun 22, 2011 4:06 pm
Re: OpenCart 1.5.0.5 Bug Thread
Probuild_247 wrote:Hi, We are running the latest release of Opencart V1.5.0.5 but we can not get the opencart google base module to work, Google is saying there is an XML Formatting Error, When i manually go to the link provided through the admin section the page loads but return no results:
http://www.probuild-uk.com/index.php?ro ... oogle_base
There are no reported problems in the error log, sorry for the vague info.
Is this a bug or am i being stupid?
you'd have to talk to whoever wrote your google checkout module as google checkout is not included in the core this is not an opencart bug.
OpenCart commercial mods and development http://spotonsolutions.net
Layered Navigation
Shipment Tracking
Vehicle Year/Make/Model Filter
Layered Navigation
Shipment Tracking
Vehicle Year/Make/Model Filter
- Xsecrets
- Posts: 5042
- Joined: Sat Oct 24, 2009 7:51 pm
- Location: FL US
Re: OpenCart 1.5.0.5 Bug Thread
google base and google checkout are completely seperate. google base is what we use to get our products listed in google's shopping. google checkout is a payment solution.
Google base IS included with opencart but I personally use qphoria's rss.php since it works better. Haven't gotten to that point with 1.5.0.5 yet though. active store still on 1.4.9.5
google base is in extensions/product feeds in the opencart core....
Google base IS included with opencart but I personally use qphoria's rss.php since it works better. Haven't gotten to that point with 1.5.0.5 yet though. active store still on 1.4.9.5
google base is in extensions/product feeds in the opencart core....
Come visit the Lord of The Net at http://www.lotnllc.com for all your computing needs! Feel safe with us being that everything is 256-Bit SSL secured and knowing that your dealing with an Intel Gold Partner! This opencart server is also PCI certified.
-

Demon5 - Posts: 200
- Joined: Fri Jun 18, 2010 8:12 pm
- Location: Sacramento, CA
Re: OpenCart 1.5.0.5 Bug Thread
yeah sorry about that I misread it. I think that the problem with google base is that the & are not converted properly. I think this was probably fixed in a later 1.4.x version and the fix never got into 1.5.x
OpenCart commercial mods and development http://spotonsolutions.net
Layered Navigation
Shipment Tracking
Vehicle Year/Make/Model Filter
Layered Navigation
Shipment Tracking
Vehicle Year/Make/Model Filter
- Xsecrets
- Posts: 5042
- Joined: Sat Oct 24, 2009 7:51 pm
- Location: FL US
Re: OpenCart 1.5.0.5 Bug Thread
Daniel wrote:jtam wrote:What a discount code is used during checkout, customers get this error when being sent to PayPal for the final step.
"The link you have used to enter the PayPal system contains an incorrectly formatted item amount."
Never encountered this before 1.5.x and I can't get too much useful info on Google. Please help, thanks!
try OpenCart 1.5.0.5
I am encounter the same problem with 1.5.0.5, what files(s) did you changed so that I can trace into?
- gplus2k
- Posts: 8
- Joined: Sun Oct 31, 2010 4:20 pm
Re: OpenCart 1.5.0.5 Bug Thread
I appear to be getting a blank page when I click Affiliate Signup, tried it on 4 different browsers, signed in as admin, signed out, cleared caches etc and still no joy? Works on the demo but not on the test site.
Does OC have issues with sites running off of IP's instead of domain names? (I know Cubecart suffers from random fails on IP's).
Url would be:
http://89.255.132.235/index.php?route=affiliate/login
Then click sign up, and you'll see what I mean
Thanks
Does OC have issues with sites running off of IP's instead of domain names? (I know Cubecart suffers from random fails on IP's).
Url would be:
http://89.255.132.235/index.php?route=affiliate/login
Then click sign up, and you'll see what I mean

Thanks
- dijitul
- Posts: 23
- Joined: Mon Jun 13, 2011 1:21 pm
Re: OpenCart 1.5.0.5 Bug Thread
dijitul wrote:I appear to be getting a blank page when I click Affiliate Signup, tried it on 4 different browsers, signed in as admin, signed out, cleared caches etc and still no joy? Works on the demo but not on the test site.
Does OC have issues with sites running off of IP's instead of domain names? (I know Cubecart suffers from random fails on IP's).
Url would be:
http://89.255.132.235/index.php?route=affiliate/login
Then click sign up, and you'll see what I mean
Thanks
I have never seen that happen before. maybe if you reuploaded the registration page.
when you have finished the site send me a link so i can put it on liveshops.
OpenCart®
Project Owner & Developer.
OpenCart commercial support now available!
Project Owner & Developer.
OpenCart commercial support now available!
-

Daniel - Administrator
- Posts: 5173
- Joined: Fri Nov 03, 2006 10:57 am
Re: OpenCart 1.5.0.5 Bug Thread
Hi Daniel,
I've re-uploaded everything once - but I'll try doing it again and cross my fingers! And thumbs up for an awesome bit of software!
I've re-uploaded everything once - but I'll try doing it again and cross my fingers! And thumbs up for an awesome bit of software!
- dijitul
- Posts: 23
- Joined: Mon Jun 13, 2011 1:21 pm
Re: OpenCart 1.5.0.5 Bug Thread
Hi Daniel,
Earlier today I have report a bug about PayPal's "incorrectly formatted item amount." and I have just reproduced the problem in a fresh installed OpenCart v1.5.0.5 so that I can report the problem to you in details, please check the following steps:
1. Click the "Palm Treo Pro" which cost $279.99
2. Add to Cart
3. Apply Discount Code 2222 (10% off)
4. Checkout using PayPal and finally got the Error in PayPal - "The link you have used to enter the PayPal system contains an incorrectly formatted item amount."
I think it is something related to the discount rounding off to 2 decimal places.
I also suggest please also check if it affects different currency by, say, changing from USD to EUR first, buying the same product with same coupon code and checkout using PayPal.
Thank you very much and keep OpenCart rocks!
Earlier today I have report a bug about PayPal's "incorrectly formatted item amount." and I have just reproduced the problem in a fresh installed OpenCart v1.5.0.5 so that I can report the problem to you in details, please check the following steps:
1. Click the "Palm Treo Pro" which cost $279.99
2. Add to Cart
3. Apply Discount Code 2222 (10% off)
4. Checkout using PayPal and finally got the Error in PayPal - "The link you have used to enter the PayPal system contains an incorrectly formatted item amount."
I think it is something related to the discount rounding off to 2 decimal places.
I also suggest please also check if it affects different currency by, say, changing from USD to EUR first, buying the same product with same coupon code and checkout using PayPal.
Thank you very much and keep OpenCart rocks!
- gplus2k
- Posts: 8
- Joined: Sun Oct 31, 2010 4:20 pm
Re: OpenCart 1.5.0.5 Bug Thread
layout of confirmation email for the order is still broken. i have reported the problem in earlier releases.
- PetracheNicolae
- Posts: 53
- Joined: Mon May 23, 2011 9:40 pm
Re: OpenCart 1.5.0.5 Bug Thread
I have set automatic update currency
but my currency can not update
but my currency can not update
- thienvk
- Posts: 9
- Joined: Thu Nov 11, 2010 3:20 am
Re: OpenCart 1.5.0.5 Bug Thread
Image .gif not play.


- thanhcong171
- Posts: 4
- Joined: Wed Jun 22, 2011 10:03 am
Who is online
Users browsing this forum: No registered users and 16 guests














