I found an error.
In index.php you have it looking for template_mods.php instead of template.php
Change: install\hacks\image_hosting\12\index.php
Code:
if ($_REQUEST['do'] == "genreadme") {
if ($_REQUEST['upgrade'] != 1) {
require_once('./file_mods.php');
require_once('./template_mods.php');
} else {
require_once('./upgrade_mods.php');
}
}
To
Code:
if ($_REQUEST['do'] == "genreadme") {
if ($_REQUEST['upgrade'] != 1) {
require_once('./file_mods.php');
require_once('./templates.php');
} else {
require_once('./upgrade_mods.php');
}
}
Also for correct unsinstall
Change: install\hacks\image_hosting\12\uninstall_queries.p hp
Code:
<?php
// Queries
$query['uninstall'][] = 'ALTER TABLE '.TABLE_PREFIX.'language DROP phrasegroup_imghost';
$query['uninstall'][] = 'DELETE FROM '.TABLE_PREFIX.'phrasetype WHERE phrasetypeid=956';
$query['uninstall'][] = 'DROP TABLE IF EXISTS '.TABLE_PREFIX.'hosted';
?>
To
Code:
<?php
// Queries
$query['uninstall'][] = 'ALTER TABLE '.TABLE_PREFIX.'language DROP phrasegroup_imghost';
$query['uninstall'][] = 'DELETE FROM '.TABLE_PREFIX.'phrasetype WHERE phrasetypeid=956';
$query['uninstall'][] = 'DROP TABLE IF EXISTS '.TABLE_PREFIX.'hosted';
$query['uninstall'][] = 'DROP TABLE IF EXISTS '.TABLE_PREFIX.'groups';
?>
Also in the filemod it has you look for though if you make this file mod it will pull a parse error because of the $ sign in there.
'subscription' => vbphrase['group_paid_subscriptions'],
which should be
'subscription' => $vbphrase['group_paid_subscriptions'],