Page 2 of 2

Re: 1.5.6.2 bug fix release

Posted: Sun Apr 13, 2014 10:36 pm
by ThePath
Im not absolutely sure if this is a bug but I have a fresh install of 1.5.6.2 and the image manager is not working properly. To be exact the images dont show in the image manager, the names do but no thumbnails of the images. When you click on one to say assign it to a banner it assigns the name but no image is with it.

I have many other OC versions installed on this server with no image manager issues. So I can only assume its 1.5.6.2 issue but I cant see anything in the changelog that mentions the image manager. Anybody else see this behaviour to confirm?

Re: 1.5.6.2 bug fix release

Posted: Sun Apr 13, 2014 10:55 pm
by racewings
ThePath wrote:Im not absolutely sure if this is a bug but I have a fresh install of 1.5.6.2 and the image manager is not working properly. To be exact the images dont show in the image manager, the names do but no thumbnails of the images. When you click on one to say assign it to a banner it assigns the name but no image is with it.

I have many other OC versions installed on this server with no image manager issues. So I can only assume its 1.5.6.2 issue but I cant see anything in the change log that mentions the image manager. Anybody else see this behavior to confirm?
i am also having the problem with image manager i have made all backs up an have tried to find out the problem is with fresh install as well, i removed all 3rd party XML, an restored database to original, still have problems

Re: 1.5.6.2 bug fix release

Posted: Sun Apr 13, 2014 11:03 pm
by cwswebdesign
ThePath wrote:Im not absolutely sure if this is a bug but I have a fresh install of 1.5.6.2 and the image manager is not working properly. To be exact the images dont show in the image manager, the names do but no thumbnails of the images. When you click on one to say assign it to a banner it assigns the name but no image is with it.

I have many other OC versions installed on this server with no image manager issues. So I can only assume its 1.5.6.2 issue but I cant see anything in the changelog that mentions the image manager. Anybody else see this behaviour to confirm?
I've seen this but it's never been a bug. Usually it's when the name of a folder or file isn't proper. Try renaming the folder and/or the images and see if that helps.

DL

Re: 1.5.6.2 bug fix release

Posted: Sun Apr 13, 2014 11:15 pm
by OSWorX
cwswebdesign wrote:
ThePath wrote:I've seen this but it's never been a bug. Usually it's when the name of a folder or file isn't proper. Try renaming the folder and/or the images and see if that helps.
DL
Guess it is, just see here: https://github.com/opencart/opencart/issues?state=open
It seems that with 1.5.6.2 and the change in the utf8 helper class the image functions wont work anymore correct.

Re: 1.5.6.2 bug fix release

Posted: Sun Apr 13, 2014 11:34 pm
by ThePath
Aye and replacing the utf8.php file with that from the master on github doesnt fix the issue either. Well this makes theme development/testing somewhat tricky.

Re: 1.5.6.2 bug fix release

Posted: Mon Apr 14, 2014 1:00 am
by cwswebdesign
ThePath wrote:Aye and replacing the utf8.php file with that from the master on github doesnt fix the issue either. Well this makes theme development/testing somewhat tricky.
Did you try the utf8.php file from v1.5.6.1 for a temporary fix?

DL

Re: 1.5.6.2 bug fix release

Posted: Mon Apr 14, 2014 2:28 am
by kaanair
I have same issue and still not fixed anyone.please help

Re: 1.5.6.2 bug fix release

Posted: Mon Apr 14, 2014 8:37 am
by DjRicko
cwswebdesign wrote: Did you try the utf8.php file from v1.5.6.1 for a temporary fix?
DL
Yes i have done this now and image manager works, so confirmed that the new utf8.php breaks the image manager.

It looks like it starts loading the thumbnails but instead shows nothing, you cant even switch folders in the side panel.

Re: 1.5.6.2 bug fix release

Posted: Mon Apr 14, 2014 8:58 am
by jetjosh1982
cwswebdesign wrote:
ThePath wrote:Aye and replacing the utf8.php file with that from the master on github doesnt fix the issue either. Well this makes theme development/testing somewhat tricky.
Did you try the utf8.php file from v1.5.6.1 for a temporary fix?

DL
Good Afternoon,

I am by no means an expert when it comes to web technologies but i did as you suggested with replacing the utf8.php with the one from 1.5.6.1 and image manager started to work right!

there must be an error of some kind in the new utf8.php

Re: 1.5.6.2 bug fix release

Posted: Mon Apr 14, 2014 3:31 pm
by webitbz
To solve the image manager blank icons problem correct in system\helper\utf8.php (OC 1.5.6.2)

change:

Code: Select all

	function utf8_substr($string, $offset, $length = null) {
		return mb_substr($string, $offset, $length);
	}
to:

Code: Select all

	function utf8_substr($string, $offset, $length = null) {
		if ($length == null) {
			return mb_substr($string, $offset, utf8_strlen($string));
		} else {
			return mb_substr($string, $offset, $length);
		}
	}

Re: 1.5.6.2 bug fix release

Posted: Mon Apr 14, 2014 8:19 pm
by sirena
I upgrade my opencatr version to 1.5.6.2, but my slider on the header do not work !!
I m with the theme universum pro .
my url is www.sirena-plus.com
Please help me :-X

Re: 1.5.6.2 bug fix release

Posted: Mon Apr 14, 2014 9:44 pm
by James
Serina it is probably related to the utf8 file, follow the change by webitbz and it may work again. If not then you would need to speak with the theme creator