Page 4 of 16

Re: Post any OpenCart 1.4.8/1.4.8b Bugs here!

Posted: Tue Jun 15, 2010 11:56 pm
by Qphoria
I can tell you without looking at it that its pingbox.

You can always find which media is not secure in FireFox by
1. Load a secure page (like the login page)
2. Click Tools->Page Info
3. Click the Media tab
4. Scroll through the list and look for things that are http:// instead of https://

Re: Post any OpenCart 1.4.8/1.4.8b Bugs here!

Posted: Wed Jun 16, 2010 12:25 am
by zelda
Hi q
I had an inkling that it might be that but I am so not a programmer. I will try to secure. Thanks for all you do.

Re: Post any OpenCart 1.4.8/1.4.8b Bugs here!

Posted: Wed Jun 16, 2010 12:37 am
by zelda
Qphoria wrote:I can tell you without looking at it that its pingbox.

You can always find which media is not secure in FireFox by
1. Load a secure page (like the login page)
2. Click Tools->Page Info
3. Click the Media tab
4. Scroll through the list and look for things that are http:// instead of https://
Ok It was live chat. Now the ssl color bar is steady.
Thank you

Re: Post any OpenCart 1.4.8/1.4.8b Bugs here!

Posted: Wed Jun 16, 2010 2:30 am
by yvalni
Hi,
updated my testsite with 1.4.8.b and in admin in system/option/ Login Display Prices:
Only show prices when a customer is logged in. = YES.

The prices are not shown, but the cart still functions, every product has a + and so you can drop it in the cart and thus showing the price of the product....

Is this a bug or not :-)

Alex

Re: Post any OpenCart 1.4.8/1.4.8b Bugs here!

Posted: Wed Jun 16, 2010 2:36 am
by Qphoria
yvalni wrote:Hi,
updated my testsite with 1.4.8.b and in admin in system/option/ Login Display Prices:
Only show prices when a customer is logged in. = YES.

The prices are not shown, but the cart still functions, every product has a + and so you can drop it in the cart and thus showing the price of the product....

Is this a bug or not :-)

Alex

Yes, i addressed it here but forgot to add it to the patch

1. EDIT:
catalog/view/theme/default/template/module/latest_home.tpl
catalog/view/theme/default/template/module/featured_home.tpl
catalog/view/theme/default/template/module/special_home.tpl
catalog/view/theme/default/template/module/bestseller_home.tpl
catalog/view/theme/default/template/product/special.tpl
catalog/view/theme/default/template/product/category.tpl
catalog/view/theme/default/template/product/manufacturer.tpl
catalog/view/theme/default/template/product/search.tpl
catalog/view/theme/default/template/product/product.tpl

2. IN ALL FILES CHANGE:

Code: Select all

<?php } ?>
<?php } ?>
<a class="button_add_small" href="<?php echo $products[$j]['add']; ?>" title="<?php echo $button_add_to_cart; ?>" >&nbsp;</a>
3. TO:

Code: Select all

<?php } ?>
<a class="button_add_small" href="<?php echo $products[$j]['add']; ?>" title="<?php echo $button_add_to_cart; ?>" >&nbsp;</a>
<?php } ?>

Re: Post any OpenCart 1.4.8/1.4.8b Bugs here!

Posted: Wed Jun 16, 2010 5:42 am
by Johnathan
Typo in /catalog/language/english/checkout/payment.php:

Code: Select all

'Enter your code and click "Apply Coupon" and to see your discount instantly applied to your order.'
"and to see" should be "to see"

On a related note, if you have the cart module disabled, you won't be able to see the discount "instantly applied". I think the wording should be changed to something like this:

Code: Select all

'Enter your code and click "Apply Coupon" to have your discount applied to your order.'

OC 1.4.8b Error in Guest Checkout step 2

Posted: Wed Jun 16, 2010 6:20 am
by DoctorQ
In OC 1.4.8b buy without registering as a guest - in the two-step confirmation of purchases - get an error Notice: Undefined index: Subtract in / catalog / model / checkout / order.php on line 75

What is the reason?

Re: OC 1.4.8b Error in Guest Checkout step 2

Posted: Wed Jun 16, 2010 7:27 am
by Qphoria
get latest 1.4.8b patch that fixes this

OpenCart v1.4.8

Posted: Wed Jun 16, 2010 11:49 am
by kgreeff
Hey Guys,

Think i found a small bug in the Order History Page, when a customer is logged in.

Pagination show links as

opencart/index.php?route=account/history&page=%s

I changed the catalog/controller/history.php from:

$pagination->url = HTTP_SERVER . 'index.php?route=account/history&page=%s';

to:

$pagination->url = HTTP_SERVER . 'index.php?route=account/history&page={page}';

and it seems to be working.

P.S. Awesome project you guys have created!!

Re: OpenCart v1.4.8

