Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What could be the possible reason for getting

Fatal error: Class 'Zend_Form_Subform' not found 
in /path/application/forms/formName.php on line 2

on a remote server when things are working fine locally. The problem is only with Zend_Form_Subform and rest all other forms (without any subform) and views are working fine.

Am i missing something under application.ini for subforms?

share|improve this question
1  
the most obvious reasons would be that 1) the file does not exist, 2) the include path is not configured properly 3) the ZF autoloader is not configured correctly – Gordon Sep 2 '12 at 10:27

closed as too localized by Gordon, tereško, j0k, Jocelyn, Graviton Sep 18 '12 at 1:49

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

up vote 6 down vote accepted

This is most likely a case-ing error. Please update your class name to Zend_Form_SubForm (notice the capital F).

It probably works on localhost because you are running Windows (?) which is case-insensitive, but when you deploy, you are probably deploying on UNIX (?) which is case-sensitive.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.