开发者

How can we maintain session variables between our CMS and a standalone script on the same server?

We have developed a stand-alone 开发者_运维知识库script on the same server as our Joomla 1.5 installation. We want to see if the user is logged into to Joomla before giving them access to the script. To do that, we want to cross reference the session_id from Joomla and then query the Joomla database to verify that the user is logged in.

At this point our standalone script looks like this, just to test whether we can access the session variables.

<?
session_start();
print_r($_SESSION);
?>

However, the session variable is empty and prints out an empty array. Does anyone know why we are unable to pass the session variables to the standalone script? Doing a print_r($_SESSION) from within the Joomla code works just fine.


SEE "Joomla login session" tutorial:

Especially this part:

"Once the frame work is initialised you can start using Joomla session"

SEE ALSO Custom Sessions with Joomla


Joomla is probably using a custom session handler.

See: http://www.php.net/manual/en/function.session-set-save-handler.php

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