Khalil
IDK
Hello guys,i'm Sheldos and today i'v started working On SwipeCMS,now most of you know SwipeCMS witch is originally made & coded by Raz0r. but since raz0r. haven't released the latest version of it yet,I decided to do some work on it,Of course i asked Raz0r. if i can start on this development & hes was ok with it,since SwipeCMS is a Open & Free Source.
Some information for people that doesn't know SwipeCMS:
1#: SwipeCMS is Coded/Developed/Created by: Raz0r. & GH057 & Of course the development is continued by me
2#: SwipeCMS's code is very clean,no known exploits or bugs.
3#: SwipeCMS is compatible with Phoenix (Haven't tried it with butterfly).
4#: SwipeCMS is easy to make themes/templates/styles for.
and the list continues....
Some Pictures ?!
The index,easy & simple design (design made by habbo):
The register,easy & simple design [design made by habbo(a Quickregister might be added)]:
Landing Page,
Want to see some Codes ?!
*Updates On SwipeCMS*
- Maintenance System 70%
- News System 50%
- Campaigns System 50%
- Staff Page 40%
----------------------------------------------------------------------------------------------------------
by the way,The ase won't be released with it,as Raz0r. is working on it,and he might include it in the next release of SwipeCMS.
Make sure to keep checking thread,as i'l of course continue updating it & update you with SwipeCMS's latest features/updates/changes....
Thank You For Your Time (I Know I Just Killed The Caps Button x) ).
*The CMS works fine with both of Xampp & IIS,even tho i Suggest Using IIS*
Some information for people that doesn't know SwipeCMS:
1#: SwipeCMS is Coded/Developed/Created by: Raz0r. & GH057 & Of course the development is continued by me
2#: SwipeCMS's code is very clean,no known exploits or bugs.
3#: SwipeCMS is compatible with Phoenix (Haven't tried it with butterfly).
4#: SwipeCMS is easy to make themes/templates/styles for.
and the list continues....
Some Pictures ?!
The index,easy & simple design (design made by habbo):
The register,easy & simple design [design made by habbo(a Quickregister might be added)]:
Landing Page,
Want to see some Codes ?!
PHP:
class swipeCore {
public function clean($str) {
return stripslashes(htmlspecialchars(mysql_real_escape_string($str)));
}
public function secure($input) {
return addslashes(htmlspecialchars(trim(strip_tags($input))));
}
}
PHP:
class swipeUser
{
public function updateIP($ip)
{
return mysql_query("UPDATE users WHERE username = ".$username." SET ip_last = ".$_SERVER['REMOTE_ADDR']."");
}
public function createSSO($username)
{
$row = mysql_fetch_assoc(mysql_query("SELECT * FROM users WHERE id='".$_SESSION['SwipeUser']."'"));
$sso = rand(5,30) . '-' . $row['username'] . '-' . rand(5,30);
//$sso = 'SwipeCMS-' . $username . '-' . substr(sha1(time()),0,25) . '-ticket';
return $sso;
}
public function sso() {
$row = mysql_fetch_assoc(mysql_query("SELECT * FROM users WHERE id='".$_SESSION['SwipeUser']."'"));
return $row['auth_ticket'];
}
public function name() {
$row = mysql_fetch_assoc(mysql_query("SELECT * FROM users WHERE id='".$_SESSION['SwipeUser']."'"));
return $row['username'];
}
}
*Updates On SwipeCMS*
- Maintenance System 70%
- News System 50%
- Campaigns System 50%
- Staff Page 40%
----------------------------------------------------------------------------------------------------------
by the way,The ase won't be released with it,as Raz0r. is working on it,and he might include it in the next release of SwipeCMS.
Make sure to keep checking thread,as i'l of course continue updating it & update you with SwipeCMS's latest features/updates/changes....
Thank You For Your Time (I Know I Just Killed The Caps Button x) ).
*The CMS works fine with both of Xampp & IIS,even tho i Suggest Using IIS*