Joomla 1.5 jsecure dhоде 1.0.8 Столкнулся с такойже проблемой - убивал все что можно, незнаю что делать В базе данных отключал, через фтп папку administratot/componenets/com_jsecure нет.... перенаправляет на гдавную, что еще где искать..... содержание файла plugins/system/jsecure.php <?php // no direct access defined( '_JEXEC' ) or die( 'Restricted access' ); jimport('joomla.plugin.plugin'); class plgSystemJSecure extends JPlugin { /** * Constructor * * For php4 compatability we must not use the __constructor as a constructor for plugins * because func_get_args ( void ) returns a copy of all passed arguments NOT references. * This causes problems with cross-referencing necessary for the observer design pattern. * * @param object $subject The object to observe * @since 1.5 */ function plgSystemCanonicalization(& $subject, $config) { parent :: __construct($subject, $config); } function onAfterDispatch() { // Register the needed session variables $session =& JFactory::getSession(); $plugin =& JPluginHelper::getPlugin( 'system', 'jsecure' ); $params = new JParameter($plugin->params); $my =& JFactory::getUser(); $checkedKey = $session->get('jSecureAuthentication'); $path =''; if (empty($checkedKey)) { if((preg_match("/administrator\/*index.?\.php$/i", $_SERVER['SCRIPT_NAME']))) { if(!$my->id && $params->get('key')!= $_SERVER['QUERY_STRING']) { $config =& JFactory::getConfig(); $path .= $params->get('options') == 1 ? JURI::root().$params->get('custom_path') : JURI::root(); $app =& JFactory::getApplication(); $app->redirect($path); } else { $session->set('jSecureAuthentication', 1); } } } } }
Почистите кэш в своем браузере и просмотрите свой сайт в еще и в другом браузере. Возможно, страница просто закешировалась и вы видите старые данные.