Saturday, March 17, 2012

eXtplorer for 1.6 stops working after upgrade to 1.7

The current eXtplorer version has a minor bug that prevents it from loading in Joomla! 1.7. As long as no newer version has been released (which is to be expected soon!), you can fix the bug by changing the file
/administrator/components/com_extplorer/include/function.php:
Replace lines 741-743

----------------------------------------------------------------------------
if( $jversion->RELEASE != substr($version, 0, 3 ) ) {
return false;
}
-----------------------------------------------------------------------------
with this new code:
-----------------------------------------------------------------------------
$this_version = $jversion->RELEASE;
-----------------------------------------------------------------------------
This should fix the problem. (actually that REALLY fix the problem!)

No comments:

Post a Comment