Well, I'm only 16 and I'm using 'em.
They are pretty good but depreceated rather a lot as graphical MUDs came
around.
The people on them are generally of the, ah, computing persuasion though
so it's a good way to meet people with like interests :)
On Thu, 1 Jan 2009, Per Jessen wrote:
Rob
On Thu, 2009-01-01 at 18:43 +, Luke Slater wrote:
> WELL, while we're advertising, tcz.net
>
> telnet tcz.net 23
>
> The MUD does indeed cover many aspects of programming, most of them even
> have their own scripting language!
Which is why PHP seems so lucrative... but one thing you need to
WELL, while we're advertising, tcz.net
telnet tcz.net 23
The MUD does indeed cover many aspects of programming, most of them even
have their own scripting language!
On Thu, 1 Jan 2009, Robert Cummings wrote:
On Thu, 2009-01-01 at 19:03 +0100, Per Jessen wrote:
Robert Cummings wrote:
'c..
On Thu, 2009-01-01 at 17:58 +, Luke Slater wrote:
> It's actually derived from tinymud.
>
> XML is another option, however I've had people tell me not to use that
> because it's horrifically slow, even though I've used it extensively,
> through AJAX before and never had a speed issue; althou
On Thu, 2009-01-01 at 19:03 +0100, Per Jessen wrote:
> Robert Cummings wrote:
>
> > 'c...@l-i-e.com' isn't the original poster, I was speaking generally...
>
> I thought he was the one to bring up his concern about PHP and
> performance - I could be wrong.
>
> >> That is perhaps a valid conside
Robert Cummings wrote:
> 'c...@l-i-e.com' isn't the original poster, I was speaking generally...
I thought he was the one to bring up his concern about PHP and
performance - I could be wrong.
>> That is perhaps a valid consideration, but isn't it easily dealt with
>> by using gigabit ethernet o
It's actually derived from tinymud.
XML is another option, however I've had people tell me not to use that
because it's horrifically slow, even though I've used it extensively,
through AJAX before and never had a speed issue; although perhaps when
dealing with more information it does become a
On Thu, 2009-01-01 at 13:27 +, Luke wrote:
> The current system also uses some kind of strange text based database, I was
> wondering if using MySQL for the database would slow it down too much?
Which MUD engine are you using? Chances are it's DIKU, or Circle, or
Merc or one of the many deriva
On Thu, 2009-01-01 at 12:53 +, Luke Slater wrote:
> Well the current system runs of a 20MB internet connection in London,
> seeing as that's the UK that about 2MB.
>
> It runs fine, responses are snappy even dealing with loads of users.
>
> This, however, is written in C: does PHP have that
On Thu, 2009-01-01 at 11:51 +0100, Per Jessen wrote:
> Robert Cummings wrote:
>
> >>
> >> It's not easy in any language, but if your key concern is the
> >> performance of PHP (as a language), hardware is what you need. You
> >> can design your software to run on a single box with lots of CPU
>
Luke wrote:
> The current system also uses some kind of strange text based database,
> I was wondering if using MySQL for the database would slow it down too
> much?
>
It depends on the type and mix of transactions, but based on the
information available, I don't think MySQL will slow it down to
The current system also uses some kind of strange text based database, I was
wondering if using MySQL for the database would slow it down too much?
> > Well the current system runs of a 20MB internet connection in London,
> > seeing as that's the UK that about 2MB.
> >
> > It runs fine, response
Luke Slater wrote:
> Well the current system runs of a 20MB internet connection in London,
> seeing as that's the UK that about 2MB.
>
> It runs fine, responses are snappy even dealing with loads of users.
>
> This, however, is written in C: does PHP have that much of an overhead
> so that bandw
Well the current system runs of a 20MB internet connection in London,
seeing as that's the UK that about 2MB.
It runs fine, responses are snappy even dealing with loads of users.
This, however, is written in C: does PHP have that much of an overhead so
that bandwidth is actually that much of a
Robert Cummings wrote:
>>
>> It's not easy in any language, but if your key concern is the
>> performance of PHP (as a language), hardware is what you need. You
>> can design your software to run on a single box with lots of CPU
>> cores, or
>> you can go for a distributed (and more easily scala
On Wed, 2008-12-31 at 17:35 +0100, Per Jessen wrote:
> c...@l-i-e.com wrote:
>
> >
> >>> I often thought PHP would be a nice language for a MUD, if one could
> >>> get the performance out of it...
> >>
> >> Design your code such that you can just throw more hardware at it
> >> whenever you need m
On Wed, 2008-12-31 at 16:19 +, c...@l-i-e.com wrote:
> >> I often thought PHP would be a nice language for a MUD, if one could
> >> get the performance out of it...
> >
> > Design your code such that you can just throw more hardware at it
> > whenever you need more performance.
>
> That's eas
c...@l-i-e.com wrote:
>
>>> I often thought PHP would be a nice language for a MUD, if one could
>>> get the performance out of it...
>>
>> Design your code such that you can just throw more hardware at it
>> whenever you need more performance.
>
> That's easily said, but a MUD means all the use
>> I often thought PHP would be a nice language for a MUD, if one could
>> get the performance out of it...
>
> Design your code such that you can just throw more hardware at it
> whenever you need more performance.
That's easily said, but a MUD means all the users have to share a signific
c...@l-i-e.com wrote:
>
> I often thought PHP would be a nice language for a MUD, if one could
> get the performance out of it...
Design your code such that you can just throw more hardware at it
whenever you need more performance.
/Per Jessen, Zürich
--
PHP General Mailing List (http://www.
Luke Slater wrote:
> Hi everyone,
>
> I'm trying to rewrite an old MUD in PHP; the reasons for this are that
> the original is written in C and most files in the codebase run over
> 2000 lines with at least 20 of them, which makes it very hard to
> change anything.
>
> Plus, the web interface is al
That supersocket class certainly seems good enough to get me started,
thanks everyone!
On Tue, 30 Dec 2008, Manuel Lemos wrote:
Hello,
There are plenty of ready to use solutions to build TCP servers. Here
are some of them:
Simple TCP Daemon
http://www.phpclasses.org/daemon
Generic socket ba
Hello,
There are plenty of ready to use solutions to build TCP servers. Here
are some of them:
Simple TCP Daemon
http://www.phpclasses.org/daemon
Generic socket based networking servers
http://www.phpclasses.org/clssocket
Implement TCP socket server scripts
http://www.phpclasses.org/flosocket
On Tue, Dec 30, 2008 at 16:34, wrote:
>
> I often thought PHP would be a nice language for a MUD, if one could get the
> performance out of it...
>
> 'Course you could always write some of the heaviest bits as extensions...
Indeed. I had written a very simple control-panel-like Telnet
scri
On Tue, 2008-12-30 at 16:21 -0500, Brian A. Seklecki wrote:
> On Tue, 30 Dec 2008, Luke Slater wrote:
>
> > Hi everyone,
> >
>
> A quick read over Stevens` A.P.U.E. and UNIX Network Programing Vol. 1
> should familarize you with multi-threaded TCP/IP daemon development.
Couple of problems...
On Tue, 2008-12-30 at 21:12 +, Luke Slater wrote:
> Hi everyone,
>
> I'm trying to rewrite an old MUD in PHP; the reasons for this are that the
> original is written in C and most files in the codebase run over 2000
> lines with at least 20 of them, which makes it very hard to change
> anyt
I often thought PHP would be a nice language for a MUD, if one could get the
performance out of it...
'Course you could always write some of the heaviest bits as extensions...
Anyway, I don't think you need the connections to be "shared" in any special
way.
Just update your data store a
On Tue, 30 Dec 2008, Luke Slater wrote:
Hi everyone,
A quick read over Stevens` A.P.U.E. and UNIX Network Programing Vol. 1
should familarize you with multi-threaded TCP/IP daemon development.
~BAS
1. http://www.kohala.com/start/apue.html
--
PHP General Mailing List (http://www.php.net/
Hi everyone,
I'm trying to rewrite an old MUD in PHP; the reasons for this are that the
original is written in C and most files in the codebase run over 2000
lines with at least 20 of them, which makes it very hard to change
anything.
Plus, the web interface is also written in C, and needles
hi,
Theoretically possible but practically very difficult. The telnet
protocol is a lot more complex than it looks at first glance. Even to
login you need to do a lot of negotiation.
Dev wrote:
Hello all,
I currently have a generic socket daemon running and doing what it
should but I am wond
Hello all,
I currently have a generic socket daemon running and doing what it should
but I am wondering if there is a way to have a php script act as a telnet
daemon?
Thanks to you all in advance!
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub
You can send mail using PHP's mail() function.
On windows this works with regular SMTP (mail server),
on UNIX it executes a binary (local delivery agent) that
may handle the message as desired.
If you really want to sent through a telnet service, you can
fsockopen() to the telnet server an
et.res.in> cc:
Subject: [PHP] Telnet
Hello,
By using telnet option how i will send a mail from my machine using
php..If any one came to know this plz tell me how to do it...
-Uma
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
the attached file implements a minimal telnet client and is
free to use.
re,
tc
On Wed, Dec 19, 2001 at 02:16:36PM -0800, Chris Lee wrote:
> if I nc to my server on port 23 I get the same thing. ie there is nothing
> wrong. your going to have to emulate the telnet protocal now,
if I nc to my server on port 23 I get the same thing. ie there is nothing
wrong. your going to have to emulate the telnet protocal now, thats just the
connect string.
--
Chris Lee
[EMAIL PROTECTED]
"Kancha" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]...
> The following co
... and what did you expect? :o) Telnet uses charcters under ascii[32] to
sync and manage connection/session - try
http://www.faqs.org/rfcs/rfc854.html - description of TELNET protocol.
M.N.
--
kancha wrote:
> The following code generated garbase output. what is wrong ??
>
>$sp = fsockop
The following code generated garbase output. what is wrong ??
The output was as follows:
[root@ispms html]# php telnet.php
X-Powered-By: PHP/4.1.0
Content-type: text/html
ÿý▒ÿý ÿý#ÿý'[root@ispms html]#
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTEC
>
> Hi Bas!
>
> SSH is possible but complicated.
>
Not really, just create a tunnel...
-Sterling
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [
Hi Bas!
SSH is possible but complicated.
For telnet, simply use fsockopen() (default telnet port is 23).
This returns a filepointer so you can read/write like as a regular file.
greets,
Bas van Rooijen
On Mon, 17 Dec 2001 17:28:04 +0100, Bas van Schaik wrote:
>Hello everybody!
>
>I need so
Hello everybody!
I need some help. I want to use a SSH (or, if SSH is impossible, telnet)
connection in PHP. But I can't find anything about it. The only thing about
telnet in the PHP manual (English), is that Curl supports it, but how? Tanks
in advance for all replies!
Bas
--
PHP General Ma
Yeah, use a real client program like Terra Term.
-Jason Garber
At 05:07 PM 11/24/2001 +, cosmin laslau wrote:
>I've got a huge table that I'm trying to get information about. I use a
>MySQL database, and the windows telnet utility to access it. To see info
>about the table, the DESCRIBE c
arren Vail
Cc: [EMAIL PROTECTED]
Subject: Re: [PHP] Telnet and PHP
Instead of performing a send for each stroke, the user code type in a whole
string in a text box, and then submit that string. I have found this code at
http://www.phpbuilder.com/mail/php-general/2001051/1479.php:
sock = fsoc
23);
echo $tn->read_till("ogin: ");
$tn->write("admin\r\n");
echo $tn->read_till("word: ");
$tn->write("thieso\r\n");
echo $tn->read_till(":> ");
$tn->write("ps\r\n");
echo $tn->read_till(":> ");
echo
ave's Telnet and fashion an extension to PHP.
Til then, try the options above,
Warren Vail
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Saturday, June 30, 2001 10:36 AM
To: [EMAIL PROTECTED]
Subject: [PHP] Telnet and PHP
I was doing some research on
not allow for active user
input. While I will sit down this evening and work with the code, I was wondering if
anyone had/knew of a good example of a PHP telnet client.
I've seen a number of requests for info on this subject with no answers.
Is anyone working on a tn (Telnet) screen scrapper connectivity toolset for
PHP?
How about tn3270?
Warren Vail
Availabletech.com
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
If you are just looking for something better than the ms telnet program,
look at http://www.chiark.greenend.org.uk/~sgtatham/putty/. it is so much
better than telnet. I don't know if that is what you mean, though.
Jeff
""Brandon Orther"" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]
0 370 0436
- Original Message -
From: "Brandon Orther" <[EMAIL PROTECTED]>
To: "PHP User Group" <[EMAIL PROTECTED]>
Sent: Friday, February 09, 2001 2:12 PM
Subject: [PHP] Telnet with php?
> Hello,
>
> Is there a way to telnet with php? If so does
I've been messing with popen and telnet recently and I can see the machine connect
and show a response but I never get to a login prompt. I'll be fiddling with this
some more, maybe we can work on it together?
Julia
Quoting Brandon Orther ([EMAIL PROTECTED]):
> Hello,
>
> Is there a way to t
Hello,
Is there a way to telnet with php? If so does anyone know a good place to
find a tutorial on it?
Thank you,
Brandon Orther
WebIntellects Design/Development Manager
[EMAIL PROTECTED]
800-994-6364
www.webintellects.com
-
Hello, anybody know, how can i change the timeout of the telnet server in a redhat
6.2?
Thanks
_
Get your own i8that.com email addresses. It's Fun! It's Free!
Go to---> http://www.i8that.com
--
PHP General Mailing List (http
Hi, anybody knows where can i change the telnet timeout on a linux red
hat 6.2?
Thanks
Pablo
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTEC
53 matches
Mail list logo