Hello People, I don’t know if someone suffers like me about this issue which gives me a headache:
THE CSRF TOKEN COULD NOT BE VERIFIED.
My fancycontroller.php:
<?php
class FancyController extends CController
{
    public $breadcrumbs;
    public $defaultAction = 'fancyQueue';
    /* this shows you how to create a reusable action in cases that
     * you need to perform the same steps with files in various controllers
     * by using this, you could attach the action to your controller and tell
     * it to save the files in some folder by changing the savePath property
     * in this sample we will use this action in the single file upload view
     */
    public function actions(){
        return array(
            'uploadedSingle'=>array(
                'class'=>'application.components.UploadAction',
                'savePath'=>Yii::app()->getBasePath().DIRECTORY_SEPARATOR. 'single'.DIRECTORY_SEPARATOR,
            )
        );
    }
    public function filters()
    {
return array( 'accessControl' );
        
    }
   
    
    /**
     * Specifies the access control rules.
     * This method is used by the 'accessControl' filter.
     * @return array access control rules
     */
    public function accessRules()
    {
return array(
            array('allow',
                'actions'=>array('uploadedFiles'),
                'users'=>array('@'),
            ),
            );
        
    }
    //render view
    public function actionFancyQueue(){
        $this->render('fancyqueue');
    }
    //render single file upload view
    public function actionFancySingle(){
        $this->render('fancysingle');
    }
    //handles uploaded files comming from fancyQueue view
    public function actionUploadedFiles(){
        Yii::trace("entra actionUploadeFiles","fichero");
        
        /*here, starts the session with the same Id if needed
         session_id($_POST['PHPSESSID']);
         session_start();
          this is possible because we use in the view
          'options'=> array(
           'appendCookieData'=>true,  //this will send PHPSESSID automatically
          ),
         */
        //gets the file
        $file    = CUploadedFile::getInstanceByName("Filedata");
        /* gets any parameter passed through the view
        'options'=> array(
                'data'=>array('key'=>'value'),  //accessible in the controller via $_POST['extradata'] or $_POST['whatever_you_put_in_the_key']
        ),
        like $modelId = CHttpRequest::getParam('key');
         */
        /* if something goes wrong with the upload, you'd better
           log everything you want with this little piece of code
        */
        $logFile = Yii::app()->getBasePath().DIRECTORY_SEPARATOR.'queue'.DIRECTORY_SEPARATOR.'mylog.txt';
        $result              = array();
        $result['time']      = date('r');
        $result['temp']      = $file->getTempName();
        $result['name']      = $file->getName();
        $result['addr']      = substr_replace(gethostbyaddr($_SERVER['REMOTE_ADDR']), '******', 0, 6);
        $result['agent']     = $_SERVER['HTTP_USER_AGENT'];
        $result['type']      = $file->getType();
        $result['mimename']  = CFileHelper::getMimeType($file->getName());
        $result['extradata'] = CHttpRequest::getParam('extradata');
        $log = @fopen($logFile, 'a');
        if ($log) {
            fputs($log, print_r($result, true) . "\n---\n");
            fclose($log);
        }
        /**
         * this is the main action for saving the files
         */
        if ($file->size > 0) {
        $mime = CFileHelper::getMimeType($file->getName());
        switch($mime){
            case 'image/jpeg':
                $savePath = Yii::app()->getBasePath().DIRECTORY_SEPARATOR.'queue'.DIRECTORY_SEPARATOR;
                $fileName  = $savePath . $file->getName();
                if($file->saveAs($fileName)):
                    $return = array(
                        'status' => '1',
                        'name' => $file->getName()
                    );
                else:
                    $return = array(
                        'status' => '0',
                        'name' => $file->getName()
                    );
                endif;
                break;
            default:
                $return = array(
                    'status' => '0',
                    'name' => 'Only jpg files works on this sample!'
                );
            }
        }
        echo json_encode($return);
    }
}
My views/fancy/fancyqueue.php
<?php
$cs = Yii::app()->clientScript;
$cs->registerCoreScript('jquery');
$cs->registerCss('fancy-mod',
        '#fancy-status{ background: #ddd}'
        );
