Page 3 of 6

Re: Post OpenCart 1.4.4 Bugs Here!

Posted: Fri Mar 19, 2010 3:57 am
by Qphoria
Its easy to overlook bugs when you have 50 people attacking you daily. I'm guilty of it too. We're not here to chastise anyone for it. We've resolved it now lets move on to finding more bugs and making OpenCart as stable as possible.

Re: Post OpenCart 1.4.4 Bugs Here!

Posted: Fri Mar 19, 2010 6:30 am
by Daniel
your right it was a big. there is no pride here.

this fix is here:

Code: Select all

if ($config->get('config_ssl')) {
	define('HTTPS_SERVER', 'https://' . substr($config->get('config_url'), 7));
	define('HTTPS_IMAGE', HTTPS_SERVER . 'image/');	
} else {
	define('HTTPS_SERVER', HTTP_SERVER);
	define('HTTPS_IMAGE', HTTP_IMAGE);	
}
just add it to the index.php

Re: Post OpenCart 1.4.4 Bugs Here!

Posted: Fri Mar 19, 2010 6:50 am
by muflon
In 1.4.4 I have two languages and when I edit options in route=catalog/product/update&product_id
I get notice:

Code: Select all

<b>Notice</b>: Undefined index: 1 in <b>C:\wamp\www\pretex_new\admin\view\template\catalog\product_form.tpl</b> on line <b>341</b>
Image

I didn't add anything to this fields but the notice is bug I think.

Also I think enabling and disabling languages in route=localisation/language/update is acting weird (not only in 1.4.4) Setting disabled on languge has no affect on admin. Disabled language keep showing in editing products etc. I don't thing that it is right.

OpenCart v1.4.4

Posted: Fri Mar 19, 2010 7:36 am
by jwcordeiro
Found what I'll call a functional bug in the Manufacturer (Brand) module behavior. The admin allows for a sort_order to be assigned for manufacturers but the module list always sorts alphabetically.

I think that

ModelCatalogManufacturer

Code: Select all

