| Post here your Solarose frontpage (competition) | |
|
|
Author | Message |
---|
Admin Admin
Number of posts : 651 Age : 43 Location : Malaysia Registration date : 2008-04-23
| Subject: Post here your Solarose frontpage (competition) Sat Aug 30, 2008 9:49 am | |
| Solarose frontpage (1 page).
Competition will be divided into 2 catagories :
1. Design (Reward Fashion Set). The most beautiful design but efficient (in term of bandwidth).
2. Function (Typhoon Set). Function must has working Server Status Checker (online or not), how many player online, and which GM currently online. All in one page. Additional info, creative design, link and text are bonus.
Dateline : 30 September 2008
Last edited by Admin on Wed May 06, 2009 8:19 pm; edited 1 time in total | |
|
| |
Gravit Wolverine
Number of posts : 804 Location : Lithuania Registration date : 2008-06-15
Character sheet Testing:
| Subject: Re: Post here your Solarose frontpage (competition) Sat Aug 30, 2008 4:19 pm | |
| Sir, could you give any example? Somehow.. I dont understand | |
|
| |
Darkness Crawfy
Number of posts : 304 Age : 30 Location : Darkness Registration date : 2008-05-16
Character sheet Testing: Darkness - D2Cleric
| Subject: Re: Post here your Solarose frontpage (competition) Sun Aug 31, 2008 4:41 am | |
| Yes sir, even Though im Dumb... This is my Limit... | |
|
| |
Pseudien Wolverine
Number of posts : 820 Age : 32 Location : A pineapple under the seaa... It gets soggy and eaten by urchiiins... La-da-daaaa! Registration date : 2008-06-19
Character sheet Testing: V2: Arrr, V3: Pluh
| Subject: Re: Post here your Solarose frontpage (competition) Sun Aug 31, 2008 4:50 am | |
| I think he means 1. http://solarose.niceboard.org/portal.htm Design for that. And 2. http://solarose.myftp.org/solarose/ See the server status? He wants that. Except with the number of GMs online included. That's what I think, anyways =/ I can't get the osrose to work because it has deadlinks -- so I'm out of this competition. We need smarty people who have at least ran a server to do the 2nd part. | |
|
| |
Gravit Wolverine
Number of posts : 804 Location : Lithuania Registration date : 2008-06-15
Character sheet Testing:
| Subject: Re: Post here your Solarose frontpage (competition) Sun Aug 31, 2008 4:56 pm | |
| - Pseudien wrote:
- I think he means
1. http://solarose.niceboard.org/portal.htm Design for that. And 2. http://solarose.myftp.org/solarose/ See the server status? He wants that. Except with the number of GMs online included. That's what I think, anyways =/ I can't get the osrose to work because it has deadlinks -- so I'm out of this competition. We need smarty people who have at least ran a server to do the 2nd part. i Still dont understand.. Admin, could you explain for us? | |
|
| |
Muazzy GM
Number of posts : 412 Age : 32 Location : Muazzy's World Registration date : 2008-05-31
Character sheet Testing: [GM]Muazzy
| Subject: Re: Post here your Solarose frontpage (competition) Sun Aug 31, 2008 10:02 pm | |
| I think for number 1 he means the website http://solarose.myftp.org | |
|
| |
Gravit Wolverine
Number of posts : 804 Location : Lithuania Registration date : 2008-06-15
Character sheet Testing:
| Subject: Re: Post here your Solarose frontpage (competition) Sun Aug 31, 2008 11:03 pm | |
| http://img29.picoodle.com/data/img29/3/8/31/f_SolaroseDesm_90dfd92.jpg http://img33.picoodle.com/data/img33/3/8/31/f_SolaroseDesm_63fb775.jpg
Is this what you mean sir? I cant make a good one, couse i dont understand what u need.. lol
or u mean this :
Deleted.. Big Image.. Lol
Big images.. lol
Last edited by Prefix on Mon Sep 08, 2008 3:54 am; edited 3 times in total (Reason for editing : Awts) | |
|
| |
AaBooT Jelly Bean
Number of posts : 5 Registration date : 2008-09-08
| Subject: Re: Post here your Solarose frontpage (competition) Mon Sep 08, 2008 3:53 am | |
| However..
Could that 'Template' use some things?
Like Screenshots, How to connect, Server Info ( Rates, Staff, etc. ) | |
|
| |
Gravit Wolverine
Number of posts : 804 Location : Lithuania Registration date : 2008-06-15
Character sheet Testing:
| Subject: Re: Post here your Solarose frontpage (competition) Mon Sep 08, 2008 11:07 pm | |
| http://img28.picoodle.com/data/img28/3/9/8/f_SolaroseDesm_f5e8510.jpg
Hows This One?
I will delete Design by Prefix later.. Some of here can use it (bandit) | |
|
| |
AaBooT Jelly Bean
Number of posts : 5 Registration date : 2008-09-08
| Subject: Re: Post here your Solarose frontpage (competition) Thu Sep 11, 2008 4:40 am | |
| mhm.. Making New One Design At the moment..
The design will be from brushes ^^ | |
|
| |
Gravit Wolverine
Number of posts : 804 Location : Lithuania Registration date : 2008-06-15
Character sheet Testing:
| Subject: Re: Post here your Solarose frontpage (competition) Thu Sep 11, 2008 11:01 pm | |
| Undone Version of my Design : http://img28.picoodle.com/data/img28/3/9/11/f_123456789m_54c9f0d.jpg
Feel free to comment. I need to know mistakes | |
|
| |
AaBooT Jelly Bean
Number of posts : 5 Registration date : 2008-09-08
| Subject: Re: Post here your Solarose frontpage (competition) Thu Sep 11, 2008 11:14 pm | |
| @ Gravit :
Heres the code for the Who is online function. Try it.
- <?php
- /* Who is online script by Rifke for OsRose Comunity
- */
- echo '<h1> Who is online? </h1>';
- $sql = "SELECT lastchar FROM accounts WHERE online=1 AND accesslevel < 300";
- $query = mysql_query($sql);
- if ( $query === false ) {
- echo 'Could not check who is online due a database issue';
- // If you see this line uncomment this line below
- //echo '<br />MySQL error: '.mysql_error().' in query: '.nl2br($sql).'<br />';
- } elseif ( mysql_num_rows($query) == 0 ) {
- // Checks if there are players online. Saves a while loop ^^
- echo 'There are no players online';
- } else {
- // You could add your own layout to it
- echo '<ul>';
- while ( $data = mysql_fetch_assoc($query) ) {
- echo '<li>'.$data['lastchar'].'</li>';
- }
- echo '</ul>';
- }
- /* This is very simple it would output something like:
- * Rescudo
- * Miltown
- * Rifke
- * Lmame
- * Geobot
- */
- ?>
i think with numbers or without it.. lol.. I have no experience in CMS | |
|
| |
Gravit Wolverine
Number of posts : 804 Location : Lithuania Registration date : 2008-06-15
Character sheet Testing:
| Subject: Re: Post here your Solarose frontpage (competition) Thu Sep 11, 2008 11:49 pm | |
| Done Version :
http://img29.picoodle.com/data/img29/3/9/11/f_SolaDesignm_8861097.jpg
Not so good x_x | |
|
| |
AaBooT Jelly Bean
Number of posts : 5 Registration date : 2008-09-08
| Subject: Re: Post here your Solarose frontpage (competition) Fri Sep 12, 2008 3:12 am | |
| @ Gravit :
My next entry ^^ Its better
http://img33.picoodle.com/data/img33/3/9/11/f_123copym_b8ab7d9.jpg | |
|
| |
Pseudien Wolverine
Number of posts : 820 Age : 32 Location : A pineapple under the seaa... It gets soggy and eaten by urchiiins... La-da-daaaa! Registration date : 2008-06-19
Character sheet Testing: V2: Arrr, V3: Pluh
| Subject: Re: Post here your Solarose frontpage (competition) Fri Sep 12, 2008 7:06 am | |
| Working 'How many GMs online': Function: - Quote :
- function gmon() {
$result = mysql_query("SELECT online FROM accounts WHERE online = '1' AND accesslevel = 300"); $rows = mysql_num_rows($result); echo $rows ; }
and to add the value of GMs online just type in - Quote :
- <?php gmon(); ?>
wherever you want the value to show up. Working 'Who is online'(in alphabetical order): Code: - Quote :
<?php $result = mysql_query("SELECT lastchar FROM accounts WHERE online = '1' ORDER BY lastchar ASC") or die(mysql_error()); echo "<table border='0' class='b01'>"; echo "<tr> <th>Character Name</th> </tr>"; while($row = mysql_fetch_array( $result )) { echo "<tr><td bgcolor=''>"; echo $row['lastchar']; echo "</td><td bgcolor=''>"; echo "</td></tr>"; } echo "</table>"; ?>
Working Which GM is online: Looks like the Who is online. Code: - Quote :
<?php $result = mysql_query("SELECT lastchar FROM accounts WHERE online = '1' AND accesslevel = '300' ORDER BY lastchar ASC") or die(mysql_error()); echo "<table border='0' class='b01'>"; echo "<tr> <th>Character Name</th> </tr>"; while($row = mysql_fetch_array( $result )) { echo "<tr><td bgcolor=''>"; echo $row['lastchar']; echo "</td><td bgcolor=''>"; echo "</td></tr>"; } echo "</table>"; ?>
I can change it around to include GGs, too, if you wish.
Last edited by Pseudien on Sat Sep 13, 2008 11:30 am; edited 3 times in total (Reason for editing : Mouse went kapook and messed the post up... >_<.. Twice.) | |
|
| |
Gravit Wolverine
Number of posts : 804 Location : Lithuania Registration date : 2008-06-15
Character sheet Testing:
| Subject: Re: Post here your Solarose frontpage (competition) Sat Sep 13, 2008 3:44 am | |
| - Uhhuhu wrote:
Config.php for all
$dbhost = "localhost"; // Change this to your database server $dbname = "roseon"; // Change this to your database name $dbuser = "roseon"; // Change this to your database username $dbpswd = "roseon"; // Change this to your database password ?>
Online Players
include("config.php"); // Connect to the database $db = mysql_connect($dbhost, $dbuser, $dbpswd) or die("Could not connect to server database"); mysql_select_db($dbname, $db); // Select all the banned users and display them $result = mysql_query("SELECT * FROM accounts WHERE online = '1'", $db) or die(mysql_error());
while($row = mysql_fetch_array( $result )) { echo "".$row['lastchar']." "; } mysql_close($db); ?>
Try that | |
|
| |
AaBooT Jelly Bean
Number of posts : 5 Registration date : 2008-09-08
| Subject: Re: Post here your Solarose frontpage (competition) Sat Sep 13, 2008 4:17 am | |
| Also Try This : if(stristr($_SERVER['PHP_SELF'], "ponline.php")) die('Do not open without inlcude!'); ?> Online Stats$result = mysql_query("SELECT username, online, accesslevel FROM accounts WHERE online = 1 ORDER BY username ASC") or die(mysql_error()); if(mysql_num_rows($result)) { ?> Online: ( GM 1) { echo "s"; } ?>) while($row = mysql_fetch_array($result)) { ?> } ?> Name |
if($row['accesslevel'] > 100) { echo "".htmlentities($row['username'],ENT_QUOTES).""; } else { echo htmlentities($row['account_name'],ENT_QUOTES); } ?> |
} else { echo "No Players Online!"; } ?> CMS Is that OLD Solarose CMS? xD I think, that online stats are in that thingy ^^ | |
|
| |
Gravit Wolverine
Number of posts : 804 Location : Lithuania Registration date : 2008-06-15
Character sheet Testing:
| Subject: Re: Post here your Solarose frontpage (competition) Sat Sep 13, 2008 5:33 pm | |
| Could Someone delete all my Posts, related with Who is online function? x_x
Dont wanna spam it.
Better i will leave Who is Online funtion to arrr.
Next Design :
https://2img.net/r/ihimizer/img55/6446/88044941lf8.jpg
| |
|
| |
Sponsored content
| Subject: Re: Post here your Solarose frontpage (competition) | |
| |
|
| |
| Post here your Solarose frontpage (competition) | |
|