HTML - Server List
I operate a game Server that i wish for a list of "Currently Online Players" list to be displayed on my website for the server.
I have a mod that allows anyone to check the online players by entering the address "http://mine-craft.kicks-ass.net:6561/serverinfos/players-online" When entering that address it displays a blank page with a list of players online in-game. Would there be a possible way to have my website fetch this information from that URL and list it on the website? Similar TutorialsI have a big list and I want to show on my webpage 6lines from that list randomly (when webpage is refreshed another 6 lines appear). can anyone help me with he code, how should the list look like so it works...or where can I find more info on this ? thanks I am making a website with a list inside list for my navigation bar. It looks good on safari(win/mac) and firefox but the list looks horrible in IE7.0(didnt check 6.0) I was wondering if anyone know what it could be HTML Code: Code: <div id="nav"> <img class="menupic" src="images/mainmenu.png" alt="Main Menu"/> <ul class="navli"> <li><a class="point" href="#"><img src="images/menu_findme.png" alt="findMe"/></a></li> <li> <ul class="navlinks"> <li><a href="#goto_facebook" id="facebook">- Facebook</a></li> <li><a href="#goto_myspace" id="myspace">- Myspace</a></li> <li><a href="#goto_youtube" id="youtube">- Youtube</a></li> </ul> </li> </ul> <ul class="navli"> <li><a class="point" href="#"><img src="images/menu_blog.png" alt="blog"/></a></li> <li> <ul class="navlinks"> <li><a href="#blogid2" id="blogid2">- Testing | May 01</a></li> <li><a href="#blogid1" id="blogid1">- Debut Album | Apr 30</a></li> <li><a href="#goto_blogarchive" id="blogarchive">- Archives</a></li> <li class="donthidethis"><ul class="navli donthidethiseither" style="padding:0;"> <li><a class="point" href="#">- Categories</a></li> <li><ul class="navlinks"> <li><a href="#goto_catid2" id="catid2">- Media</a></li><li><a href="#goto_catid1" id="catid1">- News</a></li><li><a href="#goto_catid3" id="catid3">- Off Topic</a></li><li><a href="#goto_catid4" id="catid4">- Tutorials</a></li> </ul></li> </ul></li> </ul></li> </ul> <ul class="navli"><li><a class="point" href="#"><img src="images/menu_eliasmusictv.png" alt="eliasMusic Tv"/></a></li> <li><ul class="navlinks"> <li><a href="#" id="coming">- Coming soon...</a></li> </ul></li> </ul> <ul class="navli"><li><a class="point" href="#"><img src="images/menu_about.png" alt="about"/></a></li> <li><ul class="navlinks"> <li><a href="#goto_biography" id="biography">- biography</a></li> </ul></li> </ul> <ul class="navli"><li><a class="point" href="#"><img src="images/menu_links.png" alt="links"/></a></li> <li><ul class="navlinks"> <li><a href="#" id="links">- Coming soon...</a></li> </ul></li> </ul> <ul class="navli"><li><a class="point" href="#"><img src="images/menu_contact.png" alt="contact"/></a></li> <li><ul class="navlinks"> <li><a href="#goto_contact" id="contactpage">contactForm</a></li> </ul></li> </ul> CSS Code: Code: #nav { float:right; width:195px; padding-left:20px; background:url("images/navback.png"); } #nav ul { list-style: none; margin-left:1px; border: none; } #nav .navli { padding-top:3px; padding-bottom:3px; } #nav .navlinks { padding-left:25px; } #nav .navlinks a,a:link { color:#262626; } #nav .navli img { margin-top:5px; margin-bottom:5px; } #nav .navlinks a:hover { color:#dadada; } #nav img.menupic { margin:20px 10px 5px 95px; } #nav a { font-size:14px; display:block; } #nav a.point { font-size:14px; font-weight:bold; } .navliover { background:url("images/navhover.jpg"); } Any help at all would be appriciated please I can show u the website via Private message if you are interested in helping Thanks in advance Reply With Quote Hello, I ran into this problem today in my Basic XHTML class, and it was enough to stump me and the instructor: if you want to put an unordered list in the middle of a page, but you want the list items to be left-aligned so the bullets are one on top of the other...how do you do it? I started with code something like <div align="center"> <ul type="disc"> <li>Wine</li> <li>Women</li> <li>Song</li> </ul> </div> This centers the list on the page, but it also centers each list item. I tried placing a <div align="left"> around the list items, individually and collectively, but depending on the positioning it either had no effect or it nullified the center attribute completely and gave me a left-aligned list on the left edge of the page. Attempts to change the style of the <li> tag, which I haven't done in months and was never all that good at, failed. I know I can do this in ten seconds by putting the list inside a one-cell table, and with much fiddling I could probably do it with a spacer GIF...but what's the 1.0 Strict way? http://www.betterstuff.spacebison.com/ is the page I am having troubles with. It cannot find the 'ads' and the 'polls' for some reason. Even though, they are clearly there, in an Iframe, I have no idea why it is doing this. I am so fustrated. Hi, first off I just want to say sorry if this doesn't belong in this forum. I'm not sure where it belongs I'm wondering about hosting your images for a site on another server for speed performance. How much speed performace does it create? and does it actually have to be on another physical server, or will another domain or what ever do it? Thanks Greetings All! I have my webpage hosted he http://dmrosemark.webuda.com/index.html I am using this free hosting service to try and work all the bugs out b4 I pay for a host. I found something strange out tho. I found that for some reason after I have uploaded the page to the server "caps" becomes important. In the script to my pages the XXXX.html are all in uppercase but the actual files on the server are named in lower case, this causes the links to be broken. If i change the uppercase to lowercase it is fixed but that is a lot of code to run through! Correct me if I am wrong but I think I read somewhere that caps didn't matter here. Is it the server acting weird or is it just me? THX in advance, D.M. Rosemark This is what I want to do but I'm not sure how it's possible. I have an HTML script that I want to run/show. But I want to host that script somewhere in DropBox or a hotlinked location on a server. So ideally when the script runs it'd run a script to run the HTML script file in DropBox. This is to be able to deactivate the script if I need to without having to go into the initial script's source. There will be alot of initial scripts with matching external scripts. So logically it'd feel like this... source code: run script: server.com/script.html then it'd run it. by displaying what the HTML says to. Does this make sense? Any help would greatly be appreciated. I'm sure this is an easy code to write. If HTML can't do this, what can? I need an HTML script I can embed. Thanks!! XTC site: www.lukewhitlow.com/waterbuffalo right now this is an early rough draft of a site and the formatting is way off when I view it in IE. Is there any way to fix this? I don't use IE and usually don't even bother troubleshooting for it, but I've got the latest version installed and it loads other pages fine. I use Dreamweaver for all of my coding, and when I view the page before I upload it (while it's local) everything looks fine. After I FTP (filezilla) the site to my server (bluehost) and view it, the text goes awry on IE but still works fine on other browsers. I'm trying to stick with divs instead of a table based design here, so I'm guessing there's an issue in my css div styles... or maybe something on my server? since it only affect the site once it's on the server. Thanks in advance for your help! I need to be able to link from a server on port 9091 to port 80. I cannot just do
HTML Code: <a href="http://mysite.com:80/link">Link</a> because mysite has 3 urls and you have to stay on the same one. Another problem: No PHP, port 80 has PHP or any server side, that's why I need to link to it. So as this needs to be 100% client side, JavaScript? Plain HTML? HTML Code: <a href=":80/link">Doesn't work.</a> I am an Admin for a PC gaming clan ( |ESF| ), and we have several game servers. Our goal is to have a random "server of the day" widget on the main page of the site. Here is what we need it to do: > Show the same server for all visitors to the page > Show the same server for a 24 hour period, say from 12am - 11:59pm > Have the code editable in case we change/add/remove a server I have some experience in Vb6 and Vb.Net, but not much HTML. I would assume the code would be something similar to: Dim SOTD As New String (Server of the Day) "Server List" Dim s1 As New String (Server 1) Dim s2 As New String (Server 2) Dim s3 As New String (Server 3) If TimeOfDay Is 12:00am Then Show SOTD(Random Server from List) Until TimeOfDay Is 11:59pm End If I know that isn't close to HTML, but it should help get the overall point across. Any help to get us closer to this goal is MUCH appreciated. If I wasn't specific enough with the above information, please let me know what else you need to know. It's very late and I'm super tired. Thank you in advance. Hi all, brand new here. A little history. I am an employee of a very small company that had a website built for them. I was given the task of updating it on a regular basis (it is for a group of movie theatres, so it is updated constantly). Well it was build 4 years ago now and the person who built it used frames. We are wanting to bring it a little up to date so I'm redesigning one at the moment that was be much more simplified. What I'm trying to accomplish is this: I want to be able to have a page that has Form - List/Menu that has the days that each theatre has movies scheduled for. Then, when that date is selected, the showtimes part of the page changes to show that dates showtimes but the rest of the page stays the same. After doing some research I THINK what I need to be using is Server Side Includes...but I'm having trouble figuring out how to get this to work. If you want an example of what I'm after you can go to any major movie theatre chain's website (like movietickets.com) and they have what I'm trying to accomplish. ANY help would be appreciated. Thanks! Hello all I am stuck on something and could use some advice. I am not too experienced with html, and am trying to run a php file on a server remotely by writing code in a microprocessor that will contact the server. On the same LAN from a PC, or other computers on other hosts, I can type a URL with the php file and it works fine, but the code from the microprocessor is returning 403 forbidden on the micro>wifi device. The exact same code works fine on another server running a different php file. Here is the response from the server that gives the error: Quote: EXIT ---CMD open xxxxxxxxx.com 80 Connect to 68.178.xxx.xxx:80 <2.23> OPEN>><!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <HTML><HEAD> <TITLE>403 Forbidden</TITLE> </HEAD><BODY> <H1>Forbidden</H1> You don't have permission to access / on this server.<P> <P>Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request. <HR> <ADDRESS>Apache/1.3.33 Server at AppStuff Port 80</ADDRESS> </BODY></HTML> <<CLOSE:: And here is the code I am using to try to run the php file: Quote: PUB SendEmail setidle5 ' kill connection if idle 5 seconds ex ' clear the wifi device if it is stuck ser.str(1, string("---")) ' debug only ser.str(2, string("$$$")) 'tell wifi device to enter uart command mode Viewreply 'view reply in uart screen ser.str(2, string("open xxxxxxxx.com 80")) ser.tx(2, CR) ser.tx(2, LF) viewreply 'view reply in uart screen ser.str(2, string("GET /testemail.php HTTP/1.1")) ' HTTP/1.1 ser.tx(2, CR) ser.tx(2, LF) viewreply 'view reply in uart screen ser.str(2, string("Host: xxxxxxxxx.com")) ' same as above dns name ser.tx(2, CR) ser.tx(2, LF) Viewreply Viewreply ser.str(1, string("::")) 'debug An identical code is working fine, the only difference being the dns name, and the php file name. As I mentioned, the file works fine from any browser including on the same IP as the micro>wifi device. I am believing that there is a syntax error or formatting error, or possibly something I am missing. Any help would really be appreciated! Thanks I have a scenario where a user uploads any file (any format) to a webserver, the webserver manipulates the file then allows the user to download the file. So far I can successfully upload a file to the server. However I am having trouble allowing the user to download a file. I read that streaming the file from the server to the user is better then providing a link to the file on the server. However with my attempts at streaming, I often find the file contents being displayed on the page. Whereas I simply want the file to be downloaded to the users hard disk, or preferably an option that allows the user to accept or decline before downloading the file. Could anyone please give me an example? OK, So my web page works well on my local disk but when I upload it to my server it doesn't work at all. It just opens up a completely blank page? I am pretty sure that it the code is still there tho just doesn't load any of the images and stuff. I don't get it =( I am just using this free service until I can fix all the bugs here is my page. http://dmrosemark.webuda.com/ Anyone? Thanks in Advance D.M Rosemark hello guys hr u ?? i have a problem i have already a streaming server .. and i created a website using iweb but i don't know how to write the HTML code i found this code but i want to upload it from my strwaming server ?how ?? Quote: < object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="320" height="240" id="fullscreen" align="middle"> < param name="allowScriptAccess" value="sameDomain" /> < param name="movie" value="flvplayer.swf" /> < param name="quality" value="high" /> < param name="salign" value="tl" /> < param name="bgcolor" value="#ffffff" /> < param NAME=FlashVars VALUE="file=ENTER_YOUR_FLV_FILENAME_HERE.flv"> < embed src="flvplayer.swf" FlashVars="file=ENTER_YOUR_FLV_FILENAME_HERE.flv" quality="high" salign="tl" bgcolor="#ffffff" width="320" height="240" name="fullscreen" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave- flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> < /object> hey everyone. i'm taking a course in website design this semester and we've gotten to SSI which I am a bit confused over. we're supposed to have built a page with header, menu, footer and then we will be using those three on another 4 pages. so he wants us to pull the header, menu, footer code out and use it with SSI. my question is, what do i need to pull out of this code to make a SSI file that i can then bring in on various pages so they look the same on each? the site is at: http://thing.cs.usm.maine.edu/~mckenney/demo/index.html Hi, I just edited my index page but when i type the name to the website it still shows the older version of the index page... how do i change this? Pleasee heeelllpppppppppppppp The title says everything. (I have a bad feeling about that this is in wrong section, if so SORRY and I dont mind if you move this.) Hi, I could not decide where to post this, here or server side Well I have a question, For example if a have a file on my server, stats.txt , and it has some information on it, like hard drive usage, How can I display it in the web page index.htm? FYI, its a home server running linux. I want to make it that I can see the hard drive usage, like in Gb, free space, used space. I have a few ideas that I will tryout but I also want second opinion. Thanks Hi! Please someone help me with this!! I'm updating someone else's website. I was asked to put a link on the home page to a .doc file. I uploaded the updated home page with link and the linked file to the website via Ipswitch WS-FTP. Now, what SHOULD happen is after clicking the link, the window asking to "open" or "save to disk" should pop up. What is happening instead is that a window pops up asking for a username and password. When "Cancel" is clicked, the file opens automatically. How can I fix this?? Here is the original site link: http://www.richmondtheatres.org If there is something wrong in the code, please let me know. The link is a simple "a href="http://www.richmondtheatres.org/Script Registry 9-1-07.doc"> Thanks for any help provided! |