12     if (!$manufacturer) {
13			$query = $this->db->query("SELECT * FROM " . DB_PREFIX . "manufacturer m LEFT JOIN " . DB_PREFIX . "manufacturer_to_store m2s ON (m.manufacturer_id = m2s.manufacturer_id) WHERE m2s.store_id = '" . (int)$this->config->get('config_store_id') . "' ORDER BY m.name");
should be changed to

Code: Select all

12     if (!$manufacturer) {
13			$query = $this->db->query("SELECT * FROM " . DB_PREFIX . "manufacturer m LEFT JOIN " . DB_PREFIX . "manufacturer_to_store m2s ON (m.manufacturer_id = m2s.manufacturer_id) WHERE m2s.store_id = '" . (int)$this->config->get('config_store_id') . "' ORDER BY sort_order, m.name ASC");
in order to respect sort_order choices and also default to alpha when sort_order values are identical.
Some clients work closely with one or two large vendors that they want to push to the top of the selection.

Re: OpenCart v1.4.4

Posted: Fri Mar 19, 2010 8:44 am
by rph
Should be

Code: Select all

sort_order, LCASE(m.name) ASC
because of case sensitivity.

Re: Post OpenCart 1.4.4 Bugs Here!

Posted: Fri Mar 19, 2010 10:55 am
by rph
Don't know if that's a bug. It looks like changes to the template have been made.

Re: Post OpenCart 1.4.4 Bugs Here!

Posted: Fri Mar 19, 2010 11:36 am
by Jacob_chan
allenshea wrote:What should I do with "Approve" in customer, should I Approve all the customer here?

But when I try to Approve customer, I got

Code: Select all

Error: E-Mail sender required!
is this a bug?

I think my mail works, I can got info of Update Order and New Customer mail(added some code in create.php). But I can not got new order, Why?

Thanks,

Allen
Dear daniel, i met the same problem, and you said it's a bug. have you fixed it? Or when you fixed it? Thanks for your great work.

Re: Post OpenCart 1.4.4 Bugs Here!

Posted: Fri Mar 19, 2010 5:23 pm
by allenshea
I have picture problem in Admin -> Mail.

I can receive the mail send from Admin, other links, like below, are working fine,

Code: Select all

http://myweb.com/index.php?route=product/product&path=35_74&product_id=808
but inserted the link of picture and inserted image doesn't show right,

Original link is

Code: Select all

http://myweb.com/image/data/enginec100.jpg
I got

Code: Select all

cid:4893ec1bd601657a59ab921f70403614.jpg
The inserted picture doesn't show, it is a blank space, Why?

Let me know if this is a Bug. Hope can revise it in next version.

Thanks

Allen

Re: Post OpenCart 1.4.4 Bugs Here!

Posted: Fri Mar 19, 2010 5:41 pm
by ThanksToDaniel
ThanksToDaniel wrote:
Daniel wrote:SAFE MODE Restriction in effect.

contact your host.
Thanks, I´ve done that know, and they will do it as soon as possible! O0

Damn good work you´re doing !

Best Rgds
"Problem" solved by my host. Works fine now..!

Re: Post OpenCart 1.4.4 Bugs Here!

Posted: Fri Mar 19, 2010 6:04 pm
by muflon
I think that pagination in route=product/search doesn't work

Re: Post OpenCart 1.4.4 Bugs Here!

Posted: Fri Mar 19, 2010 10:13 pm
by audiomarket
If in the your language file there are s% it dont work!

Change s% to {start}

Re: Post OpenCart 1.4.4 Bugs Here!

Posted: Fri Mar 19, 2010 11:57 pm
by Daniel
allenshea wrote:I have picture problem in Admin -> Mail.

I can receive the mail send from Admin, other links, like below, are working fine,

Code: Select all

http://myweb.com/index.php?route=product/product&path=35_74&product_id=808
but inserted the link of picture and inserted image doesn't show right,

Original link is

Code: Select all

http://myweb.com/image/data/enginec100.jpg
I got

Code: Select all

cid:4893ec1bd601657a59ab921f70403614.jpg
The inserted picture doesn't show, it is a blank space, Why?

Let me know if this is a Bug. Hope can revise it in next version.

Thanks

Allen
I don't need to revise it!

I don't know why its not working for you. it works fine for me. the image name has been changed to remove any spaces or weird characters in the filename can disrupt the header.

Re: Post OpenCart 1.4.4 Bugs Here!

Posted: Sat Mar 20, 2010 5:05 am
by noxqs
I've searched and can't seem to find a solution for this.
I did a fresh install of 1.4.4 with no issues or errors. Permissions are set and everything passed on install validation.

The problem I'm having is that when I change templates, nothing changes. It reverts to the default every time. I've tried several different templates and keep encountering the same problem.

Any ideas or fixes?

Re: Post OpenCart 1.4.4 Bugs Here!

Posted: Sat Mar 20, 2010 5:09 am
by i2Paq
noxqs wrote:I've tried several different templates and keep encountering the same problem.
1.4.4 templates?

Re: Post OpenCart 1.4.4 Bugs Here!

Posted: Sat Mar 20, 2010 5:29 am
by noxqs
i2Paq wrote:
noxqs wrote:I've tried several different templates and keep encountering the same problem.
1.4.4 templates?
allegedly!

Most listed as 1.4.*

Re: Post OpenCart 1.4.4 Bugs Here!

Posted: Sat Mar 20, 2010 6:38 am
by DoctorQ
I test version 1.4.4

If I add new product...
In the file manager:
- Does not add images (all the time is loading)
- I can not rename folders (SUBMIT button is not responding)
- Do not open the tree IMAGES, at the time of loading is shown - then disappears

where to find the error?

Re: Post OpenCart 1.4.4 Bugs Here!

Posted: Sat Mar 20, 2010 8:24 am
by Daniel
DoctorQ wrote:I test version 1.4.4

If I add new product...
In the file manager:
- Does not add images (all the time is loading)
- I can not rename folders (SUBMIT button is not responding)
- Do not open the tree IMAGES, at the time of loading is shown - then disappears

where to find the error?
this is down to permissions problem on you images directory!

its not a bug because mine works fine.

Re: Post OpenCart 1.4.4 Bugs Here!

Posted: Sat Mar 20, 2010 4:44 pm
by DoctorQ
Sorry... one directory don't have permission.

Works ok!

Re: Post OpenCart 1.4.4 Bugs Here!

Posted: Sat Mar 20, 2010 10:31 pm
by Jacob_chan
Jacob_chan wrote:
allenshea wrote:What should I do with "Approve" in customer, should I Approve all the customer here?

But when I try to Approve customer, I got

Code: Select all

Error: E-Mail sender required!
is this a bug?

I think my mail works, I can got info of Update Order and New Customer mail(added some code in create.php). But I can not got new order, Why?

Thanks,

Allen
Dear daniel, i met the same problem, and you said it's a bug. have you fixed it? Or when you fixed it? Thanks for your great work.
/
Hello Daniel,have you fixed this bug?I seems nobody care about it. or when will you release the new version?

Re: Post OpenCart 1.4.4 Bugs Here!

Posted: Sat Mar 20, 2010 10:39 pm
by web2works
Jacob_chan wrote:
Jacob_chan wrote:
allenshea wrote:What should I do with "Approve" in customer, should I Approve all the customer here?

But when I try to Approve customer, I got

Code: Select all

Error: E-Mail sender required!
is this a bug?

I think my mail works, I can got info of Update Order and New Customer mail(added some code in create.php). But I can not got new order, Why?

Thanks,

Allen
Dear daniel, i met the same problem, and you said it's a bug. have you fixed it? Or when you fixed it? Thanks for your great work.
/
Hello Daniel,have you fixed this bug?I seems nobody care about it. or when will you release the new version?
I have the same problem when approving customers I get Error: E-Mail sender required!