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.

CommentFileSizeAuthor
#3 jqzoom.zip12.34 KBbenmirkhah

Comments

benmirkhah’s picture

I 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.

benmirkhah’s picture

Found the old version of the library on 4shared, it works...

http://www.4shared.com/get/cudfnM1B/jqzoom_ev101.html

benmirkhah’s picture

StatusFileSize
new12.34 KB

The 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

codevoice’s picture

Note 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.