Community Forums

OpenCart 1.5.3 Bug Thread

Bug reports here

Re: OpenCart 1.5.3 Bug Thread

Postby ADD Creative » Mon Jul 16, 2012 10:37 am

obiwahn wrote:BUG B)
--------

Every ca. 10th time I load your opencart demo or my shop, the buttons get white on hover (i.e. the button-active image is not loaded)

I have seen this also. It looks like the background image is not being loaded in time. The file "button-active.png" is 49,929 bytes in size. If I run it through a PNG compressor I get 193 bytes. I have attached the smaller button images and a zip file or a few more images that I put through a PNG compressor.

Also changing:
Code: Select all
a.button:hover, input.button:hover {
   background: url('../image/button-active.png') repeat-x;
}

to something like below might help a bit.

Code: Select all
a.button:hover, input.button:hover {
   background: #0D6288 url('../image/button-active.png') repeat-x;
}
Attachments
image.zip
(11.49 KiB) Downloaded 49 times
button-active.png
button-active.png (193 Bytes) Viewed 1326 times
button.png
button.png (183 Bytes) Viewed 1326 times
ADD Creative
 
Posts: 181
Joined: Fri Jan 13, 2012 5:02 pm

Re: OpenCart 1.5.3 Bug Thread

Postby gambit » Mon Jul 16, 2012 3:35 pm

Don't know if its a bug or not but just realised that all of my products in the backend have reverted back to the bogstandard instalation choices. Yet the front end is still showing all the products.
gambit
 
Posts: 7
Joined: Thu Jul 12, 2012 3:58 pm

Re: OpenCart 1.5.3 Bug Thread

Postby punkerben » Mon Jul 16, 2012 6:34 pm

Weight based shipping under One (ie .5lb), gives error "Message: Package 1 - Weight is missing or invalid."
using FedEx shipping module
and opencart 1.5.3.1
punkerben
 
Posts: 5
Joined: Thu Aug 19, 2010 2:37 pm

Re: OpenCart 1.5.3 Bug Thread

Postby asphole » Tue Jul 17, 2012 1:48 pm

Hi,

I dont know if this is a bug or if i've screwed something up due to the 6hrs sleep in the last 3 days! I've just upgraded to 1.5.3.1 and the sale order information appears incorrectly.

I have a product that sells for £8.325 (+20%VAT)(Total: £9.99)

A customer just purchased 2 of these but when i view the customer sales order I get the following information:

Qty x 2 | Unit Price £11.66 | Total £23.31

Sub-Total: £16.65
Post: £2.99
UK VAT: £3.33
Total: £22.97

So the subtotal onwards in correct but the unit price and total in the product colums are not. Where does it get these figures from? It seems fine if a customer only orders 1 item.

Would love some help on this one!!
asphole
 
Posts: 176
Joined: Mon Mar 14, 2011 1:33 am

Bug - Unable to select option from drop down that is out of

Postby lovol2 » Tue Jul 17, 2012 7:23 pm

Hi All - first bug post but here goes.

Title
Unable to select option from drop down that is out of stock, regardless of store stock checkout setting.

Prerequisits
1 product in store with two options, say small and large.
Have the large option stock count set to -1, the small option stock cound set to +66

Store Settings:
Stock->Stock Checkout-> Yes (allow customer to still checkout if the products they are ordering are not in stock)

Steps to reproduce
1. visit the product in the front office
2. commence to select an option, notice Large is not visible
3. in back office, change the stock count to +3 for Large option
4. refresh page of product. Notice Large is now an available option.

Expected Result
Because option 'stock checkout' is yes, I would expect the whole system/opencart to ignore stock levels, regardless of their values.

Comments
Although in my case I use the stock levels as actual levels we have, and order more as needed, so was wondering why people wern't ordering large!

I hope that makes sense.

kind regards

adam
lovol2
 
Posts: 14
Joined: Tue Mar 23, 2010 10:41 pm

Re: OpenCart 1.5.3 Bug Thread

Postby test1.0 » Tue Jul 17, 2012 7:52 pm

fresh default install

1.5.3.1 error log HTTP_HOST

Code: Select all
[16-Jul-2012 09:54:13 UTC] PHP Notice:  Undefined index: HTTP_HOST in /home/xxxxxx/public_html/index.php on line 45


