PATH:
home
/
centosnipponia
/
public_html
/
nipponiacom2
/
plugins
/
system
/
georedirects
<?php /** * @copyright Copyright (C) 2019 SiteGuarding.com * @license GNU/GPL, see LICENSE.php * @contact team@siteguarding.com * @author SiteGuarding.com */ defined( '_JEXEC' ) or die( 'Restricted access' ); /** * GEO Redirects Plugin */ class plgSystemGeoredirects extends JPlugin { protected $autoloadLanguage = true; const GPJM_GEO_CHECK_FILE = JPATH_ADMINISTRATOR . DIRECTORY_SEPARATOR . 'components' . DIRECTORY_SEPARATOR . 'com_georedirects' . DIRECTORY_SEPARATOR . 'geo.check.redirect.php'; public function onAfterInitialise() { if (file_exists(self::GPJM_GEO_CHECK_FILE)) include_once(self::GPJM_GEO_CHECK_FILE); } }
[+]
..
[-] georedirects.php
[edit]
[-] georedirects.xml
[edit]
[-] .htaccess.disabled
[edit]