Post OpenCart 1.4.3 Bugs Here!
Posted: Sat Mar 13, 2010 1:50 am
Please post here all bugs (and those you think they are bugs) found in the release 1.4.3 from the 12th of March 2010.
OpenCart Community Forum - Discuss shopping cart and e-commerce solutions.
https://forum.opencart.com/
Code: Select all
if (isset($data['filter_name']) && !is_null($data['filter_name'])) {
$sql .= " AND pd.name LIKE '%" . $this->db->escape($data['filter_name']) . "%'";
}
if (isset($data['filter_model']) && !is_null($data['filter_model'])) {
$sql .= " AND p.model LIKE '%" . $this->db->escape($data['filter_model']) . "%'";
}
Code: Select all
if (isset($data['filter_name']) && !is_null($data['filter_name'])) {
$sql .= " AND LCASE(pd.name) LIKE '%" . $this->db->escape(strtolower($data['filter_name'])) . "%'";
}
if (isset($data['filter_model']) && !is_null($data['filter_model'])) {
$sql .= " AND LCASE(p.model) LIKE '%" . $this->db->escape(strtolower($data['filter_model'])) . "%'";
}
The easiest way to fix this is to use an apache redirect that redirects all http://www.yourdomain.com to yourdomain.com. That way no surfer uses www. anymoreRonA wrote:I just upgraded from 1.4.2 to 1.4.3 and everything seems OK EXCEPT I still have the issue where the products don't load if I omit the www. from the web address. Did I forget to do something?
( I'm sure I'm running 1.4.3 because it says so at the bottom of the admin page.)
Code: Select all
mysql_query("SET CHARATER SET utf8", $connection);
Code: Select all
(200, 14, 'KAR', 'Kärnten'),
(201, 14, 'NOS', 'Niederöesterreich'),
(202, 14, 'OOS', 'Oberöesterreich'),
what invoice vat bug?lillolollo wrote:europe invoice-vat bug an veeeeeeeeery older bug.......
could your problem be that the dontspam.com. is full of spam advertising?MatthewMN wrote:I hope it is OK that I'm posting this here. I just spent half a day upgrading from 1.4.0 to 1.4.3 to find out the same SMTP e-mail issue exists (I can't use the recommended "Mail" option). E-mails get sent from the Windows web server and you can read the subject but the body text doesn't show. If you look at the raw data you can see the text but you can't expect customers to know this. Here is the raw data from a test e-mail:
Return-Path: <myemail@dontspam.com>
Received: from 216-10-249-50.mysite4now.com [216.10.249.50] by mx251o.mysite4now.com with SMTP;
Fri, 12 Mar 2010 19:57:05 -0800
To: myemail@dontspam.com
Subject: Enquiry matt
From: matt<myemail@dontspam.com>
Reply-To: matt<myemail@dontspam.com>
Return-Path:myemail@dontspam.com
X-Mailer: PHP/5.2.0
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="----=_NextPart_af29d3ec0ce755c9a401b3fa3bdb4560"
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: 8bit
X-SmarterMail-TotalSpamWeight: 0 (Authenticated)
test
test
test
------=_NextPart_af29d3ec0ce755c9a401b3fa3bdb4560--
pelase post a link to your site.RonA wrote:I just upgraded from 1.4.2 to 1.4.3 and everything seems OK EXCEPT I still have the issue where the products don't load if I omit the www. from the web address. Did I forget to do something?
( I'm sure I'm running 1.4.3 because it says so at the bottom of the admin page.)
He talks about that the invoice-numbering is not according to EU-laws.Daniel wrote:what invoice vat bug?lillolollo wrote:europe invoice-vat bug an veeeeeeeeery older bug.......
I replaced the actually e-mail address with a fake one so I didn't get added to any spam lists. I have tried sending to an address of the domain we own and also to Yahoo addresses. Both have the same problem. If anyone has a simple PHP file they would like me to test the SMTP e-mail with I would be happy to do that. I have experience programming in .net but my PHP knowledge lacks. Thanks for replying Daniel.Daniel wrote:could your problem be that the dontspam.com. is full of spam advertising?