Quote Originally Posted by clydejones
There will be changes required to the admin side in order for IH3 to work with 1.5

notably ( image_handler_tools_dhtml.php ) will be deleted

and replaced with a new datafile definition (
Code:
define('BOX_TOOLS_IMAGE_HANDLER', 'Image Handler');
)

An sql statement will need to be run in order to register the page in the new 1.5 admin pages. (
Code:
INSERT INTO admin_pages (page_key, language_key, main_page, page_params, menu_key, display_on_menu, sort_order) VALUES ('imageHandler', 'BOX_TOOLS_IMAGE_HANDLER', 'FILENAME_IMAGE_HANDLER', '', 'tools', 'Y', 999);
)

These change will make IH3 non-backward compatible with previous versions.

Front end files will need to be compared and merged if necessary.

I'll let you know how I fair with the testing.
Hi Clyde,

I am trying to install IH3 on a new 1.5 site.

I have everything in the right locations (I think) but I seem to be unclear as to the changes.

I removed image_handler_tools_dhtml.php from myadmin/includes/boxes/extra_boxes and added a image_handler.php with

define('BOX_TOOLS_IMAGE_HANDLER', 'Image Handler');

as it's content. I placed that image_handler.php in the same place as the deleted file. I get the tools entry but



I moved the file to myadmin/includes/languages/english/extra_definitions and still get the same error.

Not sure if I named the file correctly of if I should have replaced the code in image_handler_tools_dhtml.php with the

define('BOX_TOOLS_IMAGE_HANDLER', 'Image Handler');

and left the file name the same?

If I get it figured out, I will be glad to add my input as to how well it works. If you would rather that I wait until you get it tested and posted, that will work also.