Thank you .Looks good ;p goodluck lol
You're welcome o;Thank you .
I've updated the thread with the latest updates. I'll be releasing the CMS itself probably this week, or next week I hope.
I won't be applying any legit CSS (any that looks good anyway) to the Admin pages because I'm just not that good at it.
if anyone has a theme, or can code css please inbox me. Thanks for all the support!
CH? pm me lol.BUMP. Seems interesting. And nice name.
Off-Topic: Are you Mace from CH?
The external harddrive I used to keep all the files for DFB failed after being dropped from a 3rd story balcony, but I have an older version of DFB I'll be continuing off of.
I didn't like how most of it was done (as I was drunk when I did it) so I'll be re-doing some of it.
Looks good, can't wait to see it loool.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:
The entire site looks like that, credits toYou must be registered for see linksfor theYou must be registered for see links
Snippets: (ForYou must be registered for see links)
login.php
Inc.phpPHP:<?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>"; } ?>
Build log: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!'; } ?>
v.7:
Rather large update to the progress of the CMS
v.6.5.1:
- 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
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.
- Finished Admin login
- Started Admin (backend)
- Remade login (finished)
v.6.5:
v.6:
- Almost finished install.php
- Almost finished Admin login
v.5:
- Started Admin login
- Edited template system
- Few code edits
v.4:
- Cleaned up code
- Started installer
- Started Admin System (In brain, not in page yet )
v.0.0.0.0.0.0.0.0.0.1:
- Re-made template system (Super duper easy)
- Added theme
Errors: None known of.
- Added template system (Super easy)
- Started admin login
Questions accepted , Enjoy.
The project's development is going really slow, sorry.
Chris...? I think you have the wrong number... Please check the number and try again!What happened to your other account, Chris? Is it banned or something?
Forgot to update, thanks for reminding me .WHERE IS MY DEEP FRIED BUTTA! Any updates?
Forgot to update, thanks for reminding me .
An Administrator panel theme is being created byYou must be registered for see linksand I've gotten most of it done, just needs a few things to be finished like:
I hope to see it finished soon, but progress has been slow due to school work.
- Creating pages
- Editing pages
- Adding pages to navigation
SQL, it's much easier that way with the template system, all pages are in the database and then printed out onto the layout.Sound's cool enough, how will you be creating pages? A bit confusing to me ;p Is it going to store the page via a mysql db some how or create a php/index file.