Installed and added IH2 Edited the image_handler_tools_dhtml.php xtra - box file as recommended.
IH2 frontend functioning but in admin > tools > it is not present
If I use the orig file it is present but then one can not access the selection
What did I miss?
image_handler_tools_dhtml.php file
Code:
<?php
/**
* @package admin
* @copyright Copyright 2003-2006 Zen Cart Development Team
* @copyright Portions Copyright 2003 osCommerce
* @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
* @version $Id: image_handler_tools_dhtml.php - amended per Admin Profiles v-1.0.7
*/
if (!defined('IS_ADMIN_FLAG')) {
die('Illegal Access');
}
$options = array( array('box' => BOX_TOOLS_IMAGE_HANDLER, 'page' => FILENAME_IMAGE_HANDLER)
);
foreach ($options as $key => $value)
if (page_allowed($value['page'])=='true')
$za_contents[] = array('text' => $value['box'], 'link' => zen_href_link($value['page'], '', 'NONSSL'));
?>
Bookmarks