rolfneumann2 wrote:
Zend_Filter::isRegex($something, $someexpresssion);
then PHP5.1.6 quits interpreting without giving me more details.
Does someone know this problem? How does the Framework find the definition
of Zend_Filter::isRegex? Where does it look for?
Thanks very much for your help,
Rolf
Does your webhost give you access to the Apache error logs for your
virtual host? You might find something in there. Another option is to
make sure error messages are set to display with something like
error_reporting(E_ALL);
at the top of your code.
From your e-mail it sounds like your code all works fine on your
Windows machine. On the LAMP server does anything work? Dispatching to
controllers, for example. Is the structure on the LAMP server the same
file structure as on the Windows server?
If you are just calling Zend_Filter::isRegex without Zend::loadClass'ing
Zend_Filter first then it wouldn't find it. You might want to go
look up __autoload in the PHP manual.