legacy open qoob cms

a content management system built with the open qoob framework

app/config.php


<?php
/**
 * config class
 * acts as install config file. it's uses for storing variables needed to
 * run the qoob in the global library (e.g. database connection information).
 * 
 * @author xero harrison <x@xero.nu>
 * @copyright (cc) creative commons - attribution-shareAlike 3.0 unported
 * @version 1.13
 * @package app
 * @subpackage config
 */
final class config extends qoob_config {
	public function init() {
		$this->data = array(
			//---qoob
			'debug'				=> false,
			'dirtyURLs'			=> false,
			//---database
			'db_host'			=> 'localhost', 
			'db_user'			=> 'root', 
			'db_pass'			=> '', 
			'db_name'			=> 'qoob', 
			//---email
			'email'				=> 'open@qoob.nu',
			//---blog
			'posts_per_page' 	=> 7,
			//---antispam
			'akismetKey'		=> 'o0o0o0o0o0o0o', 
			'siteURL'			=> 'http://open.qoob.nu/', 
			'siteName'			=> 'open.qoob.nu/1.0', 
		);
	}
}
?>

Download

raw zip tar