[DEV] ProjectET 2.0 [PHP/CSS]

Status
Not open for further replies.

ProLegitZ

Jacob is here bitch !
May 11, 2012
606
56
Introduction
Hey Again, Well Heres Project ET 2.0 In Development :],​
We Had A Few "Glitches" But This Time, The Codes 100% Exploit Free,​
If You See Any "Glitches" Please Feel Free To Comment In The Thread​

Features
-New User System​
-New Theme​
-Simple PHP Code​
Code Snippets
CONFIG.PHP FILE
PHP:
<?php
 
    $mysql['host'] = '127.0.0.1';
    $mysql['port'] = '3306';
    $mysql['user'] = 'root'; // suggested to make a new account instead of using root for security purposes
    $mysql['password'] = ''; // suggested to generate one for security.
    $mysql['db'] = 'projectet';
 
    $theme['type'] = 'original'; // original or Infinate theme
 
    $config['sitename'] = "ProjectET 2.0";
    $config['shortname'] = "ET";
 
    $site['url'] = "http://localhost"; // no ending slash
 
 
?>

CORE.PHP FILE
PHP:
<?php
 
// Get system files
 
    @require_once "./configuration/func.php";
    @require_once "./configuration/config.php";
 
 
// Define variables
 
    define("IDPATH", $_SESSION['idpath']);
    define("USERNAME", $_SESSION['username']);
 
// Connect to MySQL
 
    $connection = @mysql_connect($mysql['host'] . ":" . $mysql['port'], $mysql['user'], $mysql['pass']);
 
    if(!$connection)
    {
        sError("MySQL Cannot Connect.");
    }
?>
MySQL So Far,
Code:
CREATE TABLE IF NOT EXISTS `NEWS` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `title` int(11) NOT NULL DEFAULT 'No Title.',
  `description` int(11) NOT NULL DEFAULT 'No Description.',
  `news` int(12) NOT NULL DEFAULT 'This can be a story, or not',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=cp1251 AUTO_INCREMENT=39 ;

 

Markshall

Русский Стандарт
Contributor
Dec 18, 2010
2,637
2,389
Seems cool, what exactly is ProjectET though? A CMS?

Also, do you have any screenshots?
 

ProLegitZ

Jacob is here bitch !
May 11, 2012
606
56
Seems cool, what exactly is ProjectET though? A CMS?

Also, do you have any screenshots?
ProjectET Is Basicly like any other non-habbo cms,
its like a mini-blogger thing.
-----------------------------------------------------
Screenshots cant be provided yet as seeing i just got up to theme folder.
 

Stevee

Posting Freak
Mar 29, 2011
580
35
Awh, This looks very nice, I'll check it out here in a bit actually. Good thread. thanks.
 

ProLegitZ

Jacob is here bitch !
May 11, 2012
606
56
2d992mh.png


-----------------------------------------------------------------------------------------------
PHP:
<link rel="stylesheet" type="text/css" href="style.css" />
<div id='overlay'></div>
<div id='modal'>
    <div id='content'>Hey, Welcome To Project ET A Spectacular Blogging System<br/>You Can Change Me In /files/welcome.php</div>
    <a href='#' id='close'>Close Me</a>
</div>
Yes Yes Its a basic code
 

Xenous

o shi
Nov 15, 2011
383
101
You really shouldn't be suppressing errors with the '@' as you need to know what the errors are during development, so instead allow all the errors and just before release add
PHP:
 <?php error_reporting(0); ?>
to the core file :D
Rather than that I hope this get's finished and you start using PDO or MySQLi in later revisions if any along with oop if you haven't any yet.
 

ProLegitZ

Jacob is here bitch !
May 11, 2012
606
56
Update:
Original Theme 100% Coded!
c9ptYPkUGgQz.png

Just A Simple HTML & CSS Theme,
-----------------------------------------
User System Being Added In Theme
 

brsy

nah mang
May 12, 2011
1,530
272
rip? this was released on otak4u...

 

brsy

nah mang
May 12, 2011
1,530
272
Immature. Linking to porn..
It's a replacement link... if you were smart, you'd learn how to read as I said "0taku", and I have "f375/" in the link which is a forum node for 0t4ku.. so you should be able to put 1+1 together to make 2.

you didn't give credit either.
 

Gajeel

Well-Known Member
Oct 4, 2011
2,411
413
  1. Give credits to & for making it.
  2. Link back here: ... that's the theme is using.
  3. You used wrong terms that's why we thought you're taking the credits from Andeh & NoEffex.
 
Status
Not open for further replies.

Users who are viewing this thread

Top