patch for using cambozola
Posted: Fri Apr 24, 2015 6:51 pm
For the benefits of all, in order to have cambozola working, I had to patch the source.
In /usr/share/zoneminder/includes/functions.php near line 393, change te <applet> tag to
Hope this works for anybody else, too.
Bye
In /usr/share/zoneminder/includes/functions.php near line 393, change te <applet> tag to
Code: Select all
<object id = "<?= $id ?>"
codetype = "application/java"
classid = "java:com.charliemouse.cambozola.Viewer"
width = "<?= $width ?>"
height = "<?= $height ?>"
title = "<?= $title ?>"
>
<param name="archive" value="<?= ZM_PATH_CAMBOZOLA ?>" />
<param name="accessories" value="none" />
<param name="url" value="<?= $src ?>" />
</object>
Bye