Quote from: lotsofish on June 15, 2006, 06:46:53 PM
It's an include file for some bulletin board system.
oh okay, I have NO idea how it got there.
Click here for Toll-Free Service for your business starting at $2.00 per month
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts MenuQuote from: lotsofish on June 15, 2006, 06:46:53 PM
It's an include file for some bulletin board system.
Quote from: Evilsprouts on June 20, 2006, 12:05:16 PM
Please bear in mind that it wasn't me (Jack) who posted this it was someone from work used my account.
Quote from: namhuy on June 20, 2006, 10:54:19 AM
I do not remember how many times that I tried the "contact page" to ask them... I got no answer.
Quote from: brainiac744 on June 19, 2006, 09:06:59 PM
What exactly are you trying to accomplish? (You never really said as far as I can see)
Quote from: dest on June 15, 2006, 03:51:40 PM
I'll go through this as PHP would
1) replace all a with b
result: bbc bcb
2) replace all b with c
result: ccc ccc
3) replace all c with a
result: aaa aaa
Quote from: Evilsprouts on June 13, 2006, 05:36:16 PM
If I remember correctly Perl has been disabled globally.
Quote from: hypnoticvibe on June 11, 2006, 05:30:15 AMQuote from: sixthcrusifixActually, the director of the W3C is the person who CREATED the World Wide Web and HTML Markup so, in all technical-ness it IS actually the bible. However I find that I rarely agree with the bible anyway.On the frequency of technicality, HTML is based off of SGML. SGML was invented by Charles Goldfarb in 1974. The internet is simply a wide area network. Tim Berners-Lee (w3c's director) did not invent SGML or the first computer network.
So technically the analogy would not place Tim as God, thus w3c's guide would not be the Bible.
...but the point was symbolic, not literal. The point was that w3c' literature is not perfect and just because they claim something doesn't mean it has to be the wisest option.
Quote from: jdstroy on June 06, 2006, 05:54:56 PM
Umm, no... that would be a _big_ security issue, and/or it would kill the server resources. I could write a simple class to kill the server resources right now:
public class MainTrouble implements Runnable {
public MainTrouble() {
}
public void run() {
while(true) {
// do not yield or sleep
}
}
public static void Main(String[] args) {
while (true) {
Thread t = new Thread(new MainTrouble());
t.start();
}
}
}
// this class will cause many loop threads to be started that do nothing and consume processor time. not good.
If you're looking for battle hosting, try looking for a shell server and/or a virtual server. Too much trouble for webhosts.
What I'm asking for is just another server-side engine to parse Java Server Pages. It's like working with ASP or PHP.
Quote from: pythonpoole on June 08, 2006, 12:56:10 PM
Hmm maybe they simply mean this:
http://scorptek.org/MISC/FreepgsSupportForum/whatisserverip.php
just using a very simple script to get external ip<?php
$file = file_get_contents ('http://whatismyip.org');
Echo "The Freepgs Server IP seems to be: ".$file;
?>