I had a problem using this script - it wouldn't let me log in because I have spaces in my username ('$code or die').
I had to make a change to line 326 - in the
runserver sub. It's looking for the following:
/^LOGIN: (\S+) (\S+)$/ Which wouldn't work in my case because it will find:
'LOGIN: $code or die ****' so it thinks that
'or' is my password and there are things after it.
I guess that most PerlMonks users have a one-word username, but I found that the following modification will work for me and anyone else:
/^LOGIN: (.+) (\S+)$/ I hope that spaces aren't allowed in passwords too - otherwise you'll have to do this without a regex.
Another way around this would be to change the line (1057) in the
Ok_Click sub:
&getFromServer("LOGIN $un $pw");
to something like :
&getFromServer("LOGIN $un-:-$pw");
Then you could change the regex above to:
/^LOGIN: (.+)-:-(.+)$/
-:- is probably not a very good delimiter but it would probably work.
Anyway - apart from that - monkchat is great - I love it!
UPDATED: changed the regex strings from (.*) to (.+).
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.