Re: [fw-general] Cannot redeclare class Zend_form without opcode caching

2008-12-04 Thread Pieter Kokx
Hi, The problem seems very easy. Make sure that if you are including the Zend/Form.php file, it is included just once. You do that by using require_once. Regards, Pieter Kokx MaakSite.net PHP Developer OldStyle schreef: Hello Community, I turning to you after many hours of head scratching

Re: [fw-general] Cannot redeclare class Zend_form without opcode caching

2008-12-04 Thread Ralph Schindler
Hmm, a few things to try: If your application is managing your include_path (which is suggested), try ensuring that you are adding absolute paths to it. For example, if you have had this before: Set_include_path('../library'); Try changing it to this: set_include_path(dirname(__FILE__) .

[fw-general] Cannot redeclare class Zend_form without opcode caching

2008-12-03 Thread OldStyle
Hello Community, I turning to you after many hours of head scratching and frustration. I have a site developed using PHP, ZendFramework, MySQL and Apache. The site uses Zend_Form extensively to process forms. The code all executes without issue on my Local, development, and staging server.