Evergreen
This is the year of Natural Code. Evergreen is getting released this year as a PHP5 MVC framework. As of this post it is in a limited beta release. If youre lucky enough to have a copy of it these instructions should help in getting it installed.
You need to edit 2 files.
.htaccess and config/config.ini
Change the path and the BASE_URL path in those files to be relative to the location of the root of the site. Here is a bad example:
if you put MonsterPhrame in the root of yourdomain.com the htaccess path would look like
ErrorDocument 404 /index.php
If you have Evergreen in a sub directory it would look like
ErrorDocument 404 /mysubdir/index.php
Then in your config/config.ini file you would do the following
base_uri = “/”
or if Evergreen is in a sub directory
base_uri = “/mysubdir”
You should see the default pages when you go to that address. Now you are ready to start building.