UNION CMS

GangnamStyle

HTML Advanced Coder
Jan 8, 2012
121
8
Hello, I'm coming to a idea to make a new Union CMS, The last CMS Wasn't a good sucess.
I'm going to remake it and I'll need recuiting!

Languages:
PHP
CSS
HTML
C++
MySQL

What Included:
In This CMS, We'll be including many items:
Blog
Billing / Shop
Habbo Retro, (REVCMS Plus I'll buy a EMU Licence, coding our own SKIN!)
Social Networking
AND More..

Why Am I Doing This?
After Union CMS Didn't really sucess on my site, I'm thinking of remaking it ect, It'll include alot of new features and new coding languages.

Recuiting:
I'll be recuiting around 5People. I'll Hope to finish this CMS, We'll half of it in 1-2weeks.

I'll also keep up to date updating screen shots and codes.

Thanks!!
 

GangnamStyle

HTML Advanced Coder
Jan 8, 2012
121
8
Why do you need a C++ programmer for a CMS....
Using C++ For Application Forms, and Some other features, Just made a Maintaince Page, took 5minutes;

HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Sorry Guys, Its Maintenance Time!</title>
<link href="blue.css" type="text/css" rel="stylesheet" />
.numbers {
    border-style: ridge;    /* options are none, dotted, dashed, solid, double, groove, ridge, inset, outset */
    border-width: 2px;
    border-color: #666666;  /* change the border color using the hexadecimal color codes for HTML */
    background: #222222;    /* change the background color using the hexadecimal color codes for HTML */
    padding: 2px 0px;
    width: 55px;
    text-align: center;
    font-family: Arial;
    font-size: 28px;
    font-weight: bold;    /* options are normal, bold, bolder, lighter */
    font-style: normal;  /* options are normal or italic */
    color: #FFFFFF;      /* change color using the hexadecimal color codes for HTML */
}
.title {    /* the styles below will affect the title under the numbers, i.e., “Days”, “Hours”, etc. */
    border: none;   
    padding: 0px;
    width: 55px;
    text-align: center;
    font-family: Arial;
    font-size: 10px;
    font-weight: normal;  /* options are normal, bold, bolder, lighter */
    color: #DDDDDD;      /* change color using the hexadecimal color codes for HTML */
    background: transparent;    /* change the background color using the hexadecimal color codes for HTML */
}
#table {
    width: 400px;
    border: groove;    /* options are none, dotted, dashed, solid, double, groove, ridge, inset, outset */
    margin: 0px auto;
    position: relative;    /* leave as "relative" to keep timer centered on your page, or change to "absolute" then change the values of the "top" and "left" properties to position the timer */
    top: 0px;        /* change to position the timer */
    left: 0px;        /* change to position the timer; delete this property and it's value to keep timer centered on page */
}
</style>
 
<script type="text/javascript">
 
 
var current="We Should Be Up !!!!";  //-->enter what you want the script to display when the target date and time are reached, limit to 20 characters
var year=2012;    //-->Enter the count down target date YEAR
var month=12;      //-->Enter the count down target date MONTH
var day=13;      //-->Enter the count down target date DAY
var hour=00;      //-->Enter the count down target date HOUR (24 hour clock)
var minute=00;    //-->Enter the count down target date MINUTE
var tz=-0;        //-->Offset for your timezone in hours from UTC (see http://wwp.greenwichmeantime.com/index.htm to find the timezone offset for your location)
 
//    DO NOT CHANGE THE CODE BELOW!
var montharray=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");
 
