Page 5 of 5
Re: Post any OpenCart 1.4.9 Final Bugs here!
Posted: Thu Sep 09, 2010 7:43 pm
by Qphoria
mbaldock2001 wrote:Hi all,
Using 1.4.9,
I have noticed the following error log in the last couple of days, but i'm not sure what was supposed to have been sent !
Code: Select all
2010-09-02 13:18:35 - PHP Warning: mail() [<a href='function.mail'>function.mail</a>]: 550 5.7.1 message content rejected in /catalog/controller/payment/pp_standard.php on line 395
2010-09-06 9:59:32 - PHP Warning: mail() [<a href='function.mail'>function.mail</a>]: 550 5.7.1 message content rejected in /catalog/controller/payment/pp_standard.php on line 395
2010-09-06 11:15:48 - PHP Warning: mail() [<a href='function.mail'>function.mail</a>]: 550 5.7.1 message content rejected in /catalog/controller/payment/pp_standard.php on line 395
There could also be the same sort of error on /catalog/controller/payment/pp_standard.php on line 454 .... !?!??
Has anyone else seen this?
Does 1.4.9.1 address/correct this ?
Many thanks
Mark
Haven't seen it so no it doesn't fix it.
Re: Post any OpenCart 1.4.9 Final Bugs here!
Posted: Sat Sep 11, 2010 6:30 am
by poshook
The price sorting bug with special fix for 1.4.8b again in 1.4.9?

Re: Post any OpenCart 1.4.9 Final Bugs here!
Posted: Sat Sep 11, 2010 6:35 am
by Xsecrets
poshook wrote:The price sorting bug with special fix for 1.4.8b again in 1.4.9?

I don't think price sorting has ever used special pricing in any version.
Re: Post any OpenCart 1.4.9 Final Bugs here!
Posted: Sat Sep 11, 2010 7:35 am
by Qphoria
yea there was no fix for special pricing. It was just missing for normal prices
Post a feature request for sorting by special
Re: Post any OpenCart 1.4.9 Final Bugs here!
Posted: Sat Sep 11, 2010 12:22 pm
by Xsecrets
Qphoria wrote:yea there was no fix for special pricing. It was just missing for normal prices
Post a feature request for sorting by special
yeah it's not the easiest thing to do. The main query doesn't take into account special or group pricing. I know it's a pain to deal with because I made my layered navigation account for both, and it's no fun.
Re: Post any OpenCart 1.4.9 Final Bugs here!
Posted: Mon Sep 13, 2010 7:32 am
by poshook
sorry, my broken english. I did not mean special pricing but products price sorting bug from 1.4.8b (low-high, high-low)
Re: Post any OpenCart 1.4.9 Final Bugs here!
Posted: Mon Sep 13, 2010 9:55 am
by Xsecrets
the price sort bug has been fixed.
Re: Post any OpenCart 1.4.9 Final Bugs here!
Posted: Tue Sep 14, 2010 3:01 am
by Brook
"Notice: Undefined Variable text_none in admin\view\template\sale\order_form.tpl"
Re: Post any OpenCart 1.4.9 Final Bugs here!
Posted: Tue Sep 14, 2010 3:17 am
by Qphoria
Brook wrote:"Notice: Undefined Variable text_none in admin\view\template\sale\order_form.tpl"
This is a 1.4.9.1 bug,
redownload the patch and upload the new admin/controller/sale/order.php file
Re: Post any OpenCart 1.4.9 Final Bugs here!
Posted: Fri Sep 17, 2010 3:36 am
by MorayWeb
Not so much a bug as a desirable change...
Once a new customer has registered and is displayed the confirmation screen, on clicking 'continue' you are taken to your account page. In a store with ssl enabled it still redirects to the http version of the account page rather than the https.
Does this need a conditional put in somewhere to detect whether ssl is enabled prior to generating the link?
Cheers,
Gordon
Re: Post any OpenCart 1.4.9 Final Bugs here!
Posted: Fri Sep 17, 2010 4:23 am
by Qphoria
MorayWeb wrote:Not so much a bug as a desirable change...
Once a new customer has registered and is displayed the confirmation screen, on clicking 'continue' you are taken to your account page. In a store with ssl enabled it still redirects to the http version of the account page rather than the https.
Does this need a conditional put in somewhere to detect whether ssl is enabled prior to generating the link?
Cheers,
Gordon
Ya its a bug from day 1 but you are right.. it should be https
1. EDIT: catalog/controller/account/success.php
2. FIND:
Code: Select all
if ($this->cart->hasProducts()) {
$this->data['continue'] = HTTP_SERVER . 'index.php?route=checkout/cart';
} else {
$this->data['continue'] = HTTP_SERVER . 'index.php?route=account/account';
}
3. Change the HTTP_SERVER to HTTPS_SERVER