[DEV] iJaayCMS [HTML / PHP / MySQLi]

Status
Not open for further replies.

Baevus

the names ethan
Nov 4, 2012
565
47
create.php
iJaayCMS - The new revolution of uploading.
Unique Features:
  • Made By iJaay. (OMG UR KIDDIN MEH)
  • PHP / MySQLi Code.
  • Addons / Scripts Compatible.
  • A project that WONT be given up!
  • A cool theme system.
  • CODETANA! (Ty GUY WHO MADE IT)
Screenies:


You must be registered for see images attach

You must be registered for see images attach


Scripts:
  • The index core - Been modified!
    PHP:
    <?php
    
      define('iJC', true);
    
      require_once('app/engine.php');
    
      $iJC->init('template');
      $iJC->template->setView();
    
      echo $CT->template->output();
    
    ?>
  • Class Core (Codetana modified)
PHP:
<?php
 
  /*
  * Core Class.
  *
  * Codetana
  *
  * Modified by iJaay to fit with iJaayCMS
  */
 
  if( !defined('IN_iJC') ){ die(); }
 
  class iJC_CT_Core {
 
    public $mysqli, $template, $form, $permget;
 
    /*
    * Initialize a class.
    */
    public function init($class, $additional = array()) {
 
        switch( $class ) {
 
            case "mysqli":
 
                if( isset($additional['host']) || isset($additional['username']) || isset($additional['password']) || isset($additional['database']) ){
   
                    require_once('class.mysqli.php');//Including the MySQLi class.
                    $this->mysqli = new iJC_CT_MySQLi($additional['host'], $additional['username'], $additional['password'], $additional['database']);
   
                }else{
   
                    die('MySQLi values not valid!');
   
                }
 
                break;
 
            case "template":
 
                require_once('class.template.php');//Including the template class. This includes the Vew Controller.
                $this->template = new iJC_CT_Template();
 
                break;
 
            case "form":
 
                require_once('class.form.php');//Including the form UI class.
                $this->form = new iJC_CT_Form();
 
                break;
 
            case "permget":
 
                require_once('class.permget.php');//Including the PermGET Class.
                $this->permget = new iJC_CT_PermGET();
 
                break;
 
        }
 
    }
 
  }
 
?>
  • Engine.PHP modified
PHP:
<?php
 
  if( !defined('IN_iJC_CT') ){ die(); }
 
 
  $CONF['settings']['default_view'] = 'iJC';
 
 
 
 
 
 
 
 
 
 
 
  $CONF['system']['current_build']  = 'BETA1.0.0';
 
  require_once('class.core.php');
    $iJC = new iJC_CT_Core();
?>
Completed:
  • index
  • /app
  • /pub
Credits:
  • iJaay (60%) - Combining da amazing projects into 1
  • Jian (LeJian) (40%) - Codetana
Sorry this is all!
A fucking load (atleast 10 pages)
Will be completed after Telstra bothers fixing my internet ._.
-iJaay
 

Nixonn

Member
Sep 2, 2011
93
24
Off Topic; Telstra is so fucking slow.
On Topic: Hope this project continues, would like to see what has to come ;) Goodluck :D
 

Weasel

👄 I'd intercept me
Nov 25, 2011
4,132
2,456
Could you please use PHP tags instead of CODE? Makes it a lot more clear. Also, what did you actually change in the Codetana code? Do you have any code you have written from scratch as a snippet?
 

Baevus

the names ethan
Nov 4, 2012
565
47
Could you please use PHP tags instead of CODE? Makes it a lot more clear. Also, what did you actually change in the Codetana code? Do you have any code you have written from scratch as a snippet?
Ok :p
And I've made it compatible with alot of things. Like you could implement this into ProjectJ ect. :)
 

Derpec

Retrosetups.com | Professional, Reliable, Setups
Feb 21, 2012
654
89
I'd like to see some screenshots of the progress please.
 

Baevus

the names ethan
Nov 4, 2012
565
47
I'd like to see some screenshots of the progress please.
Alright uploading now.

Update:
Uploads updated, theme is very messy. Fixing theme after school. :)
Or may use bootstrap.
 

GarettM

Posting Freak
Aug 5, 2010
833
136
Alright uploading now.

Update:
Uploads updated, theme is very messy. Fixing theme after school. :)
Or may use bootstrap.
You know for upload script all you need is good security and php+jquery/ajax for uploading. But Codetena* cant spell * is a good framework to use
 

Khalil

IDK
Dec 6, 2011
1,642
786
Codetana is already made by and i'm pretty sure many use it right now, so how is it a "Unique Feature" ?
 

GarettM

Posting Freak
Aug 5, 2010
833
136
Looks like all you are doing is changing Variables? What is this?
You Guys CODETANA is just a framework he has to program the user and uploading scripts... CODETANA is just a boost to make sure The Upload Script is secure and doesn't brake down.. There is nothing wrong for what hes doing actually hes probably the Only one that has used CODETANA and actually told people " Hey im using this!! ". Remember the purpose of this script is to help people not to drive the dude to suicide
 
Status
Not open for further replies.

Users who are viewing this thread

Top