PDA

View Full Version : Kristall-Panel RC2



Agnostic Bear
22-01-2007, 11:43 AM
It's that time again when I need your ideas for Kristall-Panel.
Tell me what you'd like to see in this release candidate what you either didn't or couldn't see on RC1.

If RC2 goes well, RC3 will be the V1 release =D

Also, we got us one of those them here domain thingys!

http://kristall-panel.net
Trebuchet MS FTW!!1111one

Ideas please.

Agnostic Bear
22-01-2007, 11:57 AM
Overly large screenshot time.

http://kristall-panel.net/img/lolcopters.gif

Seduced
22-01-2007, 12:51 PM
Make it faster, with the riting on the right changable.

I and my staff have to like wait 5minutes before it loads a page on the current one.

Agnostic Bear
22-01-2007, 01:26 PM
Make it faster, with the riting on the right changable.

I and my staff have to like wait 5minutes before it loads a page on the current one.

Open main.php
find:
http://enumeric.org/
delete that entire include.
That should sort ya problem, if not, your server is crap.

RNelson
22-01-2007, 03:57 PM
Yes we need your ideas as we always see use moaning but never telling us the problems

Nick.
22-01-2007, 05:10 PM
Sort some of the punctuation and grammar out. Like, it says "Admin options" or area of w/e. Change it to Administration Area.

I don't know, it's hard to explain, there's a lot of puntual and grammatic errors. :p PM me if you want me to tell you it all.

ScottDiamond
22-01-2007, 05:51 PM
Change the email thing when you create a new DJ and make it only for administrators - it gets annoying when it doesn't work. :@

RNelson
22-01-2007, 05:58 PM
Don't worry I already suggested that and it's been done ;)
Change the email thing when you create a new DJ and make it only for administrators - it gets annoying when it doesn't work. :@

ScottDiamond
22-01-2007, 06:50 PM
Yay.

[Extends].

bad-dj
23-01-2007, 12:08 PM
is a lot of the small bugs going to be fixed and some things i think you should add are

1)
* Edit DJ
* Lock Account (ban)

2)
* Backup System (backup SQL)
* Admin Notes

3)
* DJ Profiles
* Job Applications (a form were they can apply and the admins of the panel can read them)
* DJ Tutorials (like the news bit in it)

ScottDiamond
23-01-2007, 06:15 PM
And also you could make a section where you could add pages to it using either a text box (For PHP), uploader (from your PC) or a WYSQIQCFHAJYGF thing.

Blob
23-01-2007, 06:36 PM
And also you could make a section where you could add pages to it using either a text box (For PHP), uploader (from your PC) or a WYSQIQCFHAJYGF thing.

WYSIWYG?

Dentafrice1
23-01-2007, 08:08 PM
Where can we download the current one?

hybride
23-01-2007, 09:59 PM
www.giantdevs.co.nr - the official mirror (www.enumeric.org/downloadkp.php) is down.

Dentafrice1
23-01-2007, 10:02 PM
Thanks :)

My new panel will be coming if you want to add it.

ScottDiamond
23-01-2007, 10:02 PM
WYSIWYG?

Yeah, that thing. :p

Dentafrice1
23-01-2007, 10:05 PM
WYSIWYG

What You See Is What You Get

My panel will feature the Internets best "WIZZYWIG" Editor.

hybride
23-01-2007, 10:07 PM
Thanks :)

My new panel will be coming if you want to add it.
Certainly, but only free and / or opensource scripts.

Dentafrice1
23-01-2007, 10:08 PM
There will be a free version and or a paid version

Agnostic Bear
24-01-2007, 01:43 AM
Kevin, get the hell out of my thread.
/kevin

New image of KristallPanel that will blow you away, possibly to Scotland, possibly to Australia, whatever floats your boat.

http://kristall-panel.net/img/omfgscreenw0w.gif

bad-dj
24-01-2007, 04:33 AM
ok cool thats looks so nice and cool but i hope you still are adding more things to it as some of us have posted some cool things you should add to it :) but nice job with the look.

i have one more thing you should add is more ranks like you have Trialist DJ, DJ, Senior DJ, Admin, superAdmin

Agnostic Bear
24-01-2007, 10:33 AM
ok cool thats looks so nice and cool but i hope you still are adding more things to it as some of us have posted some cool things you should add to it :) but nice job with the look.

i have one more thing you should add is more ranks like you have Trialist DJ, DJ, Senior DJ, Admin, superAdmin

Meh, you only need 2 ranks (possibly 3)
DJ
Admin
Super Admin


Cause if you ban them, you ain't gonna want them working for you are you?
But nevertheless, I shall add them, the rankings will be as follows:

