Community Forums

Post any OpenCart 1.4.9.1 Bugs here!

Bug reports here

Re: Post any OpenCart 1.4.9.1 Bugs here!

Postby Qphoria » Sun Oct 03, 2010 3:03 am

would need a link
Image Image
Donate!|OpenCart Basics|GeoZones
Help me get more development cloud storage - Click Here to get DropBox
User avatar
Qphoria
Administrator
 
Posts: 18209
Joined: Mon Jul 21, 2008 7:02 pm
Donate to Qphoria

Re: Post any OpenCart 1.4.9.1 Bugs here!

Postby Johnathan » Sun Oct 03, 2010 1:43 pm

Brook wrote:For some reason the $ amount that was charged to the customer via PayPal was $138.56 not $137.74 (the OpenCart order total). Should the customer be charged the same $ amount in PayPal that was recorded in OpenCart?

When I log into PayPal to look at the transaction I see that the customer was charged $138.56.
What is going on? Why would PayPal not be charged the same dollar amount $137.74 that was recorded in OpenCart


It could be the same issue I was having on page 3 of this thread.
Image
ImageImageImageImageImageImageImageImageImage
User avatar
Johnathan
Global Moderator
 
Posts: 2866
Joined: Thu Dec 17, 2009 7:08 pm

Re: Post any OpenCart 1.4.9.1 Bugs here!

Postby Solarxp » Mon Oct 04, 2010 12:36 am

I'm having a problem with PayPal standard - it only takes the cost of the goods sold and not the postage/shipping amount. Everything is showing up correctly on the OpenCart checkout/order.

I'm obviously missing something somewhere so any help would be appreciated.
Solarxp
 
Posts: 6
Joined: Fri Jul 16, 2010 1:32 am

Re: Post any OpenCart 1.4.9.1 Bugs here!

Postby Qphoria » Mon Oct 04, 2010 2:13 pm

Solarxp wrote:I'm having a problem with PayPal standard - it only takes the cost of the goods sold and not the postage/shipping amount. Everything is showing up correctly on the OpenCart checkout/order.

I'm obviously missing something somewhere so any help would be appreciated.


And without a link it is a complete waste of a post
Image Image
Donate!|OpenCart Basics|GeoZones
Help me get more development cloud storage - Click Here to get DropBox
User avatar
Qphoria
Administrator
 
Posts: 18209
Joined: Mon Jul 21, 2008 7:02 pm
Donate to Qphoria

Re: Post any OpenCart 1.4.9.1 Bugs here!

Postby Xsecrets » Mon Oct 04, 2010 4:44 pm

there is a bug in admin/model/localisation/geo_zone.php

the deleteGeoZone function.
Code: Select all
public function deleteGeoZone($geo_zone_id) {
        
$this->db->query("DELETE FROM " DB_PREFIX "geo_zone WHERE geo_zone_id = '" . (int)$geo_zone_id "'");
        
$this->db->query("DELETE FROM " DB_PREFIX "zone_to_geo_zone WHERE zone_id = '" . (int)$geo_zone_id "'");

        
$this->cache->delete('geo_zone');
    } 

should be
Code: Select all
public function deleteGeoZone($geo_zone_id) {
        
$this->db->query("DELETE FROM " DB_PREFIX "geo_zone WHERE geo_zone_id = '" . (int)$geo_zone_id "'");
        
$this->db->query("DELETE FROM " DB_PREFIX "zone_to_geo_zone WHERE geo_zone_id = '" . (int)$geo_zone_id "'");

        
$this->cache->delete('geo_zone');
    } 


in the second delete you are matching on zone_id instead of geo_zone_id and this leave extraneous crap in the zone_to_geo_zone table after you delete a geo zone.
Xsecrets
 
Posts: 5042
Joined: Sat Oct 24, 2009 7:51 pm
Location: FL US

Re: Post any OpenCart 1.4.9.1 Bugs here!

Postby Qphoria » Mon Oct 04, 2010 5:22 pm

Xsecrets wrote:there is a bug in admin/model/localisation/geo_zone.php

the deleteGeoZone function.
Code: Select all
public function deleteGeoZone($geo_zone_id) {
        $this->db->query("DELETE FROM " . DB_PREFIX . "geo_zone WHERE geo_zone_id = '" . (int)$geo_zone_id . "'");
        $this->db->query("DELETE FROM " . DB_PREFIX . "zone_to_geo_zone WHERE zone_id = '" . (int)$geo_zone_id . "'");

        $this->cache->delete('geo_zone');
    } 

