Page 3 of 12

Re: OpenCart 2.0 BUG Topic

Posted: Mon Oct 06, 2014 11:49 pm
by neufke
i2Paq wrote:
Timerman wrote:
3) I Had tried a fresh install of V2.0 in a Directory i.e my domain com/store and it didn't want to work at all it was either blank pages or error pages all the time when going to admin
I have no issues with a clean install.
No but the majority of the users aren't performing a clean install so what is the point of mentioning this little fact?

Re: OpenCart 2.0 BUG Topic

Posted: Tue Oct 07, 2014 12:17 am
by sunkawakan
Fresh 2.0 install.

Installation went OK. Well, had to modify /etc/apache2/sites-available/default-ssl and change "AllowOverride None" to "AllowOverride All" to have the SEO URLs to work.

Done a first test order and now I'm unable to delete it. Got this message while trying: Warning: CURL error couldn't connect to host(7)!

Changed HTTP_SERVER and HTTPS_SERVER on both config.php files after doing the order and before trying to delete it. Maybe it has something to do with the error.

No errors on error.log

It is safe to just delete the order on the database?

Thank you!

OpenCart 2.0 didn't work with Firerfox

Posted: Tue Oct 07, 2014 1:39 am
by Buttonfactory
OC2 didn't work with Firefox (ver 32):

- in the admin section I couldn't add graphics to nothing, it kicks me out with an session error
- in catalog -product- detail view I get NO arrow for the next picture, no crossing for closing the window.

In InternetExlorer this works..

Re: OpenCart 2.0 BUG Topic

Posted: Tue Oct 07, 2014 2:41 am
by businessdevcentre
I was getting the DIR_MODIFICATION error.
I added define('DIR_MODIFICATION', '/home/couturec/public_html/system/modification/'); to the config.

That took care of that but I'm getting another error.

Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 36 bytes) in /home/couturec/public_html/system/library/openbay.php on line 104

I'm getting this error in the store and admin.
It's a blank page with just that error. Can't access anything...

Re: OpenCart 2.0 BUG Topic

Posted: Tue Oct 07, 2014 3:25 am
by i2Paq
businessdevcentre wrote:I was getting the DIR_MODIFICATION error.
I added define('DIR_MODIFICATION', '/home/couturec/public_html/system/modification/'); to the config.

That took care of that but I'm getting another error.

Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 36 bytes) in /home/couturec/public_html/system/library/openbay.php on line 104

I'm getting this error in the store and admin.
It's a blank page with just that error. Can't access anything...
Used our FREE search on Allowed memory size of 67108864 bytes exhausted?

http://forum.opencart.com/viewtopic.php?f=22&t=102258

Re: OpenCart 2.0 BUG Topic

Posted: Tue Oct 07, 2014 3:28 am
by neufke
no_image.jpg gives an error in admin.... i think it's because there is only a no_image.png inside the image directory...

tiny things but so obvious

Re: OpenCart 2.0 BUG Topic

Posted: Tue Oct 07, 2014 6:30 am
by mcurtis
Not sure if i should of posted this here or not.

http://forum.opencart.com/viewtopic.php?f=19&t=131904

Re: OpenCart 2.0 ISSUES Topic

Posted: Wed Oct 08, 2014 2:39 am
by protechtrader
This file appears to be missing causing some apache errors:

"view/image/payment/secure trading.png"

Referenced From Both:
admin\language\english\payment\securetrading_ws.php
admin\language\english\payment\securetrading_pp.php

I downloaded a copy to replace it myself, but I assume if it was referenced in code it should have been included in installation.

Re: OpenCart 2.0 ISSUES Topic

Posted: Wed Oct 08, 2014 11:49 am
by Gilmore
Here's a few bugs I have found in a fresh install of OC2.

In the Admin Dashboard, Sales report with 4 decimal places instead of 2. i.e., $585.0000 instead of $585.00.
Currency is set up correctly with the correct decimal placement.

In the Admin -> Extensions -> Modules -> Account, Affiliate, Category and Filter too.
There is no button to edit. Just an Enable/Disable dropdown.

In the Admin -> Extensions -> Modules -> Bestsellers
When I add a bestseller, it shows this error.

Code: Select all

Notice: Undefined index: image_width in /var/www/oc2/admin/controller/module/bestseller.php on line 111
There are image sizes in both boxes.

In the Admin Dashboard Menu on the left, there is a Progress Box that shows, Orders Completed 100%, but the Status Bar only shows 1/3 of it green. If it's 100%, then shouldn't the whole Status Bar be green vs. 1/3 of it?


This one is just a question - On Admin Dashboard under Total Customer and People Online, shouldn't they show Guests Sales and Guests Online along with signed up accounts?

Re: OpenCart 2.0 ISSUES Topic

Posted: Wed Oct 08, 2014 12:57 pm
by mouncett
is it a bug or did i installed it the wrong way?
please look at the attachment below.
Image

it says email message required but there is already something in the message.
i am new to opencart and planning to build an ecommerce website for my small shop.
hope that any of you can help. btw, this is opencart. 2.0

Re: OpenCart 2.0 ISSUES Topic

