Direct Access prob. after installing JomComment

Print

i installed the last version of JomComment over my 1.5 nightly build, btw i try always update this install with the latest files from trunk.

when i finished installing it, and it did install, i got a message when trying to log-in into admin backend:

Direct Access to this location is not allowed.

though it could by cause the com. installled by JomComment on the admin, but even when i removed it i still get this message.

legacy mode is ON btw. and the site it self works, only got this problem with the admin.

SOLVED

in file /plugins/system/jom_commentsys_bot.php

change:

if(class_exists('JSITE')){
defined( '_JEXEC' ) or die( 'Direct Access to this location is not allowed.' );
}

else {
defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' );
}

to:

defined( '_JEXEC' ) or die( 'Direct Access to this location is not allowed.' );

Last Updated ( Friday, 27 February 2009 01:23 )