Page 1 of 1
[SHARE]Cloud12 website (html + joomla + drupal + wordpress)
Posted: Wed Feb 16, 2011 5:57 pm
by gmakhs
another website for
html / drupas/ joomla/ wordpress
you can download it here
Download
Re: [SHARE]Cloud12 website (html + joomla + drupal + wordpre
Posted: Tue Feb 22, 2011 12:07 am
by Bebop
thanks for sharing, does this comes with any status script?
Re: [SHARE]Cloud12 website (html + joomla + drupal + wordpre
Posted: Mon Mar 21, 2011 8:41 pm
by gmakhs
nop im loocking for goood scriptss but i can't find good working ones :/ and i have no time to create

Re: [SHARE]Cloud12 website (html + joomla + drupal + wordpre
Posted: Mon Mar 21, 2011 9:35 pm
by papadkostas
Bebop wrote:thanks for sharing, does this comes with any status script?
check what i made here:
http://dns-kostas.no-ip.org/
but its not complete..when will be full working i will share it here.
Re: [SHARE]Cloud12 website (html + joomla + drupal + wordpre
Posted: Tue Mar 22, 2011 1:42 am
by gmakhs
site down't load but if you wanna you can send me your scripts and i will share them on my website too with credits on you ofcourse
Re: [SHARE]Cloud12 website (html + joomla + drupal + wordpre
Posted: Tue Mar 22, 2011 7:42 am
by papadkostas
gmakhs wrote:site down't load but if you wanna you can send me your scripts and i will share them on my website too with credits on you ofcourse
yeah..sorry, my website running on my laptop and probably was down -.-
try again whole day will be on..
when i will finish the rest functions i will share.
Re: [SHARE]Cloud12 website (html + joomla + drupal + wordpre
Posted: Tue Mar 22, 2011 12:18 pm
by gmakhs
nice scripts im waiting for your share

i will share some joomla 1.6 templates soon

Re: [SHARE]Cloud12 website (html + joomla + drupal + wordpre
Posted: Sat Aug 06, 2011 7:04 am
by papadkostas
guys..any ideas why this ->
http://dns-kostas.no-ip.org/
looks ok with ffox and not with IE ?
:lol
MS should delete that stupid web browser

Re: [SHARE]Cloud12 website (html + joomla + drupal + wordpre
Posted: Sun Aug 14, 2011 10:09 am
by Starter
Nice templates, keep up the good work!

Re: [SHARE]Cloud12 website (html + joomla + drupal + wordpre
Posted: Sat Aug 27, 2011 11:24 pm
by FFs
Nice templates! i like the one who is on the first post

Re: [SHARE]Cloud12 website (html + joomla + drupal + wordpre
Posted: Mon Aug 29, 2011 10:14 am
by papadkostas
I just made status script for ya guys.
It easy to set up.
1st Extract the folder to ur website dir.
2nd Copy the whole content of status.php and paste it in your page.
3rd and last one..
here is the function we call to check server status
CheckStatus("127.0.0.1","2106","7777","root","","l2jgs",false);
in first collumn set ur server ip(if server running localy just leave it as it is)
in the second collumn its server login port(default its 2106)
in the third collumn its game server login port(default its 7777)
in the fourth collumn its your SQL user name(insert ur SQL user name default its root)
in the fifth collumn its your SQL password(if your SQL database doesnt have any password leave it as it is)
in sixth collumn its your GameServer Database name(insert ur GS db name ,default its l2jgs)
in seventh collumn u select if GameServer is online to show online players(set "true" for show or "false" to not show)
Thats all.
If you have any problem(first think twice then ask

) /request post it here.

Re: [SHARE]Cloud12 website (html + joomla + drupal + wordpre
Posted: Tue Mar 12, 2013 9:14 am
by Akasei
papadkostas wrote:I just made status script for ya guys.
It easy to set up.
1st Extract the folder to ur website dir.
2nd Copy the whole content of status.php and paste it in your page.
3rd and last one..
here is the function we call to check server status
CheckStatus("127.0.0.1","2106","7777","root","","l2jgs",false);
in first collumn set ur server ip(if server running localy just leave it as it is)
in the second collumn its server login port(default its 2106)
in the third collumn its game server login port(default its 7777)
in the fourth collumn its your SQL user name(insert ur SQL user name default its root)
in the fifth collumn its your SQL password(if your SQL database doesnt have any password leave it as it is)
in sixth collumn its your GameServer Database name(insert ur GS db name ,default its l2jgs)
in seventh collumn u select if GameServer is online to show online players(set "true" for show or "false" to not show)
Thats all.
If you have any problem(first think twice then ask

) /request post it here.

Yes, i know. This is very old post, but if there is any chance, please upload this script again, somewhere. I can't extract this one.
Re: [SHARE]Cloud12 website (html + joomla + drupal + wordpre
Posted: Wed Mar 13, 2013 9:31 pm
by papadkostas
oh yea file corrupt
i dont have this file anymore forgot what was inside status.php(i think it was just an example)

.
well basically you only need the function file which isnt corrupted, anyway
Code: Select all
<?phpfunction CheckStatus($ServerAdress, $ServerPortLS, $ServerPortGS, $MySQLUserName, $MySQLPassword, $L2JServerGsDB, $ShowOnline){ //LoginServer Status Check $CheckLS = @fsockopen ("$ServerAdress",$ServerPortLS, $errno, $errstr, 1); if ($CheckLS) { print "LoginServer : <font color=#00FF00>Online</font><br>"; } else { print "LoginServer : <font color=#FF0000>Offline</font><br>"; } //GameServer Status Check $CheckGS = @fsockopen ($ServerAdress,$ServerPortGS, $errno, $errstr, 1); if ($CheckGS) { print "GameServer : <font color=#00FF00>Online</font><br>"; if($ShowOnline == "true") { CheckOnline($ServerAdress, $MySQLUserName, $MySQLPassword,$L2JServerGsDB); } } else { print "GameServer : <font color=#FF0000>Offline</font><br>"; }} function CheckOnline($ServerAdress, $MySQLUserName, $MySQLPassword, $L2JServerGsDB){ $connect = @mysql_connect($ServerAdress, $MySQLUserName, $MySQLPassword, $L2JServerGsDB); @mysql_select_db($L2JServerGsDB, $connect); $query = ("SELECT * FROM characters WHERE accesslevel=127 AND online=1"); $result = mysql_query($query) or die(mysql_error()); $numrows = mysql_numrows($result); echo "Online Players : $numrows";}?>
then use this in your webpage file(dont forget to change values with your values)
where u want status to be displayed at. things are simple.
Code: Select all
<?phpCheckStatus("127.0.0.1","2106","7777","root","","l2jgs",true);?>
u got any error or what?