1-Create mysql database using complex-example/model/build/sql/schema.sql file
2-Set correctly database parameters in complex-example/view/include/define.inc.php
3- install Propel ORM in complex-example/model/vendor/propel directory
4- Install source classes of "Simple PHP form package" in complex-example/controller/
4-Create virtualhost entry in your apache2 server:
<VirtualHost *:80>
    ServerAdmin 
[email protected]
    ServerName address-book.local
    DocumentRoot [your/path]/ajax-wrapper/complex-example/view
    # if not specified, the global error log is used
    ErrorLog /var/log/apache2/address-book.local_error.log
    CustomLog /var/log/apache2/address-book.local_access.log combined
	 <Directory "[your/path]/ajax-wrapper/complex-example/view">
 
        Options All
        AllowOverride None
        Order allow,deny
        Allow from all
    
    </Directory>
</VirtualHost>