function countdown(yr,m,d,hr,min){
    theyear=yr;themonth=m;theday=d;thehour=hr;theminute=min;
    var today=new Date();
    var todayy=today.getYear();
    if (todayy < 1000) {todayy+=1900;}
    var todaym=today.getMonth();
    var todayd=today.getDate();
    var todayh=today.getHours();
    var todaymin=today.getMinutes();
    var todaysec=today.getSeconds();
    var todaystring1=montharray[todaym]+" "+todayd+", "+todayy+" "+todayh+":"+todaymin+":"+todaysec;
    var todaystring=Date.parse(todaystring1)+(tz*1000*60*60);
    var futurestring1=(montharray[m-1]+" "+d+", "+yr+" "+hr+":"+min);
    var futurestring=Date.parse(futurestring1)-(today.getTimezoneOffset()*(1000*60));
    var dd=futurestring-todaystring;
    var dday=Math.floor(dd/(60*60*1000*24)*1);
    var dhour=Math.floor((dd%(60*60*1000*24))/(60*60*1000)*1);
    var dmin=Math.floor(((dd%(60*60*1000*24))%(60*60*1000))/(60*1000)*1);
    var dsec=Math.floor((((dd%(60*60*1000*24))%(60*60*1000))%(60*1000))/1000*1);
    if(dday<=0&&dhour<=0&&dmin<=0&&dsec<=0){
        document.getElementById('count2').innerHTML=current;
        document.getElementById('count2').style.display="block";
        document.getElementById('count2').style.width="390px";
        document.getElementById('dday').style.display="none";
        document.getElementById('dhour').style.display="none";
        document.getElementById('dmin').style.display="none";
        document.getElementById('dsec').style.display="none";
        document.getElementById('days').style.display="none";
        document.getElementById('hours').style.display="none";
        document.getElementById('minutes').style.display="none";
        document.getElementById('seconds').style.display="none";
        document.getElementById('spacer1').style.display="none";
        document.getElementById('spacer2').style.display="none";
        return;
    }
    else {
        document.getElementById('count2').style.display="none";
        document.getElementById('dday').innerHTML=dday;
        document.getElementById('dhour').innerHTML=dhour;
        document.getElementById('dmin').innerHTML=dmin;
        document.getElementById('dsec').innerHTML=dsec;
        setTimeout("countdown(theyear,themonth,theday,thehour,theminute)",1000);
    }
}
</script>
 
</head>
 
<body bgcolor="#CCCCCC">
<table id="table" border="0">
    <tr>
        <td align="center" colspan="6"><div class="numbers" id="count2" style="padding: 10px; "></div></td>
    </tr>
    <tr id="spacer1">
        <td align="center" ><div class="title" ></div></td>
        <td align="center" ><div class="numbers" id="dday"></div></td>
        <td align="center" ><div class="numbers" id="dhour"></div></td>
        <td align="center" ><div class="numbers" id="dmin"></div></td>
        <td align="center" ><div class="numbers" id="dsec"></div></td>
        <td align="center" ><div class="title" ></div></td>
    </tr>
    <tr id="spacer2">
        <td align="center" ><div class="title" ></div></td>
        <td align="center" ><div class="title" id="days">Days</div></td>
        <td align="center" ><div class="title" id="hours">Hours</div></td>
        <td align="center" ><div class="title" id="minutes">Minutes</div></td>
        <td align="center" ><div class="title" id="seconds">Seconds</div></td>
        <td align="center" ><div class="title" ></div></td>
    </tr>
</table>
 
</body>
 
<p>
<center> <font size="+5" color="#333333"> We're Currently Down for maintenance! </font></center>
<center> If all goes well we will be up in the time above! </center>
<br />
<br />
<h3><center><strong>What's coming new?!!</strong></center></h3>
<br />
<p>Union Will be bringing in a new topic, what will include:
<br />
<li>
<a href="/socal">Social Networking</a>
<a href="/forum">Fourm</a>
<a href="/billing">Billing</a>
<a href="/shop">Shop</a>
<a href="/code">Coding Development</a>
<a href="/habbo">Habbo Retro</a>
</li>
<p>And a <b>LOT</b>more coming to Union,<br /> Please wait for the meanwhile
</p>
<center>
<body onload="countdown(year,month,day,hour,minute)"/>
</center>
<center> <img src="http://adamholidays.com/under-maintenance.gif"/>
</html>
 

Weasel

👄 I'd intercept me
Nov 25, 2011
4,132
2,456
Using C++ For Application Forms, and Some other features, Just made a Maintaince Page, took 5minutes;

HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Sorry Guys, Its Maintenance Time!</title>
<link href="blue.css" type="text/css" rel="stylesheet" />
.numbers {
    border-style: ridge;    /* options are none, dotted, dashed, solid, double, groove, ridge, inset, outset */
    border-width: 2px;
    border-color: #666666;  /* change the border color using the hexadecimal color codes for HTML */
    background: #222222;    /* change the background color using the hexadecimal color codes for HTML */
    padding: 2px 0px;
    width: 55px;
    text-align: center;
    font-family: Arial;
    font-size: 28px;
    font-weight: bold;    /* options are normal, bold, bolder, lighter */
    font-style: normal;  /* options are normal or italic */
    color: #FFFFFF;      /* change color using the hexadecimal color codes for HTML */
}
.title {    /* the styles below will affect the title under the numbers, i.e., “Days”, “Hours”, etc. */
    border: none; 
    padding: 0px;
    width: 55px;
    text-align: center;
    font-family: Arial;
    font-size: 10px;
    font-weight: normal;  /* options are normal, bold, bolder, lighter */
    color: #DDDDDD;      /* change color using the hexadecimal color codes for HTML */
    background: transparent;    /* change the background color using the hexadecimal color codes for HTML */
}
#table {
    width: 400px;
    border: groove;    /* options are none, dotted, dashed, solid, double, groove, ridge, inset, outset */
    margin: 0px auto;
    position: relative;    /* leave as "relative" to keep timer centered on your page, or change to "absolute" then change the values of the "top" and "left" properties to position the timer */
    top: 0px;        /* change to position the timer */
    left: 0px;        /* change to position the timer; delete this property and it's value to keep timer centered on page */
}
</style>
 
<script type="text/javascript">
 
 
var current="We Should Be Up !!!!";  //-->enter what you want the script to display when the target date and time are reached, limit to 20 characters
var year=2012;    //-->Enter the count down target date YEAR
var month=12;      //-->Enter the count down target date MONTH
var day=13;      //-->Enter the count down target date DAY
var hour=00;      //-->Enter the count down target date HOUR (24 hour clock)
var minute=00;    //-->Enter the count down target date MINUTE
var tz=-0;        //-->Offset for your timezone in hours from UTC (see http://wwp.greenwichmeantime.com/index.htm to find the timezone offset for your location)
 
//    DO NOT CHANGE THE CODE BELOW!
var montharray=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");
 
function countdown(yr,m,d,hr,min){
    theyear=yr;themonth=m;theday=d;thehour=hr;theminute=min;
    var today=new Date();
    var todayy=today.getYear();
    if (todayy < 1000) {todayy+=1900;}
    var todaym=today.getMonth();
    var todayd=today.getDate();
    var todayh=today.getHours();
    var todaymin=today.getMinutes();
    var todaysec=today.getSeconds();
    var todaystring1=montharray[todaym]+" "+todayd+", "+todayy+" "+todayh+":"+todaymin+":"+todaysec;
    var todaystring=Date.parse(todaystring1)+(tz*1000*60*60);
    var futurestring1=(montharray[m-1]+" "+d+", "+yr+" "+hr+":"+min);
    var futurestring=Date.parse(futurestring1)-(today.getTimezoneOffset()*(1000*60));
    var dd=futurestring-todaystring;
    var dday=Math.floor(dd/(60*60*1000*24)*1);
    var dhour=Math.floor((dd%(60*60*1000*24))/(60*60*1000)*1);
    var dmin=Math.floor(((dd%(60*60*1000*24))%(60*60*1000))/(60*1000)*1);
    var dsec=Math.floor((((dd%(60*60*1000*24))%(60*60*1000))%(60*1000))/1000*1);
    if(dday<=0&&dhour<=0&&dmin<=0&&dsec<=0){
        document.getElementById('count2').innerHTML=current;
        document.getElementById('count2').style.display="block";
        document.getElementById('count2').style.width="390px";
        document.getElementById('dday').style.display="none";
        document.getElementById('dhour').style.display="none";
        document.getElementById('dmin').style.display="none";
        document.getElementById('dsec').style.display="none";
        document.getElementById('days').style.display="none";
        document.getElementById('hours').style.display="none";
        document.getElementById('minutes').style.display="none";
        document.getElementById('seconds').style.display="none";
        document.getElementById('spacer1').style.display="none";
        document.getElementById('spacer2').style.display="none";
        return;
    }
    else {
        document.getElementById('count2').style.display="none";
        document.getElementById('dday').innerHTML=dday;
        document.getElementById('dhour').innerHTML=dhour;
        document.getElementById('dmin').innerHTML=dmin;
        document.getElementById('dsec').innerHTML=dsec;
        setTimeout("countdown(theyear,themonth,theday,thehour,theminute)",1000);
    }
}
</script>
 
