[Release] FlareCMS

Page 6 of 8 FirstFirst 12345678 LastLast
Results 76 to 90 of 117
  1. #76
    Infraction Banned Maple1134 is offline
    MemberRank
    Jun 2008 Join Date
    564Posts

    Re: [Release] FlareCMS

    Looks good, Nice Job =]

  2. #77
    Account Upgraded | Title Enabled! squishybubs is offline
    MemberRank
    Apr 2008 Join Date
    British Columbia, CanadaLocation
    257Posts

    Re: [Release] FlareCMS

    Quote Originally Posted by Silhouettes View Post
    & HI BLADER, DO YOU REMEMBER ME?
    I'M DENNIS FROM CASHSTORY
    HAHAHAHAHHAHAHAHEHEHEHHEHEHE :)
    Anyways, Eddy, this CMS looks amazing. the comments are good on it too. You're some popular guy on here ;)

  3. #78
    Apprentice -Blader- is offline
    MemberRank
    Dec 2008 Join Date
    24Posts

    Re: [Release] FlareCMS

    Quote Originally Posted by holthelper View Post
    good for you. still doesnt justify using a free template as a base template for your CMS


    LOL you got to be kidding me. you dont need to define <li> with another file. its html tag that it already knows... *cough*means list*cough*


    could just use a include or require. you dont really need a fuction to do that. its just added work to make a fuction to do the same work as other forms. i can see it if you need to use it to do many things than ya but for thoughs simple things idk why you whould do that.


    not hard... $SITE_TITLE = "blah blah" or $SITE_TITLE = $blah_blah


    you can make veribles in the config file and that would make it dynamic...

    as for the layout - did you make the images? no - did you add a "flow" to the images? no - did you add features to the layout? yes - you just added things to it to make it somewhat "yours"

    all i say is if you want to be "cool" (which im saying im not for i know im not cool) make your own images/flow and add your own features. basicaly your doing half the work and talking credit for the whole thing
    My base template is not a free template, I made it on my own. Only TechJunkie and BluePigment are taken. <-- Read that

    I did not mean define the "<li>" LITERALLY. It loads it from the navigation class. Check out the navigation class.

    Code:
    	function show() {
    		$this->query = $this->sql->query("SELECT * FROM `cms_navigation` ORDER BY `order` ASC");
    		while ($this->data = $this->sql->fetch_array($this->query)) {
    			$this->getInfo();
    			if (strstr($_SERVER['REQUEST_URI'], $this->PHP)) {
    				if ($this->ACCESS == 0 || $this->ACCESS == 1 && LOGGEDIN || $this->ACCESS == 2 && LOGGEDIN_TYPE == 'ADMIN') {
    					if ('/' . SITE_DIR . $this->URL == $_SERVER['REQUEST_URI']) {
    						if (file_exists('templates/' . TEMPLATE_DIR . '/navigation_selected.php')) {
    							require('templates/' . TEMPLATE_DIR . '/navigation_selected.php');
    						} else {
    							require('templates/default/navigation_selected.php');
    						}
    					} else {
    						if (file_exists('templates/' . TEMPLATE_DIR . '/navigation.php')) {
    							require('templates/' . TEMPLATE_DIR . '/navigation.php');
    						} else {
    							require('templates/default/navigation.php');
    						}
    					}
    				}
    			}
    		}
    	}
    What this does is includes the custom navigation file and if it doesn't exist, loads default. You need to create a new file that defines the new template to use instead of the default one.

    I dynamically define site constants through the mysql table `cms_settings`. Btw, it's define (const name, const value, [bool case_sens.]) not $const = value.

    The classes shorten down the code greatly. Example:

    I want to get the user's information, i can do this instead:

    $user->get('id', 23);

    Instead of:

    $query = mysql_query("SELECT * FROM `accounts` WHERE `id` = '23'");
    $data = mysql_fetch_array($query);

    $user->NAME // Returns the name
    $data['name'] // Returns the name

    It's much easier to use the user class than repeating those lines above every single time you need to use them.

    If you're talking about my default template then:

    as for the layout - did you make the images? Yes
    did you add a "flow" to the images? What does this have to do about it?
    did you add features to the layout? yes

    I did not take credit for the templates, the 2 i took still has credits in them. I don't take credit for what's not mine.

    Go actually look at the files and figure out what I mean about the templating system and classes before you go and post about it.


    & Thanks for all the comments :P

  4. #79
    Shamowgna. findergm is offline
    MemberRank
    Jun 2008 Join Date
    660Posts

    Re: [Release] FlareCMS

    GG to the holthelper V.S. -Blader-. Awesome CMS btw. Like the layout and imgs

  5. #80
    Account Upgraded | Title Enabled! AuroX is offline
    MemberRank
    Sep 2008 Join Date
    1,431Posts

    Re: [Release] FlareCMS

    i cant add stuffs..every time i add stuff it came out
    Code:
    xxxxx has been created. Page will refresh in 2 seconds.
    it refreshes..then nothing came out..

  6. #81
    Apprentice -Blader- is offline
    MemberRank
    Dec 2008 Join Date
    24Posts

    Re: [Release] FlareCMS

    Lets say you created a new download. After the page refreshed, visit the download page, and the new download should be there.

  7. #82
    Proficient Member LidoDEE is offline
    MemberRank
    May 2008 Join Date
    179Posts

    Re: [Release] FlareCMS

    That happens to me too. I type in a rule let's say. Then after I check the rules page, It isn't there. I have to put it like a few times, then it shows up.

  8. #83
    Apprentice -Blader- is offline
    MemberRank
    Dec 2008 Join Date
    24Posts

    Re: [Release] FlareCMS

    Quote Originally Posted by LidoDEE View Post
    That happens to me too. I type in a rule let's say. Then after I check the rules page, It isn't there. I have to put it like a few times, then it shows up.
    I've tested and it works on my computer o_o

    Try making a rule, then wait the 2 seconds. After it refreshes, check the drop down box to see if it's there.

  9. #84
    Valued Member mvrb is offline
    MemberRank
    Apr 2008 Join Date
    DenmarkLocation
    133Posts

    Re: [Release] FlareCMS

    Cool. Can anyone please upload this on mediafire or anything? Or tell me where to get Tortoise thingy.

  10. #85
    Apprentice -Blader- is offline
    MemberRank
    Dec 2008 Join Date
    24Posts

    Re: [Release] FlareCMS


  11. #86
    Mother effin' clouds SaintsIan is offline
    MemberRank
    Apr 2008 Join Date
    fyrechat.netLocation
    2,809Posts

    Re: [Release] FlareCMS

    Coding wise this beats Cype 500% times ;)
    At least its a "PROPER" template system.

  12. #87
    Valued Member mvrb is offline
    MemberRank
    Apr 2008 Join Date
    DenmarkLocation
    133Posts

    Re: [Release] FlareCMS

    Thanks! You guys on RZ are amazing!

  13. #88
    Proficient Member LidoDEE is offline
    MemberRank
    May 2008 Join Date
    179Posts

    Re: [Release] FlareCMS

    For the template chooser, I put it 'BluePigment', why doesn't it refresh and change? xP

  14. #89
    Apprentice -Blader- is offline
    MemberRank
    Dec 2008 Join Date
    24Posts

    Re: [Release] FlareCMS

    Quote Originally Posted by SaintsIan View Post
    Coding wise this beats Cype 500% times ;)
    At least its a "PROPER" template system.
    Actually it's not really using the common template system, but it acts similar to one.

    Example of common template system:
    http://www.codewalkers.com/c/a/Displ...System-in-PHP/

    @above - Enable javascript if it's not enabled

  15. #90
    Mother effin' clouds SaintsIan is offline
    MemberRank
    Apr 2008 Join Date
    fyrechat.netLocation
    2,809Posts

    Re: [Release] FlareCMS

    Thats the same tutorial I read quite a while ago ;)
    But compared to Cype's template system at least its reasonable thus the quotes on 'PROPER'.



Page 6 of 8 FirstFirst 12345678 LastLast

Advertisement