CException

GD and FreeType PHP extensions are required.

/users/plener09/home/fresh/lospasospolacos/framework18/web/widgets/captcha/CCaptcha.php(90)

078 
079     /**
080      * Renders the widget.
081      */
082     public function run()
083     {
084         if(self::checkRequirements())
085         {
086             $this->renderImage();
087             $this->registerClientScript();
088         }
089         else
090             throw new CException(Yii::t('yii','GD and FreeType PHP extensions are required.'));
091     }
092 
093     /**
094      * Renders the CAPTCHA image.
095      */
096     protected function renderImage()
097     {
098         if(!isset($this->imageOptions['id']))
099             $this->imageOptions['id']=$this->getId();
100 
101         $url=$this->getController()->createUrl($this->captchaAction,array('v'=>uniqid()));
102         $alt=isset($this->imageOptions['alt'])?$this->imageOptions['alt']:'';

Stack Trace

#1
+
 /users/plener09/home/fresh/lospasospolacos/protected/modules/user/views/user/registration.php(79): CBaseController->widget("CCaptcha")
74 ?>
75     <?php if (UserModule::doCaptcha('registration')): ?>
76     <div class="row">
77         <?php echo $form->labelEx($model,'verifyCode'); ?>
78         
79         <?php $this->widget('CCaptcha'); ?>
80         <?php echo '<br />'; ?>
81         <?php echo $form->textField($model,'verifyCode'); ?>
82         <?php echo $form->error($model,'verifyCode'); ?>
83         
84     </div>
#6
+
 /users/plener09/home/fresh/lospasospolacos/protected/modules/user/controllers/RegistrationController.php(81): CController->render("/user/registration", array("model" => RegistrationForm, "profile" => Profile))
76                                 $this->refresh();
77                             }
78                         }
79                     } else $profile->validate();
80                 }
81                 $this->render('/user/registration',array('model'=>$model,'profile'=>$profile));
82             }
83     }
84 }
#14
+
 /users/plener09/home/fresh/lospasospolacos/index.php(11): CApplication->run()
06 
07 // remove the following line when in production mode
08  defined('YII_DEBUG') or define('YII_DEBUG',true);
09 
10 require_once($yii);
11 Yii::createWebApplication($config)->run();
2024-03-28 14:57:14 Apache Yii Framework/1.1.8