Posted: Wed Jun 16, 2010 12:31 pm
by Qphoria
Thanks kgreef

Re: Post any OpenCart 1.4.8/1.4.8b Bugs here!

Posted: Wed Jun 16, 2010 7:06 pm
by pedma
Specials Issue on OC 1.4.8 b.

Hi Q,

I'm not sure this is a bug or not. I've tried to create a special price for a product. I set the start date : 2010-06-09 & end date: 2010-06-30 , customer group = default, priority = 1. At frondend, I can see the old price & new price, but it doesn't appear at the Specials box.

Thanks
- pedma -

Re: Post any OpenCart 1.4.8/1.4.8b Bugs here!

Posted: Wed Jun 16, 2010 8:19 pm
by pedma
pedma wrote:Specials Issue on OC 1.4.8 b.

Hi Q,

I'm not sure this is a bug or not. I've tried to create a special price for a product. I set the start date : 2010-06-09 & end date: 2010-06-30 , customer group = default, priority = 1. At frondend, I can see the old price & new price, but it doesn't appear at the Specials box.

Thanks
- pedma -
Hi Q,

It's not a bug. I forgot to fill the Limit !! ... :(

Thanks.
- pedma -

1.4.8 Price Sorting Bug

Posted: Wed Jun 16, 2010 10:56 pm
by rog_ashbury
I don't think 1.4.8 is sorting an array of products in order from Price High --> Low

It isn't in my set up anyway.

Re: 1.4.8 Price Sorting Bug

Posted: Wed Jun 16, 2010 11:03 pm
by Qphoria
rog_ashbury wrote:I don't think 1.4.8 is sorting an array of products in order from Price High --> Low

It isn't in my set up anyway.
Yea this has been reported.. I'm looking into it.

Re: Post any OpenCart 1.4.8/1.4.8b Bugs here!

Posted: Wed Jun 16, 2010 11:23 pm
by rog_ashbury
The previous suggestion - adding extra line 'p.price' in catalog/model/catalog/product.php - fixes it as far as I can see

Re: Post any OpenCart 1.4.8/1.4.8b Bugs here!

Posted: Wed Jun 16, 2010 11:52 pm
by OSWorX
rog_ashbury wrote:The previous suggestion - adding extra line 'p.price' in catalog/model/catalog/product.php - fixes it as far as I can see
That is/was no suggestion - it is the fix.

Re: Post any OpenCart 1.4.8/1.4.8b Bugs here!

Posted: Fri Jun 18, 2010 1:55 am
by Qphoria
OSWorX wrote:
rog_ashbury wrote:The previous suggestion - adding extra line 'p.price' in catalog/model/catalog/product.php - fixes it as far as I can see
That is/was no suggestion - it is the fix.
Well its more than just line 23. Ive updated the original post to define all 5 areas that need it

Re: Post any OpenCart 1.4.8/1.4.8b Bugs here!

Posted: Fri Jun 18, 2010 7:05 am
by jasonk
16x16px icons

This is kind of a bug. They 16x16 icons are coded into the images directory of the template. So if you copy the default template and change the icons you need to either change all the code references to the new template name or save them under the default template and that is good.

They should be moved to ..catalog/images directory and recoded accordingly.

Not a big problem problem but it should be fixed.

Re: Post any OpenCart 1.4.8/1.4.8b Bugs here!

Posted: Fri Jun 18, 2010 7:41 am
by Qphoria
jasonk wrote:16x16px icons

This is kind of a bug. They 16x16 icons are coded into the images directory of the template. So if you copy the default template and change the icons you need to either change all the code references to the new template name or save them under the default template and that is good.

They should be moved to ..catalog/images directory and recoded accordingly.

Not a big problem problem but it should be fixed.
Well a tpl file is divided by a theme name for a reason, so there is technically nothing wrong with the images being hard coded into the tpl files. However, they should be added to the stylesheet instead of hardcoded to be even easier to work with.

Re: Post any OpenCart 1.4.8/1.4.8b Bugs here!

Posted: Fri Jun 18, 2010 11:47 am
by Qphoria
For those getting "Error: Email to required!"
This is due to the additional alert email check adding a single "blank" email to the additional email list.

-EDIT- This also seems to be causing the "Please Wait" message on some payment modules, and hanging on others. The error prevents the function from returning back.

Quick fix:

1. EDIT: catalog/model/checkout/order.php

2. FIND (~line 379):

Code: Select all

// Send to additional alert emails
$emails = explode(',', $this->config->get('config_alert_emails'));
foreach ($emails as $email) {
    $mail->setTo($email);
    $mail->send();
} 
3. REPLACE WITH:

Code: Select all

// Send to additional alert emails
$emails = explode(',', $this->config->get('config_alert_emails'));
foreach ($emails as $email) {
    if ($email) {
        $mail->setTo($email);
        $mail->send();
    }
}