[REL] SuperCMS [REL]

Status
Not open for further replies.
Jan 17, 2012
649
166
Hello,

I'm here today to release my CMS as a framework. After starting the project over, I lost total interest in it and decided so release what I currently have.
It is written in PHP and uses MySQL as the main database driver. I'm sorry for discontinuing the CMS, I just thought that there was no point continuing it,
after all the flaming and hatred that was brought to me by .

Basic Features:
Custom web-gallery.
Neat and clean source code.
Unique error system.

Coded Features:
Index (100%)
Maintenance (100%)

Coded Classes:
MySQL class (100%)
Template class (100%)
Core class (70%)

Credits:
- Developer
- Structure of WambaPHP.

Download:


Maybe i'll release this CMS finished, sometime in the future, who knows.
 
Jan 17, 2012
649
166
J.s, you forgot to include enviroment.php
Sorry about that. Just use this.
PHP:
<?php
if(!defined('SUPER')) die("Direct access is Denied.");
     
define('S','system/');
define('CON','management/');
define('T','templates/');
define('L','library/');
define('C','classes/');
 
#############################################################
require_once S . CON . 'config.php';
require_once S . L . C . 'class_template.php';
require_once S . L . C . 'class_users.php';
require_once S . L . C . 'class_mysql.php';
require_once S . L . C . 'class_core.php';
 
#############################################################
 
/* Initialize CMS variables. */
$dbase = new Database();
$template = new Template();
$super = new Core();
$users = new Users();
 
#############################################################
 
session_start();
$dbase->connect();
$template->publish();
 
#############################################################
 
if($super->in_maint() == 1)
{
    header('Location: maintenance.php');
}
 
?>
Thanks for pointing it out.
 

zer0Tolerence

New Member
Jan 10, 2013
4
0
"(system/library/classes/class_users.php): failed to open stream: No such file or directory in C:\xampp\htdocs\environment.php on line 13"
 

Sysode

Front-End Developer
Dec 11, 2012
1,673
848
"(system/library/classes/class_users.php): failed to open stream: No such file or directory in C:\xampp\htdocs\environment.php on line 13"

Use the code he suplied earlier and copy it too nopepad and name it environment.php - Maake sure it is placed in your htdocs.
 

Ecko

23:37 [autobots] -!- eckostylez [[email protected]]
Nov 25, 2012
1,396
960
Just because you think I stole someone's work? Please, check the source and tell me what code I stole, so you can stop bitching on my threads.

Thanks.
I already did in your other thread, which you have since removed the alleged content from your GitHub. I think that says enough. I even showed where you took the admin page from and you just renamed it. Then I asked you to write a simple cURL function that would take less than a minute and you failed to do so.

I don't think you stole someone's work. I know you did. I saw your shitty code on St4tic and somehow you went from that to OOP. Even if you made that shitty code a long time ago, no one in their right mind would post something so inefficient as that.
 

Leader

github.com/habbo-hotel
Aug 24, 2012
1,009
271
Off Topic Much> Isn't this cms inefficient since most cms's are butterfly compatyibly, and mysqli
 
Jan 17, 2012
649
166
Off Topic Much> Isn't this cms inefficient since most cms's are butterfly compatyibly, and mysqli
It's a base, dumbass. Read the thread before posting. facepalm.jpg

I'm done with this CMS, anyway. I don't have or want anything to do with it anymore.
 
Status
Not open for further replies.

Users who are viewing this thread

Top