9/22 03:11:30p Node 1 Sneaky running external program: The Wall
9/22 03:11:30p Node 1 !JavaScript D:\bbs\sbbs\mods\wall.js line 1: SyntaxError: illegal character
9/22 03:11:30p Node 1 Sneaky running external program: The Wall
9/22 03:11:30p Node 1 !JavaScript D:\bbs\sbbs\mods\wall.js line 1: SyntaxError: illegal character
what is on line 1 in the file?
how did you edit it?
does your editor do UTF-8?
did your editor place a UTF-8 BOM on line 1 of the file?
BOM is a Byte Orientation Marker... it is used by UTF-8 editors to know
if the UTF-8 characters in the file are big or little -endian... if it exists in BBS related files that you have edited, you should remove it with another editor used for plain text files...
Hi mark
9/22 03:11:30p Node 1 Sneaky running external program: The Wall
9/22 03:11:30p Node 1 !JavaScript D:\bbs\sbbs\mods\wall.js line 1: SyntaxError: illegal character
what is on line 1 in the file?
how did you edit it?
I used the win10 notepad.
does your editor do UTF-8?
did your editor place a UTF-8 BOM on line 1 of the file?
BOM is a Byte Orientation Marker... it is used by UTF-8 editors to know if the UTF-8 characters in the file are big or little -endian... if it exists in BBS related files that you have edited, you should remove it with another editor used for plain text files...
Thank you for the help with this, I download and installed notepad++ and save
the wall.js with that, and it is now working great, even got the load("wall.js");
in logon.js to work, so all good, thank you again
I am wounder if you can help me with samething else, I have a ans tradewar add
and I would like it to apear after wall cames up when you logon, if you could
that would be great.
Ian S 1st Choice Core SBBS Nz
You can rename the Trade Wars Advertisement to LOGON.ANS and put it in
the ../text/menu/ directory. If you have other ads, you can do
LOGON1.ANS, LOGON2.ANS, etc. But, I recently realized that the numbers
are directly related to Security Level, so for example LOGON99.ANS
could only be seen by a Sysop.
Hi mark
9/22 03:11:30p Node 1 Sneaky running external program: The Wall
9/22 03:11:30p Node 1 !JavaScript D:\bbs\sbbs\mods\wall.js line 1: SyntaxError: illegal character
what is on line 1 in the file?
how did you edit it?
I used the win10 notepad.
does your editor do UTF-8?
did your editor place a UTF-8 BOM on line 1 of the file?
BOM is a Byte Orientation Marker... it is used by UTF-8 editors to know if the UTF-8 characters in the file are big or little -endian... if it exists in BBS related files that you have edited, you should remove it with another editor used for plain text files...
Thank you for the help with this, I download and installed notepad++ and save
the wall.js with that, and it is now working great, even got the load("wall.js");
in logon.js to work, so all good, thank you again
I am wounder if you can help me with samething else, I have a ans tradewar add
and I would like it to apear after wall cames up when you logon, if you could
that would be great.
Ian S 1st Choice Core SBBS Nz
You probably are looking for this:
http://wiki.synchro.net/config:text_files
You can rename the Trade Wars Advertisement to LOGON.ANS and put it in the ../text/menu/ directory. If you have other ads, you can do LOGON1.ANS, LOGON2.ANS, etc. But, I recently realized that the numbers are directly related to Security Level, so for example LOGON99.ANS could only be seen by a Sysop.
On 2017 Sep 23 09:53:34, you wrote to Sneaky:
You can rename the Trade Wars Advertisement to LOGON.ANS and put it in the ../text/menu/ directory. If you have other ads, you can do LOGON1.ANS, LOGON2.ANS, etc. But, I recently realized that the numbers are directly related to Security Level, so for example LOGON99.ANS could only be seen by a Sysop.
i posted a patch to logon.js some time back that allows for both security related logon files and a series of numerical logon files to both operate... it
shows the security related logon file first and then all of the series numbered
ones... reversing this to show the series logon files first and then the security related one is simply a matter of moving three lines... the patch uses
"logons" for the security related base file name and "logon" for the others...
eg: user level 50 sees the following
logons50
logon1
logon2
logon3
it shows all of the logon## ones even with gaps in the numbering... the code currently limits to only 99 logon files but there's room enough for upto 999 with a minor change...
)\/(ark
Re: Re: The wall
By: KenDB3 to Sneaky on Sat Sep 23 2017 09:53 am
Hi mark
9/22 03:11:30p Node 1 Sneaky running external program: The Wall
9/22 03:11:30p Node 1 !JavaScript D:\bbs\sbbs\mods\wall.js line 1: SyntaxError: illegal character
what is on line 1 in the file?
how did you edit it?
I used the win10 notepad.
does your editor do UTF-8?
did your editor place a UTF-8 BOM on line 1 of the file?
BOM is a Byte Orientation Marker... it is used by UTF-8 editors to know if the UTF-8 characters in the file are big or little -endian... if it exists in BBS related files that you have edited, you should remove it with another editor used for plain text files...
Thank you for the help with this, I download and installed notepad++ and save
the wall.js with that, and it is now working great, even got the load("wall.js");
in logon.js to work, so all good, thank you again
I am wounder if you can help me with samething else, I have a ans tradewar add
and I would like it to apear after wall cames up when you logon, if you could
that would be great.
Ian S 1st Choice Core SBBS Nz
You probably are looking for this: http://wiki.synchro.net/config:text_files
You can rename the Trade Wars Advertisement to LOGON.ANS and put it in the ../text/menu/ directory. If you have other ads, you can do LOGON1.ANS, LOGON2.ANS, etc. But, I recently realized that the numbers are directly related to Security Level, so for example LOGON99.ANS could only be seen by a Sysop.
Well, the consecutive numbered logon* files are displayed to everyone, regardless of security level. You can see the logic in exec/logon.js.
digital man
it shows all of the logon## ones even with gaps in the numbering... the
code currently limits to only 99 logon files but there's room enough
for upto 999 with a minor change...
That's pretty neat Mark. I took a look at the current CVS code, and I think I get how it works now, but your modification sounds cool.
I am wounder if you can help me with samething else, I have a ans tradewar add
and I would like it to apear after wall cames up when you logon, if you could
that would be great.
Ian S 1st Choice Core SBBS Nz
You probably are looking for this: http://wiki.synchro.net/config:text_files
You can rename the Trade Wars Advertisement to LOGON.ANS and put it in
the ../text/menu/ directory. If you have other ads, you can do
LOGON1.ANS, LOGON2.ANS, etc. But, I recently realized that the numbers
are directly related to Security Level, so for example LOGON99.ANS
could only be seen by a Sysop.
I would like same help with add ansi adds (tradewars etc) after the bullenton S>or before when loging in. done it before but have forgotton.
Use something like EZBULLETIN - you can have several news files in
that regard. I've managed to reduce the number of "news screens", and >instead, have the topics, bulletins, on the bulletins menu.
Along that line, for whatever reason, I am not getting the BULLSEYE
bulletins deal to show at logon. A few days back, I had discovered that >somehow, the default doors category had been zapped, so I can to rebuild
it. I may add the "logon option" to it to show up, or I'll expand the >EZBULLETIN menu to get the items, and not use the BULLSEYE utility at
all.
I did set it to where only Verified Users In Good Standing could post
something on EZWALL (the "wall" part of EZBULLETIN...since I don't know
the identity of those logging on as GUEST.
eg: user level 50 sees the following
logons50
logon1
logon2
logon3
| Sysop: | Winzlo |
|---|---|
| Location: | Minnesota, USA |
| Users: | 11 |
| Nodes: | 16 (0 / 16) |
| Uptime: | 495948:59:16 |
| Calls: | 82 |
| Files: | 1,070 |
| Messages: | 287,244 |