2

我在包含目录中有一个 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 在这里缓存了一些东西。

如何避免JFactory::getSession();从 Firefox 缓存?这只发生在 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 );
            });

请帮忙

4

2 回答 2

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);

即使您是第一次声明会话变量,它也可以工作。

于 2013-08-30T18:19:20.987 回答
0

您是否从 www.mydomain.com发布/访问mydomain.com ?我相信这会导致 joomla 创建一个新会话。

于 2012-11-03T14:40:00.697 回答