?>
<h2>Upload</h2>
<br />
<?php
$statusBoxId  = 'fancy-status';
$clearButton  = 'fancy-clear';
$uploadButton = 'fancy-upload';
    $this->widget('application.extensions.fancyupload.SFancyQueue',
    array(
        'name'=>'form-fancy',
        'statusBoxId'=>$statusBoxId,            //id for the container div
        'clearButton'=>$clearButton,            //id for "Clear List" link
        'uploadButton'=>$uploadButton,          //id for "Start Upload" link
        'clearButtonLabel'=>'Clear',     //label for "Clear List" link
        'uploadButtonLabel'=>'Send',    //label for "Start Upload" link
        'targetLabel'=>'Select Pictures',          //label for "select files" link
        'options'=> array(
                'verbose'=>true,  //remove in production
                'url'=>$this->createUrl('/fancy/uploadedFiles'),          //send files to this controller/action
                'multiple'=>true,                                       //multiple files
                'target'=>'fancy-browse',                               //id for "select files" link
                'typeFilter'=>array('Images (jpg, jpeg)'=>'*.jpg; *.jpeg'),   //accept only images and compressed files (better check the mimetype in the controller which receives the file)
                'instantStart'=>false,                                  //do not upload right after the selection of files
                'data'=>array(
                    'YII_CSRF_TOKEN'=>Yii::app()->request->csrfToken,
                    ),  //accessible in the controller via $_POST['extradata'] or $_POST['whatever_you_put_in_the_key']
                'appendCookieData'=>true,  //this will send PHPSESSID automatically
            ),
        'callbacks' => array(
            'onLoad'=>"function() {
                    document.id('$statusBoxId').removeClass('hide');
                    document.id('fancy-fallback').destroy();
                    // We relay the interactions with the overlayed flash to the link
                    this.target.addEvents({
                            click: function() {
                                    return false;
                            },
                            mouseenter: function() {
                                    this.addClass('hover');
                            },
                            mouseleave: function() {
                                    this.removeClass('hover');
                                    this.blur();
                            },
                            mousedown: function() {
                                    this.focus();
                            }
                    });
                    // Interactions for the 2 other buttons
                    document.id('$clearButton').addEvent('click', function() {
                            up.remove(); // remove all files
                            return false;
                    });
                    document.id('$uploadButton').addEvent('click', function() {
                            up.start(); // start upload
                            return false;
                    });
            }",
            'onFail'=> 'function(error) {
                            switch (error) {
                                    case "hidden": // works after enabling the movie and clicking refresh
                                            alert("Para habilitar o sistema de upload, desbloqueie flash no seu browser e atualize a página.");
                                            break;
                                    case "blocked": // This no *full* fail, it works after the user clicks the button
                                            alert("Para habilitar o sistema de upload, habilite o filme flash bloqueado");
                                            break;
                                    case "empty": // Oh oh, wrong path
                                            alert("O sistema de upload parece estar faltando, por favor, tente mais tarde");
                                            break;
                                    case "flash": // no flash 9+ <img src='http://www.yiiframework.com/forum/public/style_emoticons/default/sad.gif' class='bbc_emoticon' alt=':(' />
                                            alert("Precisa ter o plugin do Adobe Flash 9 ou superior para usar o upload")
                            }
                    }',
            'onFileSuccess'=> "function(file, response) {
                var json = new Hash(JSON.decode(response, true) || {});
                if (json.get('status') == '1') {
                        file.element.addClass('file-success');
                        file.info.set('html', '<strong>Arquivo enviado:</strong> (' + json.get('width') + ' x ' + json.get('height') + 'px, <em>' + json.get('mime') + '</em>)');
                } else {
                        file.element.addClass('file-failed');
                        file.info.set('html', '<strong>Erro no envio:</strong> (' + (json.get('error') ? (json.get('error') + ' #' + json.get('code')) : response));
                }
            }",
            'onSelectFail'=> "function(files) {
                    files.each(function(file) {
                            new Element('li', {
                                    'class': 'validation-error',
                                    html: file.validationErrorMessage || file.validationError,
                                    title: MooTools.lang.get('FancyUpload', 'removeTitle'),
                                    events: {
                                            click: function() {
                                                    this.destroy();
                                            }
                                    }
                            }).inject(this.list, 'top');
                    }, this);
            }",
            /*'onFileComplete'=> "function(file) {
                    up.fileRemove(file);
            }",*/
            'onComplete'=>"function() {
               // document.id('fancy-status').setStyle('display','none');
               //up.remove();
               //el = document.search('li.file-success');
               //for (i=0; i<el.length; i++){
               //    el[i].destroy();
               //    window.alert(el[i]);
              // }
               location.reload();
            }",
//'onBeforeStart'=>"function() {
//var hash = {};
//document.cookie.split(/;\s*/).each(function(cookie) {
//cookie = cookie.split('=');
//if (cookie.length == 2) {
//hash[decodeURIComponent(cookie[0])] = decodeURIComponent(cookie[1]);
//}
//});
//
//up.setOptions({
//data: {cookieName: hash['myfield'], myfield: document.id('myfield').get('value')}
//});
//}",
        )
    ));
?>
My config/main.php:
............
        'request'=>array(
            'enableCsrfValidation'=>true,
            'enableCookieValidation'=> true,
        ),
.............
So… what’s wrong??