Code: Select all
   $store_query = $db->query("SELECT * FROM " . DB_PREFIX . "store WHERE REPLACE(`url`, 'www.', '') = '" . $db->escape('http://' . str_replace('www.', '', $_SERVER['HTTP_HOST']) . rtrim(dirname($_SERVER['PHP_SELF']), '/.\\') . '/') . "'");
test1.0
 
Posts: 139
Joined: Sun Mar 25, 2012 7:46 pm

Re: OpenCart 1.5.3 Bug Thread

Postby test1.0 » Wed Jul 18, 2012 11:24 am

anyone? i dont get this problem in 1.5.2.1
test1.0
 
Posts: 139
Joined: Sun Mar 25, 2012 7:46 pm

Re: OpenCart 1.5.3 Bug Thread

Postby ermotorsport » Wed Jul 18, 2012 3:21 pm

Hello,

I'm getting the following error message:

Notice: Undefined index: bottom in /home2/xxx/public_html/catalog/controller/common/footer.php on line 26

Does anyone have any thoughts?
ermotorsport
 
Posts: 2
Joined: Wed Jul 18, 2012 1:43 am

Re: OpenCart 1.5.3 Bug Thread

Postby ADD Creative » Wed Jul 18, 2012 4:16 pm

test1.0 wrote:anyone? i dont get this problem in 1.5.2.1

HTTP_HOST is a server variable. Ether there is a problem with the server set up or it is caused by a HTTP GET without sending a hostname. What are you doing when you get the error?
ADD Creative
 
Posts: 181
Joined: Fri Jan 13, 2012 5:02 pm

Re: OpenCart 1.5.3 Bug Thread

Postby test1.0 » Wed Jul 18, 2012 4:20 pm

well i have installed my ssl, maybe thats it. im just running some more tests now
test1.0
 
Posts: 139
Joined: Sun Mar 25, 2012 7:46 pm

Re: OpenCart 1.5.3 Bug Thread

Postby ADD Creative » Wed Jul 18, 2012 4:48 pm

The <MonetaryValue> field in the UPS shipping module is affected by the Display Prices With Tax option in the Option tab of the store settings.

The cost of the goods are the same whether you are displaying prices with tax or not. This could leave to being under insured if you are displaying ex. tax prices on your store.

In catalog\model\shipping\ups.php getTotal is called to get the value.
Code: Select all
            $xml .= '                   <MonetaryValue>' . $this->currency->format($this->cart->getTotal(), false, false, false) . '</MonetaryValue>';

So in system\library\cart.php the line:
Code: Select all
         $total += $this->tax->calculate($product['total'], $product['tax_class_id'], $this->config->get('config_tax'));

Should be
Code: Select all
         $total += $this->tax->calculate($product['total'], $product['tax_class_id']);
ADD Creative
 
Posts: 181
Joined: Fri Jan 13, 2012 5:02 pm

Re: OpenCart 1.5.3 Bug Thread

Postby test1.0 » Wed Jul 18, 2012 11:26 pm

sorry to waste your time, im getting this even on my other sit running 1521, i wonder if my host has changed something
test1.0
 
Posts: 139
Joined: Sun Mar 25, 2012 7:46 pm

Re: OpenCart 1.5.3 Bug Thread

Postby daisybeedesign » Fri Jul 20, 2012 7:09 pm

robster wrote:I also have a problem with VAT number being shown as not valid. I have entered a known working VAT number (I also checked directly on the VAT validation site to confirm) but no matter how I enter it (i.e., with or without the country code, with or without spaces, etc) it says my VAT number is invalid.

Is there any guidance with how this system should work or is this a bug?

robster


I have the exact same issue - no matter how a valid vat no is entered - I get an invalid vat no error and can't go any further.... HELP!
daisybeedesign
 
Posts: 29
Joined: Tue Jan 17, 2012 4:44 pm

Re: OpenCart 1.5.3 Bug Thread

Postby ADD Creative » Fri Jul 20, 2012 11:11 pm

daisybeedesign wrote:
robster wrote:I also have a problem with VAT number being shown as not valid. I have entered a known working VAT number (I also checked directly on the VAT validation site to confirm) but no matter how I enter it (i.e., with or without the country code, with or without spaces, etc) it says my VAT number is invalid.

Is there any guidance with how this system should work or is this a bug?

