[DEV]Deep fried butter CMS

Status
Not open for further replies.

Macemore

Circumcised pineapples
Aug 26, 2011
1,681
819
This is a legit project, please don't close my thread or anything, ayeee.

Today I introduce to you, Deep Fried Butter CMS (DFB for short). I'm creating this CMS because I made a bet.
The current planned features are as fallows:

Template "system" [100%]
Blogging system [58%]
Adding pages [0%]
Admin page stlying [0%]
Simple to do shit with [0%]
Admin login [15%]
Nice default theme [100%]
Install page [70%]



If you have any features or requests or shit like that just keep them to yourself please.

Screenshots:
KJLI5fN6n1Uz.png

The entire site looks like that, credits to for the

Snippets: (For )
login.php
PHP:
<?php
mysql_connect($host, $usr, $pass);
mysql_select_db($db);
 
if(isset($_POST['user'], $_POST['pass'])) {
$user = mysql_real_escape_string(htmlentities(stripslashes($_POST['user'])));
$pass = sha1($_POST['pass'];
 
$log = mysql_query("SELECT COUNT(`user_id`) FROM `users` WHERE `username` = `{$user}` AND `password` = `{$pass}`") or die(mysql_error());
$tell = mysql_result($log, 0);
}
 
if($log == 0) {
 echo "Incorrect login, <a href='index.php'>go back</a>";
} else {
 $_SESSION['loggedin'] = '1';
 echo "Successfully logged in, <a href='admin.php'>go to admin</a>";
}
 
?>
Inc.php
PHP:
<?php
 
if(defined('awesome')) {
include('config.php');
 
function dbcon() {
global $host;
global $usr;
global $db;
global $pwd;
 
mysql_connect($host, $usr, $pwd) or die(mysql_error() and "Error 1");
mysql_select_db($db) or die(mysql_error() and "Error 2");
}
 
dbcon();
$nt = mysql_query("SELECT * FROM articles");
$sql = mysql_fetch_array( $nt );
$content = "<div class='mainbox'><div class='mainheader'><div class='headerlefttext'>{$sql['news_title']}</div></div><div class='text'>{$sql['news_content']}";
 
} else {
echo 'this file cannot be accessed directly!';
}
 
?>
Build log:
v.7:
Rather large update to the progress of the CMS
  • Almost finished install.php
  • Admin (backend) is about 70% done
  • Tried cleaning up code (worked a bit)
  • Made the filing system about as confusing as possible
  • secured the admin login
v.6.5.1:
  • Finished Admin login
  • Started Admin (backend)
  • Remade login (finished)
The install.php was not saved due to computer battery failures (fucking charger broke) and unable to save it. I'll have to redo it.
v.6.5:
  • Almost finished install.php
  • Almost finished Admin login
v.6:
  • Started Admin login
  • Edited template system
  • Few code edits
v.5:
  • Cleaned up code
  • Started installer
  • Started Admin System (In brain, not in page yet :) )
v.4:
  • Re-made template system (Super duper easy)
  • Added theme
v.0.0.0.0.0.0.0.0.0.1:
  • Added template system (Super easy)
  • Started admin login
Errors: None known of.

Questions accepted :), Enjoy.




The project's development is going really slow, sorry.
 

Twisting

HFFM
Sep 4, 2011
362
79
Is this actually going to be a good CMS to use?
Not to sure on using it because
  • It's a bet
  • Weird name
 

Markshall

Русский Стандарт
Contributor
Dec 18, 2010
2,637
2,389
Not sure if real CMS or a troll.

As said before, the name is a bit weird and the whole 'version 0.0.0.0.0.0.0.0.1' whatever makes it look a bit unbelievable too.

But whatever, good luck.
 

Macemore

Circumcised pineapples
Aug 26, 2011
1,681
819
Is this actually going to be a good CMS to use?
Not to sure on using it because
  • It's a bet
  • Weird name
I wouldn't recommend some one using it professionally, but I'd use it myself, obviously. It'll have the basics of a CMS to where you can change a page's content, styles configuration and all that fancy stuff.

Not sure if real CMS or a troll.

As said before, the name is a bit weird and the whole 'version 0.0.0.0.0.0.0.0.1' whatever makes it look a bit unbelievable too.

But whatever, good luck.
It's legit, but I just started it yesterday so I don't want anyone thinking it's going to be released sometime today, or tomorrow. Not a troll :).
 

Khalil

IDK
Dec 6, 2011
1,642
786
Can you, give us more information and maybe add some screenshots and snippets ?!
Good luck.
 

Macemore

Circumcised pineapples
Aug 26, 2011
1,681
819
Thread updated with information and screenies.

OFT: 600th post.
 

Macemore

Circumcised pineapples
Aug 26, 2011
1,681
819
thread updated with snippets, and shit.

To all the people who are like "Ermergerd the nerm merks it sernd trollzor"
RibbonCMS, which this is inspired by, think about it, a fucking ribbon, that shit you tear off your Christmas presents, is managing your website.
I think Deep Fried Butter can do the same, haters.
 

Beast

Posting Freak
Sep 15, 2011
625
163
thread updated with snippets, and shit.

To all the people who are like "Ermergerd the nerm merks it sernd trollzor"
RibbonCMS, which this is inspired by, think about it, a fucking ribbon, that shit you tear off your Christmas presents, is managing your website.
I think Deep Fried Butter can do the same, haters.
Hopefully more then a config next time :p !
 

Macemore

Circumcised pineapples
Aug 26, 2011
1,681
819
Thread updated with the newest edits.
I'll post snippets on here tomorrow.
 

Macemore

Circumcised pineapples
Aug 26, 2011
1,681
819
I've almost completed the install page, just a few more things to add.
I've updated the thread with snippets and dev log.

if anyone that can do css wants to help me with the Admin page, I'd fucking love that.
 
Status
Not open for further replies.

Users who are viewing this thread

Top