</head>
 
<body bgcolor="#CCCCCC">
<table id="table" border="0">
    <tr>
        <td align="center" colspan="6"><div class="numbers" id="count2" style="padding: 10px; "></div></td>
    </tr>
    <tr id="spacer1">
        <td align="center" ><div class="title" ></div></td>
        <td align="center" ><div class="numbers" id="dday"></div></td>
        <td align="center" ><div class="numbers" id="dhour"></div></td>
        <td align="center" ><div class="numbers" id="dmin"></div></td>
        <td align="center" ><div class="numbers" id="dsec"></div></td>
        <td align="center" ><div class="title" ></div></td>
    </tr>
    <tr id="spacer2">
        <td align="center" ><div class="title" ></div></td>
        <td align="center" ><div class="title" id="days">Days</div></td>
        <td align="center" ><div class="title" id="hours">Hours</div></td>
        <td align="center" ><div class="title" id="minutes">Minutes</div></td>
        <td align="center" ><div class="title" id="seconds">Seconds</div></td>
        <td align="center" ><div class="title" ></div></td>
    </tr>
</table>
 
</body>
 
<p>
<center> <font size="+5" color="#333333"> We're Currently Down for maintenance! </font></center>
<center> If all goes well we will be up in the time above! </center>
<br />
<br />
<h3><center><strong>What's coming new?!!</strong></center></h3>
<br />
<p>Union Will be bringing in a new topic, what will include:
<br />
<li>
<a href="/socal">Social Networking</a>
<a href="/forum">Fourm</a>
<a href="/billing">Billing</a>
<a href="/shop">Shop</a>
<a href="/code">Coding Development</a>
<a href="/habbo">Habbo Retro</a>
</li>
<p>And a <b>LOT</b>more coming to Union,<br /> Please wait for the meanwhile
</p>
<center>
<body onload="countdown(year,month,day,hour,minute)"/>
</center>
<center> <img src="http://adamholidays.com/under-maintenance.gif"/>
</html>

Why do I not believe you made this within 5 minits, or even made it yourself. Besides, what happened to your awesome hosting idea? Seems to me you aren't continuing anything, and I don't think you well be doing anything yourself, and only become mad at your team for making mistakes.

I wonder how this will work out.
 

GangnamStyle

HTML Advanced Coder
Jan 8, 2012
121
8
Why do I not believe you made this within 5 minits, or even made it yourself. Besides, what happened to your awesome hosting idea? Seems to me you aren't continuing anything, and I don't think you well be doing anything yourself, and only become mad at your team for making mistakes.

I wonder how this will work out.
I did code this myself, it took around 5-20Minutes,
My Hosting has nothing to do with this project, Keep on task with the post, not other things, If you'd like to ask, Inbox me :p
 

Weasel

👄 I'd intercept me
Nov 25, 2011
4,132
2,456
Using C++ For Application Forms, and Some other features, Just made a Maintaince Page, took 5minutes;

5-20 minits is something really diffrent. Sounds like you already are saying bullshit. And btw, if you want to post progress of this project you need a development thread, NOT a team recruitment thread.
 

GangnamStyle

HTML Advanced Coder
Jan 8, 2012
121
8
I posted in this thread as Im recuiting and Having a Development on this.. So I put it here, If a Moderator or someone changes it, that's fine for me..

Plus, I coded that Yesterday when I was talking to my friends, They gave me the idea, I just added some codes towards this project.
I just put some extra bits so thats why i said 5Minutes.
My mistake :p
 

Weasel

👄 I'd intercept me
Nov 25, 2011
4,132
2,456
I posted in this thread as Im recuiting and Having a Development on this.. So I put it here, If a Moderator or someone changes it, that's fine for me..

Plus, I coded that Yesterday when I was talking to my friends, They gave me the idea, I just added some codes towards this project.
I just put some extra bits so thats why i said 5Minutes.
My mistake :p

You keep changing your story... seems like to only extra bits you are adding is bullshit.
 

GangnamStyle