should be
Code: Select all
public function deleteGeoZone($geo_zone_id) {
        $this->db->query("DELETE FROM " . DB_PREFIX . "geo_zone WHERE geo_zone_id = '" . (int)$geo_zone_id . "'");
        $this->db->query("DELETE FROM " . DB_PREFIX . "zone_to_geo_zone WHERE geo_zone_id = '" . (int)$geo_zone_id . "'");

        $this->cache->delete('geo_zone');
    } 


in the second delete you are matching on zone_id instead of geo_zone_id and this leave extraneous crap in the zone_to_geo_zone table after you delete a geo zone.


Wow nice find. That hasn't changed since like 1.0
Image Image
Donate!|OpenCart Basics|GeoZones
Help me get more development cloud storage - Click Here to get DropBox
User avatar
Qphoria
Administrator
 
Posts: 18209
Joined: Mon Jul 21, 2008 7:02 pm
Donate to Qphoria

Re: Post any OpenCart 1.4.9.1 Bugs here!

Postby JAY6390 » Mon Oct 04, 2010 5:25 pm

wow, that's scary! :P I guess it doesn't get used much eh? Nicely spotted!
ImageImageImage

Better Product SEO URL's - Perfectly structured product links
Better Category SEO URL's - Give subcategories the same SEO keyword
SEO URL's Route Editor - Fix all of your index.php links


Image
User avatar
JAY6390
 
Posts: 4635
Joined: Wed May 26, 2010 3:47 pm
Location: United Kingdom

Re: Post any OpenCart 1.4.9.1 Bugs here!

Postby Xsecrets » Mon Oct 04, 2010 6:40 pm

yeah I'm working on a tax lookup mod for a client and all the extra data in the table was confusing me so I had to go figure out where it was coming from.
Xsecrets
 
Posts: 5042
Joined: Sat Oct 24, 2009 7:51 pm
Location: FL US

Re: Post any OpenCart 1.4.9.1 Bugs here!

Postby csleepg » Wed Oct 06, 2010 1:16 am

Hi,
I notice when SEO is enabled, if you have categories / information link and etc with a symbol "&" as shown in picture. All the information will become blank when click on the link.
aa.jpg
aa.jpg (102.23 KiB) Viewed 1768 times
csleepg
 
Posts: 26
Joined: Mon Feb 02, 2009 2:13 am

Re: Post any OpenCart 1.4.9.1 Bugs here!

Postby suryavikas » Wed Oct 06, 2010 2:36 am

Hello,

Thanks for providing this newer version, it works great But I found out an issue with PNG conversion

This feature works great with Smaller image but when we scale the image to the size of 500X500 the background transparency goes off.

A simple fix to this issue is adding these lines
Code: Select all
imagealphablending($this->image, true); // setting alpha blending on
imagesavealpha($this->image, true); // save alphablending setting (important)  

in system/library/image.php look for the function save and replace the png else if with this one
Code: Select all
elseif($extension == ‘png’) {
imagealphablending($this->image, true); // setting alpha blending on
imagesavealpha($this->image, true); // save alphablending setting (important)
imagepng($this->image, $file, 0);
}
 

And thats all we need to do.

Cheers
Surya
suryavikas
 
Posts: 1
Joined: Wed Oct 06, 2010 2:34 am

Re: Post any OpenCart 1.4.9.1 Bugs here!

Postby polojones » Wed Oct 06, 2010 6:17 pm

Version 1.4.9.1
Clean install

Today two different installs have had problems arise;

When logging in, the details are correct but upon logging in I am faced once again with the login page.
When using erroneous details, an error message appears.
When using correct details, the login page re-loads itself instead of going in to the admin control panel.

And

When shopping, items will add to the cart, but when viewing basket or checkout, the shopping cart is empty.

Additionally, one of the websites has somehow looked to have corrupted itself. None of the pictures display.

One has SSL and the other does not have SSL.

I am stuck with what to look for. I believe it has something to do with sessions but where to begin?
Additionally, this logging in problem happened yesterday too but fixed itself without any action from me.
polojones
 
Posts: 5
Joined: Thu Sep 23, 2010 11:03 am

Re: Post any OpenCart 1.4.9.1 Bugs here!

Postby i2Paq » Wed Oct 06, 2010 6:33 pm

Qphoria wrote:
Xsecrets wrote:there is a bug in admin/model/localisation/geo_zone.php

the deleteGeoZone function.
Code: Select all
public function deleteGeoZone($geo_zone_id) {
        $this->db->query("DELETE FROM " . DB_PREFIX . "geo_zone WHERE geo_zone_id = '" . (int)$geo_zone_id . "'");
        $this->db->query("DELETE FROM " . DB_PREFIX . "zone_to_geo_zone WHERE zone_id = '" . (int)$geo_zone_id . "'");

        $this->cache->delete('geo_zone');
    } 