Posted: Wed Oct 08, 2014 2:39 pm
by i2Paq
mouncett wrote:is it a bug or did i installed it the wrong way?
please look at the attachment below.

it says email message required but there is already something in the message.
i am new to opencart and planning to build an ecommerce website for my small shop.
hope that any of you can help. btw, this is opencart. 2.0
http://forum.opencart.com/viewtopic.php ... 64#p518664

Re: OpenCart 2.0 ISSUES Topic

Posted: Wed Oct 08, 2014 5:09 pm
by webvet
Gilmore wrote: In the Admin -> Extensions -> Modules -> Bestsellers
When I add a bestseller, it shows this error.

Code: Select all

Notice: Undefined index: image_width in /var/www/oc2/admin/controller/module/bestseller.php on line 111
There are image sizes in both boxes.
Confirmed - I've found this, too. Solution:

In admin/controller/module/bestseller.php find (line 111):

Code: Select all

if (!$value['image_width'] || !$value['image_height']) {
and change to:

Code: Select all

if (!$value['width'] || !$value['height']) {

Re: OpenCart 2.0 ISSUES Topic

Posted: Wed Oct 08, 2014 5:39 pm
by hale
I got this error when add a new category, tested on localhost, disable SEO Url, removed all demo categories and products.
Fatal error: Call to a member function getUrlAlias() on a non-object in F:\wamp\www\oc2\admin\controller\catalog\category.php on line 543

Re: OpenCart 2.0 ISSUES Topic

Posted: Thu Oct 09, 2014 12:40 am
by Gilmore
Thanks webvet! It did the trick!

Re: OpenCart 2.0 ISSUES Topic

Posted: Fri Oct 10, 2014 10:52 am
by Konyali42
I installed clean OC v2.0.0.0 and the ebay module. After click to edit the ebay module i saw some bugs like that.

Notice: Undefined variable: entry_sort_order in /homepages/12/d123456789/htdocs/XXXXX/admin/view/template/module/ebaydisplay.tpl on line 56

Notice: Undefined variable: entry_layout in /homepages/12/d123456789/htdocs/XXXXX/admin/view/template/module/ebaydisplay.tpl on line 79

Notice: Undefined variable: entry_position in /homepages/12/d123456789/htdocs/XXXXX/admin/view/template/module/ebaydisplay.tpl on line 80

entry_status

Notice: Undefined variable: entry_sort_order in /homepages/12/d123456789/htdocs/XXXXX/admin/view/template/module/ebaydisplay.tpl on line 82

Re: OpenCart 2.0 ISSUES Topic

Posted: Fri Oct 10, 2014 1:29 pm
by jigeshgandhi
sir, i have installed opencart 2.0 recently & its fab from 1 point of view,, but one strange proble i am suffering it is my website is not working porperly in IE check link below

mahaasagar.com

the same this is happening with

demo.opencart.com

Re: OpenCart 2.0 ISSUES Topic

Posted: Fri Oct 10, 2014 4:15 pm
by Adsy
Found a bug when uploading a REALLY big image. This will probably not happen to many people, but I accidentally uploaded an image that was around 11000 px x 6500 px (logo before I resized it). It uploaded OK, but the thumbnail could not be generated, so I couldn't upload any more images until I had deleted the offending image.

Tiny issue really but I thought I'd let you lot know.

Re: OpenCart 2.0 ISSUES Topic

Posted: Sat Oct 11, 2014 2:47 am
by dharam81
Hi All,

i have just installed a fresh version 2.0.0 there was no error in installation but after installation by store is not opening correctly.

url is : www.dump4certs.in

please help

Cheers
DK

Re: OpenCart 2.0 ISSUES Topic

Posted: Sat Oct 11, 2014 2:56 am
by demcboon
Hi!
When I try to enable "bestseller" module I`ve got this bug:

Notice: Undefined index: image_width in /home/......../admin/controller/module/bestseller.php on line 111

Does anybody fix this one?

Thanks!

Re: OpenCart 2.0 ISSUES Topic

Posted: Sat Oct 11, 2014 3:07 am
by R_D
After clean install, I added myself as a customer. If I want to edit my address (admin -> Customers -> Customers -> edit -> Address 1) I receive the following:

Notice: Uninitialized string offset: 1 in /var/www/vhosts/mysite.com/shop.mysite.com/admin/view/template/sale/customer_form.tpl on line 332
Notice: Uninitialized string offset: 1 in /var/www/vhosts/mysite.com/shop.mysite.com/admin/view/template/sale/customer_form.tpl on line 341
Notice: Uninitialized string offset: 1 in /var/www/vhosts/mysite.com/shop.mysite.com/admin/view/template/sale/customer_form.tpl on line 356
Notice: Uninitialized string offset: 1 in /var/www/vhosts/mysite.com/shop.mysite.com/admin/view/template/sale/customer_form.tpl on line 371
Notice: Uninitialized string offset: 1 in /var/www/vhosts/mysite.com/shop.mysite.com/admin/view/template/sale/customer_form.tpl on line 395
Notice: Uninitialized string offset: 1 in /var/www/vhosts/mysite.com/shop.mysite.com/admin/view/template/sale/customer_form.tpl on line 405