FYI...with the latest ZF, because Plugin_AccessCheck extends Zend_Controller_Plugin_Abstract, which is an abstract class, a Zend_Controller_Request_Abstract parameter is required in the ->preDispatch() parameter list - you can not run with parameter list empty.
I have Zend Framework Version: 1.11.3. It's not throwing any errors with an empty parameter list. I'm only up to the point where he echoes "pre dispatched action".
I like your videos. I am an experienced php programmer but just never have the time to read zend manuals. Now I am able to learn about zend extremely fast just by watching.
Hi,
Where can I found the complete project ? (zip file or other)
B.Regards
Eurisko45 5 months ago
I am using latest ZF, I am having:
Fatal error: Class 'Plugin_AccsessCheck' not found in D:\xampp\htdocs\DLVC\application\Bootstrap.php on line 10
i wrote the exact code as is ur videos but the system cant find the class dont know why, please help me plzzzzz.
07105006 10 months ago
@07105006
I had to put
$fc = Zend_Controller_Front::getInstance();
require_once 'Plugin/AccessCheck.php';
$fc->registerPlugin(new Plugin_AccessCheck());
nothing else works for me. If anyone has better idea please help
akuku88 7 months ago
can you provide the sourcefiles please?
djphazerberlin 1 year ago
FYI...with the latest ZF, because Plugin_AccessCheck extends Zend_Controller_Plugin_Abstract, which is an abstract class, a Zend_Controller_Request_Abstract parameter is required in the ->preDispatch() parameter list - you can not run with parameter list empty.
johnmueller66 1 year ago
I have Zend Framework Version: 1.11.3. It's not throwing any errors with an empty parameter list. I'm only up to the point where he echoes "pre dispatched action".
paweena2009 10 months ago
Be careful because return $modeler in boostrap.php is not right, it has to be placed before the new code!
angelgutierrezfer 1 year ago
I like your videos. I am an experienced php programmer but just never have the time to read zend manuals. Now I am able to learn about zend extremely fast just by watching.
Snytkine 2 years ago 5