should be
Code: Select all
public function deleteGeoZone($geo_zone_id) {
        $this->db->query("DELETE FROM " . DB_PREFIX . "geo_zone WHERE geo_zone_id = '" . (int)$geo_zone_id . "'");
        $this->db->query("DELETE FROM " . DB_PREFIX . "zone_to_geo_zone WHERE geo_zone_id = '" . (int)$geo_zone_id . "'");

        $this->cache->delete('geo_zone');
    } 


in the second delete you are matching on zone_id instead of geo_zone_id and this leave extraneous crap in the zone_to_geo_zone table after you delete a geo zone.


Wow nice find. That hasn't changed since like 1.0


That deserves a reward!! :drunk:
Norman in 't Veldt
Moderator OpenCart Forums

_________________ READ and Search BEFORE POSTING _________________
Our FREE search: Find your answer FAST!.

First Things First: Opencart Check List.
Documentation: Our Documentation section.
BUGs?: Known BUGS for All OC Versions.

Problemen met de BTW?: [How to] BTW + Verzend & betaalmethodes.
User avatar
i2Paq
Global Moderator
 
Posts: 9764
Joined: Mon Nov 09, 2009 11:00 am
Location: Winkel - The Netherlands

Re: Post any OpenCart 1.4.9.1 Bugs here!

Postby Brook » Wed Oct 06, 2010 7:38 pm

I have Opencart v149.1 installed

Saw the following message in my Admin Error Log, does anyone know what this error message means, how do I fix the error?
Code: Select all
2010-10-06 19:13:31 - PHP Warning:  fopen(/homepages/15/d244334450/htdocs/websites/prod_region/retail/oc149_shopcelebrity/system/cache/cache.category.129.1.0.1286396010) [<a href='function.fopen'>function.fopen</a>]: failed to open stream: No such file or directory in /homepages/15/d244334450/htdocs/websites/prod_region/retail/oc149_shopcelebrity/system/library/cache.php on line 26
2010-10-06 19:13:31 - PHP Warning:  filesize() [<a href='function.filesize'>function.filesize</a>]: stat failed for /homepages/15/d244334450/htdocs/websites/prod_region/retail/oc149_shopcelebrity/system/cache/cache.category.129.1.0.1286396010 in /homepages/15/d244334450/htdocs/websites/prod_region/retail/oc149_shopcelebrity/system/library/cache.php on line 27
2010-10-06 19:13:31 - PHP Warning:  fread(): supplied argument is not a valid stream resource in /homepages/15/d244334450/htdocs/websites/prod_region/retail/oc149_shopcelebrity/system/library/cache.php on line 27
2010-10-06 19:13:31 - PHP Warning:  fclose(): supplied argument is not a valid stream resource in /homepages/15/d244334450/htdocs/websites/prod_region/retail/oc149_shopcelebrity/system/library/cache.php on line 29
Brook
 
Posts: 437
Joined: Tue Feb 23, 2010 4:15 pm

Re: Post any OpenCart 1.4.9.1 Bugs here!

Postby Xenn » Wed Oct 06, 2010 9:45 pm

USPS shipping extension does not show the estimated delivery times as detailed here:
viewtopic.php?f=22&t=13636&p=67109

USPS shipping extension also does not allow for weight of over 70 LB to be calculated (even if spread across multiple packages) as detailed here:
viewtopic.php?f=114&t=20926
Xenn
 
Posts: 8
Joined: Thu Sep 23, 2010 8:57 pm

Re: Post any OpenCart 1.4.9.1 Bugs here!

Postby g0606e » Thu Oct 07, 2010 3:22 am

Everyone,

We have enjoyed using opencart to learn about online shopping carts. As we are testing, we have found something unusual as it concerns the checkout process. We currently are using the authorize.net AIM feature with version 1.4.9.1 of opencart. When "USE SSL" is set to "NO", everything works great without any problems. However, as soon as USE SSL is set to YES, then we run into problems. The link re-direction works great and the server correctly switches over to HTTPS, however the checkout process hangs on the final confirmation step when the credit card info has been asked for. In the first case when I look at my authorize.net account, the transaction has processed correctly. In the second case, authorize.net does not even get the transaction.

The server is a centos linux box running cpanel. We have root access to the server and there is nothing else currently installed on the server other than open cart.

Any guidance would be appreciated.

Thanks,
George
g0606e
 
Posts: 14
Joined: Thu Oct 07, 2010 3:18 am

Re: Post any OpenCart 1.4.9.1 Bugs here!

Postby g0606e » Thu Oct 07, 2010 3:51 am

Everyone,

