Installation
Download the zipped package of the framework and unzip it. Then, copy the files and folders to your root directory of your web server.
In your web root directory (C:/wamp/www/), you'll have something like this:

app - is the base of a DooPHP project.
demos - consist of demo applications built with DooPHP
dooframework - the framework source, you can put this outside the web root folder
Then you can access the demos and your app by visiting:
http://localhost/demos/uri_routing/ http://localhost/app/ http://localhost/app/index.php
DooPHP allows you to run your application in a sub folder rather than the root of your domain. If you're placing the code in another directory, please open the configuration file and change the path name:
The config file common.conf.php consist of common project settings. It is located at protected/config/

Change SITE_PATH and BASE_PATH in the config file:
$config['SITE_PATH'] = 'C:/wamp/www/myfolderapp/'; $config['BASE_PATH'] = 'C:/wamp/www/dooframework/'; # if your app is in a some sub folders $config['SUBFOLDER'] = '/myfolderapp/'; # This example is accessed at http://localhost/myfolderapp/
If you want to place a DooPHP app under the root directory, simply delete the SUBFOLDER.
$config['SITE_PATH'] = 'C:/wamp/www/'; $config['BASE_PATH'] = 'C:/wamp/www/dooframework/'; # This example is accessed at http://localhost/
Paths should end with a forward slash '/'
