Active
Project:
jQZoom
Version:
6.x-1.0-beta1
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
17 Jun 2011 at 14:51 UTC
Updated:
11 Nov 2011 at 23:17 UTC
Jump to comment: Most recent file
When installing, the module was unable to see that the library jqzoom was installed. The reason was that the install script looked for a specific version (jqzoom_ev1.0.1). I renamed the library to jqzoom (this step should be in the docs), and changed this line in jqzoom.install from:
if (isset($libraries['jqzoom_ev1.0.1'])) {
to
if (isset($libraries['jqzoom'])) {
And the module installed fine.
| Comment | File | Size | Author |
|---|---|---|---|
| #3 | jqzoom.zip | 12.34 KB | benmirkhah |
Comments
Comment #1
benmirkhah commentedI edited that line to jqzoom_ev2.3 which is the current version
and it installed fine but wasn't able to get the zoom to work yet.
Comment #2
benmirkhah commentedFound the old version of the library on 4shared, it works...
http://www.4shared.com/get/cudfnM1B/jqzoom_ev101.html
Comment #3
benmirkhah commentedThe newest version of JQZoom (v2.3) has a cool inline-zoom
where the magnification works inside the image boundary
so I spend a few extra minutes and finally got it to work,
attached zip is my edited module that works with v2.3
Comment #4
codevoice commentedNote that it's also necessary to update jqzoom.install, line 25:
if (isset($libraries['jqzoom_ev1.0.1'])) {
to
if (isset($libraries['jqzoom_ev-2.3'])) {
or whatever the correct path in your /libraries/ directory is.
EDIT: also, the zip kindly attached by Ben above works assuming your path is the same, but he also added a change to the option_string as well :). Line 152-ish.