robster


I have the exact same issue - no matter how a valid vat no is entered - I get an invalid vat no error and can't go any further.... HELP!

Have you applied this patch?

http://code.google.com/p/opencart/source/detail?r=1119
ADD Creative
 
Posts: 181
Joined: Fri Jan 13, 2012 5:02 pm

Re: OpenCart 1.5.3 Bug Thread

Postby daisybeedesign » Sat Jul 21, 2012 8:17 am

Hello Big thanks to Add Craetive & Robster for the link to teh google files.

I've went through and applied thos fixes but I am now getting another error

Warning: file_get_contents(http://ec.europa.eu/taxation_customs/vi ... GB&vat=897 9527 37) [function.file-get-contents]: failed to open stream: HTTP request failed! HTTP/1.1 406 Not Acceptable in /home/rosatrad/public_html/system/helper/vat.php on line 39Warning: Cannot modify header information - headers already sent by (output started at /home/rosatrad/public_html/index.php:104) in /home/rosatrad/public_html/vqmod/vqcache/vq2-system_engine_controller.php on line 28Warning: Cannot modify header information - headers already sent by (output started at /home/rosatrad/public_html/index.php:104) in /home/rosatrad/public_html/vqmod/vqcache/vq2-system_engine_controller.php on line 29

Apologies if I am posting this in the wrong place but after applying the Google code fixes this is now what appears when I try and create an account (you can only view prices after your account has been approved) - I was simply getting an "invalid vat" error before.
daisybeedesign
 
Posts: 29
Joined: Tue Jan 17, 2012 4:44 pm

Re: OpenCart 1.5.3 Bug Thread

Postby daisybeedesign » Sat Jul 21, 2012 8:39 am

sorry just a further update.

On applying the fixes for the vat - once you go past the error message (as per above) screen - despite not being approved I could view prices for products, despite the store being set to hide these until a customer has been approved.

I can login in and view prices despite not being approved.

I've removed these fixes and the account functionality is back to how it was before where you need to be approved before you can view prices and buy.

I think there may need to be a compromise between validating vat and running the store as it needs to be with prices only being shown to approved customers.
daisybeedesign
 
Posts: 29
Joined: Tue Jan 17, 2012 4:44 pm

Re: OpenCart 1.5.3 Bug Thread

Postby disgruntled » Sun Jul 22, 2012 3:20 am

Not sure if this is bug? But worth noting. When a customer registers an account and comes back later and changes the information like the state they live in, address, etc, the tax/zone information is not applied to the new address. v1.5.3.1
disgruntled
 
Posts: 12
Joined: Tue Mar 13, 2012 8:31 pm

Re: OpenCart 1.5.3 Bug Thread

Postby ADD Creative » Mon Jul 23, 2012 12:00 pm

The breadcrumbs on the 404 not found error page uses the content and not the title for the breadcrumb link text. This causes problems if you make the not found text longer or add links to it.

In catalog\controller\error\not_found.php replace line 18:
Code: Select all
              'text'      => $this->language->get('text_error'),

with this:
Code: Select all
            'text'      => $this->language->get('heading_title'),
ADD Creative
 
Posts: 181
Joined: Fri Jan 13, 2012 5:02 pm

Re: OpenCart 1.5.3 Bug Thread

Postby luapko » Mon Jul 23, 2012 3:37 pm

Hi,

I'm using webshop 1.5.3.1 and when customer with hotmail.com email address order a product he not recieving an confirmation email. This problem is only with customers who have hotmail.com email addresses.

Thank you for your help.
luapko
 
Posts: 7
Joined: Fri Apr 27, 2012 9:25 pm

Re: OpenCart 1.5.3 Bug Thread

Postby daisybeedesign » Mon Jul 23, 2012 3:44 pm

Hi Lupako

If this is only one customer I would simply say this has probably gone into his spam/junk mail.

If this has happened with 20+ hotmail accounts - Hotmail may have blacklisted your domain name.

But this is not a 1.531 bug (I have placed a test order on a 1.531 store and got an email no probs)
daisybeedesign
 
Posts: 29
Joined: Tue Jan 17, 2012 4:44 pm

PreviousNext

Return to Bug Reports

Who is online

Users browsing this forum: No registered users and 19 guests

Hosted by Arvixe Web Hosting