public
Description: Default website templates I use
Homepage:
Clone URL: git://github.com/themattharris/Website-Templates.git
name age message
directory CakePHP/ Loading commit data...
directory ConfigFiles/
file README
directory WordPress/
README
h1. Templates included:

h2. WordPress
Version: 2.8.6
Notes:
wp-config.php will need editing with your required values
If installing a fresh WordPress you will find the URL defaults to http://domain/wp-app. Just go into Options in wp-admin 
to remove the wp-app from the URL and the htaccess will do the rest.
For local dev work create config_local.php with the following code:

<code>
<?php

# Replace with local dev values
define('DB_NAME', 'localname');
define('DB_USER', 'root');
define('DB_PASSWORD', 'root');
define('WP_SITEURL', 'http://wordpress.local');
define('WP_HOME', 'http://wordpress.local');
define('WP_POST_REVISIONS', FALSE );

# Include for Debugging info
define( 'WP_DEBUG', TRUE );
ini_set( 'display_errors', 1 );
ini_set( 'log_errors', 1);
ini_set( 'error_log', dirname(__FILE__) . '/error_log.txt');
error_reporting(E_ALL);
?>
</pre>
</code>

h2. CakePHP
Version: 1.2.3.8166