HTML Advanced Coder
Jan 8, 2012
121
8
You keep changing your story... seems like to only extra bits you are adding is bullshit.
Want the real story? We'll HERE:
Yesterday Afternoon, I came of a idea, my friends agreed.
They gave me a idea so i said I'll code it.
So i coded it yesterday. And today I made a thread on devbest.
I added some extra codes:
HTML:
<nav>
<li><a href="#">#</a></li>
<li><a href="#">#</a></li>
<li><a href="#">#</a></li>
</nav>
 
SCRIPT CODE (CLOCK):
 
<script type="text/javascript">
 
 
var current="We Should Be Up !!!!";  //-->enter what you want the script to display when the target date and time are reached, limit to 20 characters
var year=2012;    //-->Enter the count down target date YEAR
var month=12;      //-->Enter the count down target date MONTH
var day=13;      //-->Enter the count down target date DAY
var hour=00;      //-->Enter the count down target date HOUR (24 hour clock)
var minute=00;    //-->Enter the count down target date MINUTE
var tz=-0;        //-->Offset for your timezone in hours from UTC (see http://wwp.greenwichmeantime.com/index.htm to find the timezone offset for your location)
 
//    DO NOT CHANGE THE CODE BELOW!
var montharray=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");
 
function countdown(yr,m,d,hr,min){
    theyear=yr;themonth=m;theday=d;thehour=hr;theminute=min;
    var today=new Date();
    var todayy=today.getYear();
    if (todayy < 1000) {todayy+=1900;}
    var todaym=today.getMonth();
    var todayd=today.getDate();
    var todayh=today.getHours();
    var todaymin=today.getMinutes();
    var todaysec=today.getSeconds();
    var todaystring1=montharray[todaym]+" "+todayd+", "+todayy+" "+todayh+":"+todaymin+":"+todaysec;
    var todaystring=Date.parse(todaystring1)+(tz*1000*60*60);
    var futurestring1=(montharray[m-1]+" "+d+", "+yr+" "+hr+":"+min);
    var futurestring=Date.parse(futurestring1)-(today.getTimezoneOffset()*(1000*60));
    var dd=futurestring-todaystring;
    var dday=Math.floor(dd/(60*60*1000*24)*1);
    var dhour=Math.floor((dd%(60*60*1000*24))/(60*60*1000)*1);
    var dmin=Math.floor(((dd%(60*60*1000*24))%(60*60*1000))/(60*1000)*1);
    var dsec=Math.floor((((dd%(60*60*1000*24))%(60*60*1000))%(60*1000))/1000*1);
    if(dday<=0&&dhour<=0&&dmin<=0&&dsec<=0){
        document.getElementById('count2').innerHTML=current;
        document.getElementById('count2').style.display="block";
        document.getElementById('count2').style.width="390px";
        document.getElementById('dday').style.display="none";
        document.getElementById('dhour').style.display="none";
        document.getElementById('dmin').style.display="none";
        document.getElementById('dsec').style.display="none";
        document.getElementById('days').style.display="none";
        document.getElementById('hours').style.display="none";
        document.getElementById('minutes').style.display="none";
        document.getElementById('seconds').style.display="none";
        document.getElementById('spacer1').style.display="none";
        document.getElementById('spacer2').style.display="none";
        return;
    }
    else {
        document.getElementById('count2').style.display="none";
        document.getElementById('dday').innerHTML=dday;
        document.getElementById('dhour').innerHTML=dhour;
        document.getElementById('dmin').innerHTML=dmin;
        document.getElementById('dsec').innerHTML=dsec;
        setTimeout("countdown(theyear,themonth,theday,thehour,theminute)",1000);
    }
}
</script>


I added these codes aswell literally when i was posting and after...
 

zMagenta

Posting Freak
Jul 15, 2011
1,414
682
To be honest, using the image;

In my eyes, this looks like a template. We can see proof that this is all yours and you coded it.

I'll like to see how this one turns out..
 

GangnamStyle

HTML Advanced Coder
Jan 8, 2012
121
8
To be honest, using the image;

In my eyes, this looks like a template. We can see proof that this is all yours and you coded it.

I'll like to see how this one turns out..
What I coded thier was a quick Maintiance page while i code a Index.html Page
 

Users who are viewing this thread

Top