RE: [fw-general] Zend_Capcha

2008-11-05 Thread dele454
existing so >> // modified it to work here >> >> // if we have form, show it - or form did validate >> if (isset($this->view->form)) { >> echo 'Testing Captcha'; >> echo $this->view-&g

RE: [fw-general] Zend_Capcha

2008-11-05 Thread dele454
want to wack my existing so >> // modified it to work here >> >> // if we have form, show it - or form did validate >> if (isset($this->view->form)) { >> echo 'Testing Captcha'; >> echo $this->view-&g

RE: [fw-general] Zend_Capcha

2008-11-04 Thread dele454
form)) { > echo 'Testing Captcha'; > echo $this->view->form; > } else { > echo 'Captcha Form validated!'; > } > > // dump the capcha data > if (isset($this->view

RE: [fw-general] Zend_Capcha

2008-11-04 Thread Terre Porter
'Testing Captcha'; echo $this->view->form; } else { echo 'Captcha Form validated!'; } // dump the capcha data if (isset($this->view->captcha)) { echo 'Captcha word dump'

Re: [fw-general] Zend_Capcha

2008-11-04 Thread dele454
http://www.nabble.com/file/p20325789/1.gif The captcha gets created but i noticed besides the fact that i cant get the text on the captcha validated with entered text. On my folder two captcha images are created on hiting the page. I have tried to figure out what might be causing this but to no

Re: [fw-general] Zend_Capcha

2008-11-04 Thread dele454
Any one out there with help? Please!! dele454 wrote: > > hi, > > i am trying to verify the text submitted to match that of the captcha. If > valid(same) echo 'validated'. > > class JoinController extends Zend_Controller_Action > { > > public function indexAction(){ >

Re: [fw-general] Zend_Capcha

2008-11-03 Thread dele454
Forgot to mention that captcha being the name i gave the textfield to check the captcha value with. - dee -- View this message in context: http://www.nabble.com/Zend_Capcha-tp20300142p20300315.html Sent from the Zend Framework mailing list archive at Nabble.com.

[fw-general] Zend_Capcha

2008-11-03 Thread dele454
hi, i am trying to verify the text submitted to match that of the captcha. If valid(same) echo 'validated'. class JoinController extends Zend_Controller_Action { public function indexAction(){ $this->_helper->layout->setLayout('layout-site');

Re: [fw-general] Zend_Capcha

2008-11-03 Thread dele454
I changed the array item: 'name' => 'captcha' instead and now i have a bad captcha value is wrong error. - though am entering the right characters dele454 wrote: > > hi, > > i am trying to verify the text submitted to match that of the captcha. If > valid(same) echo 'validated'. > > class J