Show DevBest [Release] CookieFramework 2- Updated & Optimized.

DaLightz

See ya'll in the afterlife.
May 19, 2012
1,136
262
CookieFramework 2
By CookieMonsta

Introduction-
CookieFramework is a simple framework programmed in PHP. It's been released in the past, at version 1.0.0r with not much class work, etc. If you use CookieFramework for your projects, I highly recon you use this version.

Features-
  • MySQLi engine.
  • Template & Param engine.
  • Copyright & Version check engine.
  • Configuration & Other optimizations.
Screenshots-
d94c8fd453064fd4a435313.png
f774537ac4274f3cbb478f6.png


Credits-
  • CookieMonsta- Dev
  • xElmo- Template ref.
  • AptanaStudio3- Tool.
Download-
Version:
 

Sysode

Front-End Developer
Dec 11, 2012
1,673
848
Never really used "famework" before, mind explain a bit of how I will benefit from using this, if I were to?
 

DaLightz

See ya'll in the afterlife.
May 19, 2012
1,136
262
Never really used "famework" before, mind explain a bit of how I will benefit from using this, if I were to?
A framework is basicly a small "cms" in which is extendable and for learning purpose.
Benifits;
  • Read php source.
  • Extend on it with your knowledge.
  • Read my /* Documentations */
 

Shard

Member
Feb 16, 2013
52
9
-downloads.

Hope I can learn something from this.
Looking forward to posting positive feedback.

=========
Edit
=========
Looks great. Maybe you could add some comments etc to help beginners understand.
 
Jan 17, 2012
649
166
I'll look into it. Although I'm not one for MVC.
It's kind of hard, I myself am still getting the hang of it when I'm coding my CMS with MVC. If you need any help understand MVC, you can look here;




Or PM me. :)
 

DaLightz

See ya'll in the afterlife.
May 19, 2012
1,136
262
It's kind of hard, I myself am still getting the hang of it when I'm coding my CMS with MVC. If you need any help understand MVC, you can look here;




Or PM me. :)
Thanks for the sources.
 

whyherro

New Member
Sep 8, 2012
3
0
How do I use this? Everytime I put it into my htdocs, create the database and go to the localhost directory in my browser, it gives an object not found error.
 

Weasel

👄 I'd intercept me
Nov 25, 2011
4,132
2,456
inc/inc.CF.php = noob way to put a copyright

I agree with this, there is no actual 'security'. They go in the file, and they change
PHP:
 /* Make sure the user don't change the cms name. */
 if(cms_cf == 'CookieFramework 2')
 {
 $hybrid = true;
 }
 else
 {
 die('CookieFramework Copyright error: Don\'t change the name of the cms!');
 }

to
PHP:
 /* Make sure the user don't change the cms name. */
 if(cms_cf == 'AwesomeRenamedFramework 142.0')
 {
 $hybrid = true;
 }
 else
 {
 die('Awesome Error: Don\'t change the name of the cms, its AwesomeCMS!');
 }

Or even simpler, they change == with !=.
 

DaLightz

See ya'll in the afterlife.
May 19, 2012
1,136
262
I agree with this, there is no actual 'security'. They go in the file, and they change
PHP:
 /* Make sure the user don't change the cms name. */
if(cms_cf == 'CookieFramework 2')
{
$hybrid = true;
}
else
{
die('CookieFramework Copyright error: Don\'t change the name of the cms!');
}

to
PHP:
 /* Make sure the user don't change the cms name. */
if(cms_cf == 'AwesomeRenamedFramework 142.0')
{
$hybrid = true;
}
else
{
die('Awesome Error: Don\'t change the name of the cms, its AwesomeCMS!');
}

Or even simpler, they change == with !=.

Welp, just an idea :p
 

Sean

‫‫‫‫‫‫  ‫  Don't Worry, Be Happy
Dec 12, 2011
1,121
405
Welp, just an idea :p

If you want to make a copyright notice that is hard to remove, why not take a core section of the code that is needed to run the framework, and host it on your website, then link it to the framework when people download? that way they can't edit the copyright because they don't get it

Just a suggestion :)
 

DaLightz

See ya'll in the afterlife.
May 19, 2012
1,136
262
If you want to make a copyright notice that is hard to remove, why not take a core section of the code that is needed to run the framework, and host it on your website, then link it to the framework when people download? that way they can't edit the copyright because they don't get it

Just a suggestion :)

I may look into that for LiquidCCMS.
 

Users who are viewing this thread

Top