Joomla 2.5 JFactory :: getSession();似乎是在Firefox中缓存

时间:2012-08-14 22:49:01

标签: php ajax joomla joomla2.5

我在include目录中有一个php文件。它的可用性是显示验证码图像。 在该文件中,我设置了一个如下的会话变量:

$code = codegenerator();
$session =& JFactory::getSession();
$session->set('security_code', $code);

此Session变量是从图像src设置的,该图像从控制器调用该方法。

然后我调用控制器来检查已设置的会话 (这个方法与iframe中的ajax一致)并且在那个方法中我这样做

$session = JFactory::getSession();
$seccode=$session->get('security_code');
echo $seccode.':'.rand();

结果如预期第一次,设置的代码和随机数。 如果我刷新该页面,则使用新代码重置验证码图像并显示。 但是当我再次检查检查事件时,我得到一个新的随机数的前一个代码。 那个rand()有一个证明JFactory::getSession();被缓存的证据,因为我得到了新的随机数,但前面的代码是相同的而不是新的。所以这不是ajax在这里缓存的东西。

如何避免从firefox缓存JFactory::getSession(); geting? 这只发生在firefox中。 Internet Explorer和chrome似乎正确显示会话代码。如果我清除firefox现金并刷新页面它仍然无法正常工作。就像它永远缓存一样。如果我关闭firefox并再次打开它,那么一切似乎都是第一次工作,但之后我又遇到了同样的问题。

以下是生成验证码的代码

<?php

defined('_JEXEC') or die('Restricted access');
class CaptchaSecurityImages {

    var $font='monofont.ttf';


    function generateCode($characters) {
        /* list all possible characters, similar looking characters and vowels have been removed */
        $possible = '23456789bcdfghjkmnpqrstvwxyz';
        $code = '';
        $i = 0;
        while ($i < $characters) { 
            $code .= substr($possible, mt_rand(0, strlen($possible)-1), 1);
            $i++;
        }
        return $code;
    }

    function CaptchaSecurityImages($width='220',$height='40',$characters='6') {
        $code = $this->generateCode($characters);

        //$font='includes'.DS.'monofont.ttf';
        $font='monofont.ttf';
        $this->font=$font;

        $session =& JFactory::getSession();
        $session->set('security_code', $code);


        /* font size will be 75% of the image height */
        $font_size = $height * 0.75;
        $image = @imagecreate($width, $height) or die('Cannot initialize new GD image stream');

        /* set the colours */
        $background_color = imagecolorallocate($image, 255, 255, 255);
        $text_color = imagecolorallocate($image, 20, 40, 100);
        $noise_color = imagecolorallocate($image, 100, 120, 180);
        /* generate random dots in background */
        for( $i=0; $i<($width*$height)/3; $i++ ) {
            imagefilledellipse($image, mt_rand(0,$width), mt_rand(0,$height), 1, 1, $noise_color);
        }
        /* generate random lines in background */
        for( $i=0; $i<($width*$height)/150; $i++ ) {
            imageline($image, mt_rand(0,$width), mt_rand(0,$height), mt_rand(0,$width), mt_rand(0,$height), $noise_color);
        }
        /* create textbox and add text */


        $textbox = imagettfbbox($font_size, 0, $this->font, $code) or die('Error in imagettfbbox function');
        $x = ($width - $textbox[4])/2;
        $y = ($height - $textbox[5])/2;
        imagettftext($image, $font_size, 0, $x, $y, $text_color, $this->font , $code) or die('Error in imagettftext function');
        /* output captcha image to browser */

        header('Content-Type: image/jpeg');
        imagejpeg($image);
        imagedestroy($image);

    }

}
?>

以下是ajax

调用的代码
public function checkCaptchaSecurityCode(){
        $securitycode = JRequest::getVar('securitycode');           
        $session = JFactory::getSession();
        $seccode=$session->get('security_code');        

        echo $seccode.':'.rand();

        die();
    }   

这是ajax调用

<?php $checkCaptchaSecurityCode = JRoute::_('index.php?option=com_virtuemart&view=participate&task=checkCaptchaSecurityCode&tmpl=component&format=raw'); ?>
    jQuery.ajaxSetup({cache: false});
            jQuery.ajax({
                  type: "POST",
                  url: "<?php echo $checkCaptchaSecurityCode ?>",
                  cache: false,
                  data: { securitycode: jQuery("#security_code").val() }
                }).done(function( msg ) {
                  alert( msg );
            });

请帮助

2 个答案:

答案 0 :(得分:2)

我遇到了同样的问题,但在设置新的会话变量之前调用clear方法修复了问题。

    $session = & JFactory::getSession();
    /* this way unset data from the session store */
    $session->clear('security_code');
    /* and now set the new value */
    $session->set('security_code', $code);

即使是第一次声明会话变量,它也能正常工作。

答案 1 :(得分:0)

从www.mydomain.com开始发布/获取 mydomain.com ? 这会让joomla创建一个我相信的新会话。