DaLightz
See ya'll in the afterlife.
- May 19, 2012
- 1,136
- 262
Hey! It's me in the coders paradise section!
Yeah i know, most of you are going to be like: "Omggg, finish your fucking developments first!??!?! @#$@#$@$#".. Well, let me explain.
I figured i'd step away from the habbo section for a little while, because habbo isn't all that i'm going to be doing. I'm not going to waste my whole young life on it when i could be doing some other fun shit. But anyways, on to the topic!
-----------------------------------
Overview
Cookie Blogger is meant to be a simple and easy to set up blogging system. It will contain some nice features for you'r blogging experience to be sexy.
Features
Well, i litterally just started this... All i have done is ripped the twitter theme and mad a config (not done).
Development photos
Yeah i know, most of you are going to be like: "Omggg, finish your fucking developments first!??!?! @#$@#$@$#".. Well, let me explain.
I figured i'd step away from the habbo section for a little while, because habbo isn't all that i'm going to be doing. I'm not going to waste my whole young life on it when i could be doing some other fun shit. But anyways, on to the topic!
-----------------------------------
Overview
Cookie Blogger is meant to be a simple and easy to set up blogging system. It will contain some nice features for you'r blogging experience to be sexy.
Features
- Simple directories (similar to CookieMS).
- MySQLi & PDO database connections.
- Custom database structure.
- Template system.
- Fully working admin panel.
- Content customization made simple.
- Web installer.
- n00b proof.
Well, i litterally just started this... All i have done is ripped the twitter theme and mad a config (not done).
PHP:
<?php
/***********************************************\
* Cookie Blogging- Simple blogging with style.*
* *
* @Author: CookieMonsta *
* *
* Copyright (C) CookieJar Networks. *
***********************************************
* -=Licence Details=- *
***********************************************
* Cookie Blogger is OPEN SOURCED, wich means *
* you may edit it in anyway you wish aslong *
* there is credits the the original author. *
* - GNU public licence 2012 *
\***********************************************/
/*
*
* Cookie Blogger- Configuration
*
*/
// Site & URL settings.
// - Site URL (the url/domain of the site.)
// - Cloudflare (must be "Enabled" or "Disabled".)
$CONFIG['Site']['Url'] = "http://localhost";
$CONFIG['Site']['Cloudflare'] = "Enabled";
// MySQL settings.
// - Hostname (usualy localhost.)
// - Username (the username to the database.)
// - Password (the password to the database.)
// - Database (do i really have to explain what that means? -.-)
$CONFIG['MySQL']['Hostname'] = "localhost";
$CONFIG['MySQL']['Username'] = "root";
$CONFIG['MySQL']['Password'] = "finger";
$CONFIG['MySQL']['Database'] = "cookie_blog";
// Actual CMS settings.
// - Blog name (the name of your blog, e.g; CookieMonstas blog.)
//
$CONFIG['Cms']['Name'] = "CookieMonsta's Blog!";
$CONFIG['Cms']['Language'] = "English";
Development photos