Can Zend Framework run fully without Zend Server?

We are resurrecting some old code that used the Zend framework. The old code extends several Zend classes, invokes getOptions() and uses some other Zend functions. We tried installing Zend Framework with XAMPP (click here) without the Zend Server. We have loads of errors that prevent the legacy site from rendering properly.

Is Zend Server necessary to use all the methods, etc. of Zend Framework?

Upvotes: 0

Views: 473

Answers (1)

Tim Fountain
Tim Fountain

Reputation: 33148

Yes, you can run Zend Framework without Zend Server (and I'd guess this is a much more common setup than using both together). The only thing I can think of in ZF that would require Zend Server would be the Zend Server Cache Backend.

It's more likely that your issue is down to a difference in configuration between your old server and new. If you can give examples of some of the errors you're getting we might be able to suggest where to look.

Upvotes: 2

Related Questions