Trial DJ: Normal Features.
DJ: Normal Features.
Senior DJ: Normal Features. (Note, DJ Ready-T from CH is a ***)
Head DJ: Senior DJ Features + Ability to read all PM's and add warnings to users. (And yes, there is a warning system)
Administrator: Do anything Apart from create new administrators.
Pwnage Administrators: Complete access to all features, including some kind of hidden thing I'll put in there to entertain some people.

Agnostic Bear
24-01-2007, 11:22 AM
is a lot of the small bugs going to be fixed and some things i think you should add are

* Job Applications (a form were they can apply and the admins of the panel can read them)
* DJ Tutorials (like the news bit in it)


No and no:
Job apps: not doing them, this is a DJ Panel not a CMS, I may or may not design one.

DJ Tutorials: You want them, you submit an addon to the addon centre of Kristall-Panel when the website is released (and yes, there will be addons ;D)

Agnostic Bear
24-01-2007, 07:38 PM
Alrighty then, I've got the nav and the new login system done, and for those of you that wish to examine my code, here you go!

Code that processes the login


<?php
if(isset($_POST["username"]) && isset($_POST["password"]))
{
include("functions.php");
include("connector.php");
$username = clean($_POST["username"]);
$password = clean($_POST["password"]);
$password = encrypt($password);
if($username == "" || $password == "")
{
header("Location: index.php?error=blank");
}
$sql = mysql_query("SELECT `username`, `password`, `ban`, `level`, `warning` FROM `users` WHERE `username` = '$username' AND `password` = '$password'");
if(mysql_num_rows($sql) == "1")
{
$fetch = mysql_fetch_array($sql);
$warning = mysql_fetch_array(mysql_query("SELECT `total` FROM `warnings`"));
if($fetch["ban"] == "1")
{
header("Location: index.php?error=banned");
exit;
}
if($fetch["warning"] == $warning["total"] || $fetch["warning"] > $warning["total"])
{
mysql_query("UPDATE `users` SET `ban` = '1' WHERE `username` = '{$fetch["username"]}'");
header("Location: index.php?error=banned");
exit;
}
$ip = $_SERVER["REMOTE_ADDR"];
$_SESSION["kristall_username"] = $fetch["username"];
$_SESSION["kristall_level"] = $fetch["level"];
$_SESSION["kristall_ip"] = $ip;
$_SESSION["kristall_hostname"] = gethostbyaddr($ip);
header("Location: main.php");
}
else
{
header("Location: index.php?error=incorrect");
}
}
?>
Code that processes the "clean" function


function clean($string)
{
$string = str_replace("\"", "", $string);
$string = str_replace("'", "", $string);
if(get_magic_quotes_gpc())
{$string = stripslashes($string);}
elseif(!get_magic_quotes_gpc())
{$string = addslashes($string);}
$string = mysql_real_escape_string($string);
$string = htmlspecialchars($string);
$string = nl2br($string);
return $string;
}
End.

And and for god sake someone merge my posts!

RNelson
24-01-2007, 08:19 PM
Hmmm bump also looks kool :]

bad-dj
24-01-2007, 11:57 PM
ok cool well good pic with the stuff your putting in and not putting in it will be a good panel.

and cool there willl be addons :)

bad-dj
25-01-2007, 05:50 AM
ok i well i have some more thing you mite want to add to the panel.

1)
*shoutouts ban (if some one sends a bad shoutout)
*admins and unban the shoutouts ban

2)
*report shoutouts (so if some one sends a bad shoutouts and you do not know if its werth a ban)
*Admins or some level can read then if ban them if they need to.

well i thnk thats about it and nice i like the login page and that can not wait to get a copy and use it :)

Agnostic Bear
25-01-2007, 02:39 PM
ok i well i have some more thing you mite want to add to the panel.

1)
*shoutouts ban (if some one sends a bad shoutout)
*admins and unban the shoutouts ban

2)
*report shoutouts (so if some one sends a bad shoutouts and you do not know if its werth a ban)
*Admins or some level can read then if ban them if they need to.

well i thnk thats about it and nice i like the login page and that can not wait to get a copy and use it :)


Already included.

jarhead!
25-01-2007, 08:51 PM
goood job..

ScottDiamond
25-01-2007, 09:03 PM
*cannot wait*

bad-dj
26-01-2007, 01:32 AM
cool your on top of all the call things :) i can not wait its going to be big (hope)

Dentafrice1
26-01-2007, 02:24 AM
From what i've seen its going to be good :)

bad-dj
27-01-2007, 05:33 AM
what are some of the tings that are new that are not in the Kristall-Panel RC1.

Want to hide these adverts? Register an account for free!