Quick and simple guide to get the Zend Framework setup on Eyedreamt hosting

Open the Zend ZIP file and copy the library directory  up one level from public_html.  Create the bootstrap index.php file in public_html.

Also, I needed to place the following files in the public_html document root:

.HTACCESS

    AddHandler application/x-httpd-php5 .php
    RewriteEngine on
    RewriteRule !\.(js|ico|gif|jpg|png|css|html)$ index.php

PHP.INI

    include_path =".:/home/user-name/library
    magic_quotes_gpc = 0
    register_globals = 0

I found the video tutorials on the Zend Framework website to be very helpful.