Re: BrickPHP ~ Complete CMS
Looks nice, your JS and CSS skills are epic, so this will probably be very good.
Good luck!
Re: BrickPHP ~ Complete CMS
On the bottom of the news article page can you add like a "Posted by: ???" or "- ???" with a link to there profile?
Re: BrickPHP ~ Complete CMS
Quote:
Originally Posted by
Hejula
On the bottom of the news article page can you add like a "Posted by: ???" or "- ???" with a link to there profile?
http://img27.imageshack.us/img27/6406/knipselh.png
Re: BrickPHP ~ Complete CMS
I WANT CREDITS FOR THE IDEA FOR A OWN THREAD JOOPIE
no just kidding, i have see some code with teamvieuwer and i like it :D
Re: BrickPHP ~ Complete CMS
Quote:
Originally Posted by
davidaap
I WANT CREDITS FOR THE IDEA FOR A OWN THREAD JOOPIE
no just kidding, i have see some code with teamvieuwer and i like it :D
LOL.
@Joopie can you setup demo site for this CMS I want to try it NOWW!!!! :)
Re: BrickPHP ~ Complete CMS
Quote:
Originally Posted by
Hejula
LOL.
@Joopie can you setup demo site for this CMS I want to try it NOWW!!!! :)
I'll look at it
...
Finished the credit page:
Re: BrickPHP ~ Complete CMS
Re: BrickPHP ~ Complete CMS
Ability to register using Facebook would be PRO! reckon you could do that?
Posted via Mobile Device
Re: BrickPHP ~ Complete CMS
Quote:
Originally Posted by
Roper
Ability to register using Facebook would be PRO! reckon you could do that?
Posted via Mobile Device
Not scamming people would be PRO too!
Re: BrickPHP ~ Complete CMS
Quote:
Originally Posted by
Tr0ll.™
Not scamming people would be PRO too!
+1 to Cobe
On a serious note:
Jos, this is freaking awesome, keep up the good work:thumbup1:
Re: BrickPHP ~ Complete CMS
Dan, told him he is no longer allowed to sell items on RZ.
Joopie this CMS is very promising, love all the work you did with it.
Re: BrickPHP ~ Complete CMS
Would this be using A VIP system.
Posted via Mobile Device
Re: BrickPHP ~ Complete CMS
Quote:
Originally Posted by
Subway
What all is left to do?
I made a list in the main topic x]
Re: BrickPHP ~ Complete CMS
Made a cache class, Not so speciale but it works greate
PHP Code:
class Cache
{
protected static $class;
private static function FileName()
{
return BASE.'/includes/cache/'.md5(self::$class).'.cache';
}
public static function Exists()
{
if (file_exists(self::FileName()) && filemtime(self::FileName()) +450 > time())
{
return true;
}
return false;
}
public static function MakeCache($data)
{
$data = gzcompress($data);
file_put_contents(self::FileName(), $data);
}
public static function DeleteCache()
{
unlink(self::FileName());
}
public static function GetCache()
{
$data = file_get_contents(self::FileName());
return gzuncompress($data);
}
}
Also started with housekeeping and added some feeds by the user info.
http://img545.imageshack.us/img545/4201/knipselu.png
!!: Its not finished yet :!!
http://img191.imageshack.us/img191/1757/unledpqp.png
Tonight or tomorrow I gonna make the full Habbo club/ Pixel page.