用户登录前端 - 插件自动登录后端

时间:2012-06-28 15:39:49

标签: php joomla joomla2.5

我需要创建一个系统插件(没有auth插件!),其中登录到前端的用户也会自动登录到后端。 (用户有权通过/ administrator登录后端。)

我尝试通过您在下面看到的基本代码执行此操作,结果是肯定的,但如果我转到后端,则用户仍需要登录。

在会话表中设置了后端会话行,但“guest”字段设置为1而不是0,userid设置为0而不是正确的id。

如何做到这一点?

function onAfterInitialise() {

if(JFactory::getUser()->get('id')) {  // logged in? 

    $credentials = array();
    $credentials['username'] = "walter"; // hardcoded first
    $credentials['password'] = "123"; // hardcoded first

    $options = array();
    $options['action'] = 'core.login.admin'; 
    $result = $app->login($credentials, $options);  // this seams to work
    if (!($result instanceof Exception)) {
        $app->redirect("www.bummer.de");
    } 
}

1 个答案:

答案 0 :(得分:1)

除了这是一个非常糟糕的主意,如this question Joomla所述!实现为两个应用程序:前端(/index.php)和后端应用程序(/administrator/index.php)。

在提供的代码中,您没有显示初始化$app的位置,因此我猜测它可能类似于$app->JFactory::getApplication('site');

要登录管理应用,您需要获取它而不是前端客户端应用,例如

$adminApp->JFactory::getApplication('administrator');
$result = $adminApp->login($credentials, $options);

<强> n.b。这是未经测试的代码,只是输入堆栈溢出...它应该是正确的。