On Thu, Feb 26, 2009 at 10:52 AM, vadim gavrilov <[email protected]> wrote: > It seems from the error that you declare the same class more then once. > That's a PHP error not something directly related to ZF. Make sure your not > declaring the same class more then once.
+1 I'd double check require and include statements and maybe use require_once or include_once instead -- that's what they are there for. :) But make sure to clean this up sooner or later. It always helps to know when you load a class, etc.. Till
