Hello,
joomlaXplorer locks out all non-superadministrators by default. It uses the
acl_check function, which is now being replaced by
Code:
$user->authorize( ... )
.
So the only thing for making joomlaXplorer work on Joomla 1.1.x is to replace a code section in the file
admin.joomlaxplorer.php.
REPLACE
Code:
if(!$acl->acl_check( 'administration', 'config', 'users', $my->usertype )) {
mosRedirect( 'index2.php', _NOT_AUTH );
}
WITH
Code:
global $user;
if( is_callable( array( @$user, 'authorize' ))) {
if (!$user->authorize( 'com_config', 'manage' )) {
mosRedirect( 'index2.php', _NOT_AUTH );
}
}
elseif(!$acl->acl_check( 'administration', 'config', 'users', $my->usertype )) {
mosRedirect( 'index2.php', _NOT_AUTH );
}
All other parts of this component should be working (it even works under Mambo 4.5 1.0.3,

).
I will be releasing this with version 1.3.3 of joomlaXplorer soon.
ciao, Soeren