Re: Image Handler 4 (for v1.5.x) Support Thread
Just had a look in my database.... of the 27148 images....
Quote:
2882 images have ( or ) in the file name
938 images have & in the file name
71 have [ or ] in the file name
4 have @ in the file name
5 have # in the file name
158 have + in the file name
4 have = in the file name
1 has $ in the file name
I can't solve this manually...
Re: Image Handler 4 (for v1.5.x) Support Thread
Quote:
Originally Posted by
lhungil
Yes there is a way. I have a filter written for another Zen Cart module we could apply. But may be worth adding an alert / warning / block adding image from admin as well with characters not typically allowed in URLs being in the image filename.
:) please elaborate
Re: Image Handler 4 (for v1.5.x) Support Thread
Hi all, please help me. I need use chached images miniatur from image handler in my php script. Please is possible use some function, who return chached image name? How this function name?
Many thanks.
Re: Image Handler 4 (for v1.5.x) Support Thread
Quote:
Originally Posted by
puhycz
Hi all, please help me. I need use chached images miniatur from image handler in my php script. Please is possible use some function, who return chached image name? How this function name?
Many thanks.
Sorry.. I am not clear on what it is you are asking here.. What is it you are trying to do EXACTLY???
Re: Image Handler 4 (for v1.5.x) Support Thread
I have product id and I need return url of image for this product. Not image name from database, but image name/url miniatur generated by IH.
Re: Image Handler 4 (for v1.5.x) Support Thread
I just had a weird thing come up. When clicking on anything in admin like upload new photo, it just refreshes the page and goes back to the admin tools bit. I believe it was okay before. I checked and all the files were in place and dated the same as when I uploaded the mod. I uploaded the files again to be sure. I have added a mod or two since this was installed in Sept but I can't think what could cause this behavior. Looks like the server php build is from last Aug so no changes there. Anybody heard of this happening before?
Re: Image Handler 4 (for v1.5.x) Support Thread
Quote:
Originally Posted by
delia
I just had a weird thing come up. When clicking on anything in admin like upload new photo, it just refreshes the page and goes back to the admin tools bit. I believe it was okay before. I checked and all the files were in place and dated the same as when I uploaded the mod. I uploaded the files again to be sure. I have added a mod or two since this was installed in Sept but I can't think what could cause this behavior. Looks like the server php build is from last Aug so no changes there. Anybody heard of this happening before?
Nope not heard of this.. Would try rolling back your other mods and see if that rights things..
Re: Image Handler 4 (for v1.5.x) Support Thread
Quote:
Originally Posted by
puhycz
Hi all, please help me. I need use chached images miniatur from image handler in my php script. Please is possible use some function, who return chached image name? How this function name?
Many thanks.
I'm sure it's possible, but unless you provide some details on what it is you are doing we would be guessing at the right answer..
That said have a look at the IH4 functions files (they are in the FUNCTIONS folders)..
Re: Image Handler 4 (for v1.5.x) Support Thread
well, someone reported that they might not have used it since the upgrade last September. I have no clue.
Re: Image Handler 4 (for v1.5.x) Support Thread
Quote:
Originally Posted by
delia
well, someone reported that they might not have used it since the upgrade last September. I have no clue.
I think some modules remove the IH_VERSION key from your database when installed because they remove all values with configuration_group = 0. This could result in the symptoms you described.
if it is missing use something like the query below to add it again. Be sure to use the right version Value
Code:
INSERT INTO configuration (`configuration_id`, `configuration_title`, `configuration_key`, `configuration_value`, `configuration_description`, `configuration_group_id`, `sort_order`) VALUES (NULL, 'IH version', 'IH_VERSION', '4.3.2', 'IH Version is stored but not shown on configuration menus', '0', '10000')