We have enjoyed using opencart to learn about online shopping carts. As we are testing, we have found something unusual as it concerns the checkout process. We currently are using the authorize.net AIM feature with version 1.4.9.1 of opencart. When "USE SSL" is set to "NO", everything works great without any problems. However, as soon as USE SSL is set to YES, then we run into problems. The link re-direction works great and the server correctly switches over to HTTPS, however the checkout process hangs on the final confirmation step when the credit card info has been asked for. In the first case when I look at my authorize.net account, the transaction has processed correctly. In the second case, authorize.net does not even get the transaction.

Here is what I see in the error log...................

2010-10-07 2:46:33 - PHP Notice: Undefined index: order_id in /home/steph/public_html/catalog/controller/payment/authorizenet_aim.php on line 63
2010-10-07 2:46:33 - PHP Notice: Undefined index: cc_number in /home/steph/public_html/catalog/controller/payment/authorizenet_aim.php on line 90
2010-10-07 2:46:33 - PHP Notice: Undefined index: cc_expire_date_month in /home/steph/public_html/catalog/controller/payment/authorizenet_aim.php on line 91
2010-10-07 2:46:33 - PHP Notice: Undefined index: cc_expire_date_year in /home/steph/public_html/catalog/controller/payment/authorizenet_aim.php on line 91
2010-10-07 2:46:33 - PHP Notice: Undefined index: cc_cvv2 in /home/steph/public_html/catalog/controller/payment/authorizenet_aim.php on line 92

The server is a centos linux box running cpanel. We have root access to the server and there is nothing else currently installed on the server other than open cart.

Any guidance would be appreciated.

Thanks,
George Eivaz
Last edited by g0606e on Fri Oct 08, 2010 1:12 am, edited 1 time in total.
g0606e
 
Posts: 14
Joined: Thu Oct 07, 2010 3:18 am

Re: Post any OpenCart 1.4.9.1 Bugs here!

Postby mondy » Thu Oct 07, 2010 9:59 pm

Qphoria wrote:Yea thats right

Current Active Bugs + Fixes:
- BUG: Deleting orders throws error "Notice: Undefined index: subtract" [FIX]
- BUG: Email address fields do not support "-" dash characters. [FIX]
- BUG: Guest Checkout adds store tax even when from a non-taxable address [FIX]
- BUG: Images with uppercase extensions don't resize properly [FIX]
- BUG: CSRF vulnerability in 1.4.8, 1.4.9, and 1.4.9.1 [FIX]
- BUG: Geo Zones not deleting properly [FIX]


b"h

HI,
Q, can you clarify please:

a.) Is this bugs list for OC 1.4.9.1 is upadtaed ?
b.) is the OC 1.4.9.1 file included all this bug fixing ?

Thanks in advance,
and thanks for all OpenCart developers.

Mo.
mondy
 
Posts: 50
Joined: Tue Nov 11, 2008 12:01 am

Re: Post any OpenCart 1.4.9.1 Bugs here!

Postby jefrey1983 » Sat Oct 09, 2010 2:04 pm

image align in welcome store admin buggy doesn't add br or align properly
User avatar
jefrey1983
 
Posts: 386
Joined: Sat Jan 30, 2010 10:58 am

Re: Post any OpenCart 1.4.9.1 Bugs here!

Postby Xsecrets » Sat Oct 09, 2010 6:04 pm

mondy wrote:
Qphoria wrote:Yea thats right

Current Active Bugs + Fixes:
- BUG: Deleting orders throws error "Notice: Undefined index: subtract" [FIX]
- BUG: Email address fields do not support "-" dash characters. [FIX]
- BUG: Guest Checkout adds store tax even when from a non-taxable address [FIX]
- BUG: Images with uppercase extensions don't resize properly [FIX]
- BUG: CSRF vulnerability in 1.4.8, 1.4.9, and 1.4.9.1 [FIX]
- BUG: Geo Zones not deleting properly [FIX]


b"h

HI,
Q, can you clarify please:

a.) Is this bugs list for OC 1.4.9.1 is upadtaed ?
b.) is the OC 1.4.9.1 file included all this bug fixing ?

Thanks in advance,
and thanks for all OpenCart developers.

Mo.

no those are a list of known bugs in 1.4.9.1 and links to the fixes that you will have to apply yourself.
Xsecrets
 
Posts: 5042
Joined: Sat Oct 24, 2009 7:51 pm
Location: FL US

Re: Post any OpenCart 1.4.9.1 Bugs here!

Postby jefrey1983 » Sun Oct 10, 2010 2:05 am

I applied all the fixes but does not resolve the bug i encountered, probably not related to the fixes / new glitch/bug ???
User avatar
jefrey1983
 
Posts: 386
Joined: Sat Jan 30, 2010 10:58 am

PreviousNext

Return to Bug Reports

Who is online

Users browsing this forum: Google Feedfetcher and 25 guests

Hosted by Arvixe Web Hosting