uploadify dont work

Hi, i configured the yii like the following page tells: www.yiiframework.com/forum/index.php?app=forums&module=post&section=post&do=new_post&f=29

But it dont work so well.

I receive the following error





Property "uploadifyWidget.mult" is not defined.


/Developer/YII/framework/web/CWidgetFactory.php(162)


150         if(isset($this->widgets[$className]))

151             $properties=$properties===array() ? $this->widgets[$className] : CMap::mergeArray($this->widgets[$className],$properties);

152         if($this->enableSkin)

153         {

154             if($this->skinnableWidgets===null || in_array($className,$this->skinnableWidgets))

155             {

156                 $skinName=isset($properties['skin']) ? $properties['skin'] : 'default';

157                 if($skinName!==false && ($skin=$this->getSkin($className,$skinName))!==array())

158                     $properties=$properties===array() ? $skin : CMap::mergeArray($skin,$properties);

159             }

160         }

161         foreach($properties as $name=>$value)

162             $widget->$name=$value;

163         return $widget;

164     }

165 

166     /**

167      * Returns the skin for the specified widget class and skin name.

168      * @param string $className the widget class name

169      * @param string $skinName the widget skin name

170      * @return array the skin (name=>value) for the widget

171      */

172     protected function getSkin($className,$skinName)

173     {

174         if(!isset($this->_skins[$className][$skinName]))




Someone can help me?

hi

uploadifyWidget.mult – call using proper method. It have not getting true path.

for example

<?php $this->widget(‘application.widgets.FolderName.MainFileClassName’);?>

I think in your case

<?php $this->widget(‘application.widgets.uploadifyWidget.mult’);?>

so here in your widgets folder having uploadifyWidget folder and multi.php file

Thanks

My folder structure

./extensions/js/main.js

./extensions/uploadify

./extensions/uploadify/uploadifyWidget.php

./extensions/uploadify/views

./extensions/uploadify/views/uploadifyWidget.php

./extensions/uploadify/views/uploadifyWidget.php~

hi

use below line.

<?php $this->widget(‘application.extensions.uploadify.uploadifyWidget’); ?>

Thanks

Agree