Zend Framework 1.8 tutorial 5 zend_acl with zend_auth and controller plugin part 2
Top Comments
All Comments (8)
-
Hi,
Where can I found the complete project ? (zip file or other)
B.Regards
-
I had to put
$fc = Zend_Controller_Front::getInst
ance(); require_once 'Plugin/AccessCheck.php';
$fc->registerPlugin(new Plugin_AccessCheck());
nothing else works for me. If anyone has better idea please help
-
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 am using latest ZF, I am having:
Fatal error: Class 'Plugin_AccsessCheck' not found in D:\xampp\htdocs\DLVC\applicati
on\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.
-
can you provide the sourcefiles please?
-
Be careful because return $modeler in boostrap.php is not right, it has to be placed before the new code!
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
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