views:

66

answers:

2

Based on recommendations on SO for the Zend framework, I'm planning to use it for a client's project.

However, my client requires that the project should run on both Yahoo! Small Business and GoDaddy hosting.

Can the Zend framework be installed on these types of hosting, which are neither VPS nor dedicated?

+3  A: 

If you can run PHP code on the server and the PHP version and installed extensions satisfy the minimum requirements, you can use the Zend framework. You don't really need to install Zend, just as you don't need to install any PHP app. The files just need to be present in some include-able directory.

deceze
Thanks, deceze. "The files just need to be present in some include-able directory." <-- Can that be done on a shared/reseller hosting?
Jon
@Jon "Include-able directory" == any directory you can read and `include` files from. The framework is just a bunch of `.php` files, just like the ones you need to copy to your server anyway. So, yes.
deceze
A: 

There's really no need to install it. Just copy it to some directory within your application, include Zend's Autoloader class and use it to load rest of the classes you need.

Ondrej Slinták
Thanks, Ondrej. So does that mean I won't even need to put it in an "include-able" directory?
Jon
Well, of course you will need to do that. But include-able directory is really almost any part of your application.
Ondrej Slinták