• ecwebv3

    From Deepend@VERT/RDBBS to All on Wednesday, June 17, 2015 00:21:32
    Not sure if this has been mentioned before but using ecwebv3 and I've noticed the "Logout" doesn't function at all. Just takes it back to the main screen and does not log out at all.

    Thanks
    Mike

    ---
    þ Synchronet þ RetroDigital BBS - rdnetbbs.com
  • From Digital Man@VERT to Deepend on Sunday, June 21, 2015 18:32:13
    Re: ecwebv3
    By: Deepend to All on Wed Jun 17 2015 12:21 am

    Not sure if this has been mentioned before but using ecwebv3 and I've noticed the "Logout" doesn't function at all. Just takes it back to the main screen and does not log out at all.

    Do you have a "guest" account on your system?

    digital man

    Synchronet "Real Fact" #28:
    Rob Swindell first called BBSes (at 300bps) with an Apple II computer in 1982. Norco, CA WX: 82.0øF, 46.0% humidity, 7 mph SE wind, 0.00 inches rain/24hrs

    ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ telnet://vert.synchro.net
  • From Deepend@VERT/RDBBS to Digital Man on Wednesday, June 24, 2015 23:32:55

    Do you have a "guest" account on your system?


    Nope.

    ---
    þ Synchronet þ RetroDigital BBS - rdnetbbs.com
  • From echicken@VERT/ECBBS to Deepend on Thursday, June 25, 2015 02:47:42
    Re: ecwebv3
    By: Deepend to All on Wed Jun 17 2015 00:21:32

    Not sure if this has been mentioned before but using ecwebv3 and I've noticed the "Logout" doesn't function at all. Just takes it back to the main screen and does not log out at all.

    I'll take a look at this.

    Have you logged on as anybody when this happens, or does the "Log out" link always show up?

    What's the value of the 'WebGuest' key in the [ecweb] section of your 'ctrl/modopts.ini' file? Does this correspond to the alias of an account that exists on your system?

    Most likely this is related to a known issue. I need to make ecweb deal with the absence of a (web-tailored or otherwise) guest account in a more sensible way than it currently does.

    I suspect the quick fix would be to create an account on your system that has only the permissions that you would like to grant to anonymous visitors from the web, then set 'WebGuest' (as mentioned above) to the alias of that account.

    ---
    echicken
    electronic chicken bbs - bbs.electronicchicken.com - 416-273-7230
    þ Synchronet þ electronic chicken bbs - bbs.electronicchicken.com
  • From Deepend@VERT/RDBBS to echicken on Thursday, June 25, 2015 12:04:17
    Re: ecwebv3
    By: Deepend to All on Wed Jun 17 2015 00:21:32

    Not sure if this has been mentioned before but using ecwebv3 and I've noticed the "Logout" doesn't function at all. Just takes it back to the main screen and does not log out at all.


    Logout link only shows up when I log into the web page. If I close the browser and reopen it Will ask for the login again. Just can't log out by clicking the link.


    What's the value of the 'WebGuest' key in the [ecweb] section of your >'ctrl/modopts.ini' file? Does this correspond to the alias of an account that >exists on your system?

    I will check once I get home.

    Most likely this is related to a known issue. I need to make ecweb deal with >the absence of a (web-tailored or otherwise) guest account in a more sensible >way than it currently does.

    I suspect the quick fix would be to create an account on your system that has >only the permissions that you would like to grant to anonymous visitors from >the web, then set 'WebGuest' (as mentioned above) to the alias of that account.

    Will look into that.

    ---
    þ Synchronet þ RetroDigital BBS - rdnetbbs.com
  • From Deepend@VERT/RDBBS to Deepend on Thursday, June 25, 2015 12:09:41
    One more question. What would be the best way to create a link on the sidebar that just directly links to an external link. For the moment my external link is currently just an Iframe in a Xjs file so it'll show the link . I'm by far not an expert at anything JavaScript or the like so best I managed to do on my own was I made an external link once but the link made everything in the boxes below also linked to the same page. So was close but must have gotten my syntax slightly wrong I guess.

    Thanks
    Mike

    ---
    þ Synchronet þ RetroDigital BBS - rdnetbbs.com
  • From echicken@VERT/ECBBS to Deepend on Thursday, June 25, 2015 15:59:13
    Re: ecwebv3
    By: Deepend to Deepend on Thu Jun 25 2015 12:09:41

    One more question. What would be the best way to create a link on the sidebar that just directly links to an external link. For the moment my external link is currently just an Iframe in a Xjs file so it'll show the

    One option would be to create a sidebar module specifically for showing external links. This would be as simple as creating a .html file in your sidebar/ directory and adding your links in there:

    <a href="http://poo.pee/">Poo Pee</a>
    <br />
    <a href="http://pee.poo/">Pee Poo</a>

    This doesn't need to be a complete HTML document with <html>, <head>, and <body> tags since it will be loaded inside of another one. The name of this file will affect its position in the sidebar.

    Another option would be to create a .html file inside of your pages/ directory containing something like this:

    <!--Poo Pee-->
    <script type="text/javascript">
    window.location = "http://poo.pee/";
    </script>
    <a href="http://poo.pee/">Poo Pee</a>

    The 'pages' sidebar module would see this file and add it to the list. As with sidebar modules, the name of this file will dictate its position in the list
    of links.

    If a user loads this page, they should be redirected to the external
    site automatically (or, if they have javascript disabled in their browser, they'll still have a link to the external site that they can click on.)

    So, those are the "right" ways of doing this using the mechanisms provided by ecweb. Technically you could just modify your 'sidebar/000-pages.ssjs' file and hard-code some links in there, but that could get messy.

    ---
    echicken
    electronic chicken bbs - bbs.electronicchicken.com - 416-273-7230
    þ Synchronet þ electronic chicken bbs - bbs.electronicchicken.com
  • From Deepend@VERT/RDBBS to echicken on Thursday, June 25, 2015 17:29:22
    What's the value of the 'WebGuest' key in the [ecweb] section of your >'ctrl/modopts.ini' file? Does this correspond to the alias of an account that >exists on your system?

    WebGuest = Guest

    So no it doesn't match any available users. I guess I can always just create a guest account if needed or maybe a low permissions "web" user. If that will help?

    Thanks
    Mike

    ---
    þ Synchronet þ RetroDigital BBS - rdnetbbs.com
  • From Digital Man@VERT to Deepend on Thursday, June 25, 2015 19:06:18
    Re: ecwebv3
    By: Deepend to Digital Man on Wed Jun 24 2015 11:32 pm


    Do you have a "guest" account on your system?


    Nope.

    It (ecwebv3) will work a lot better if you have a "guest" account on your system. It has known issues with systems lacking a guest account.

    digital man

    Synchronet "Real Fact" #55:
    Synchronet Terminal Server introduced SecureShell (SSH) support w/v3.14a (2006).
    Norco, CA WX: 82.5øF, 45.0% humidity, 6 mph SE wind, 0.00 inches rain/24hrs

    ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ telnet://vert.synchro.net
  • From Deepend@VERT/RDBBS to Digital Man on Thursday, June 25, 2015 23:24:48
    It (ecwebv3) will work a lot better if you have a "guest" account on your >system. It has known issues with systems lacking a guest account.


    Works now. Thanks!

    ---
    þ Synchronet þ RetroDigital BBS - rdnetbbs.com
  • From echicken@VERT/ECBBS to Deepend on Friday, June 26, 2015 11:16:35
    Re: ecwebv3
    By: Deepend to echicken on Thu Jun 25 2015 17:29:22

    So no it doesn't match any available users. I guess I can always just create a guest account if needed or maybe a low permissions "web" user. If that will help?

    Yes, that's what the WebGuest key in modopts.ini is for - you might want to apply different restrictions to web-based guest access than you do for your regular guest account.

    ---
    echicken
    electronic chicken bbs - bbs.electronicchicken.com - 416-273-7230
    þ Synchronet þ electronic chicken bbs - bbs.electronicchicken.com
  • From Deepend@VERT/RDBBS to echicken on Friday, June 26, 2015 12:39:03
    Yes, that's what the WebGuest key in modopts.ini is for - you might want to >apply different restrictions to web-based guest access than you do for your >regular guest account.


    Good thought. Guess I should start learning more about synchronet permissions.

    Thanks
    Mike

    ---
    þ Synchronet þ RetroDigital BBS - rdnetbbs.com
  • From Poindexter Fortran@VERT/REALITY to echicken on Friday, June 26, 2015 13:43:08
    Re: ecwebv3
    By: echicken to Deepend on Thu Jun 25 2015 03:59 pm

    <a href="http://poo.pee/">Poo Pee</a>
    <br />
    <a href="http://pee.poo/">Pee Poo</a>

    Looks like my 11 year old son's first attempt at writing HTML.

    ---
    þ Synchronet þ realitycheckBBS -- http://realitycheckBBS.org
  • From kk4qbn@VERT/NWGA_NET to Poindexter Fortran on Monday, June 29, 2015 14:36:29
    Re: ecwebv3
    By: Poindexter Fortran to echicken on Fri Jun 26 2015 01:43 pm

    <a href="http://poo.pee/">Poo Pee</a>
    <br />
    <a href="http://pee.poo/">Pee Poo</a>

    Looks like my 11 year old son's first attempt at writing HTML.

    ROFLMAO!

    --

    Best Regards,

    Tim

    ---
    þ Synchronet þ Northwest GA Network: nwga_net.synchro.net (706)422-9538
  • From Deepend@VERT/RDBBS to All on Wednesday, July 01, 2015 20:40:21
    Any good ideas on why when I use the ecwebv3 website in internet explorer the message board and email sections both error out "this page cannot be displayed"

    Didn't notice any errors listed in any logs.. So at a loss. Maybe something I broke at some point?

    Works fine in any other browser..

    Thanks

    ---
    þ Synchronet þ RetroDigital BBS - rdnetbbs.com
  • From echicken@VERT/ECBBS to Deepend on Thursday, July 02, 2015 11:11:04
    Re: ecwebv3
    By: Deepend to All on Wed Jul 01 2015 20:40:21

    Any good ideas on why when I use the ecwebv3 website in internet explorer the message board and email sections both error out "this page cannot be displayed"

    No idea. Which version(s) of IE is it not working with? Is Javascript enabled in the browser? (The forum stuff relies on client-side JS for various things.)

    ---
    echicken
    electronic chicken bbs - bbs.electronicchicken.com - 416-273-7230
    þ Synchronet þ electronic chicken bbs - bbs.electronicchicken.com
  • From Deepend@VERT/RDBBS to echicken on Thursday, July 02, 2015 16:09:40
    No idea. Which version(s) of IE is it not working with? Is Javascript enabled
    in the browser? (The forum stuff relies on client-side JS for various things.)


    11.0.9600.17842 under Windows 8.1 is the version. Really is odd but I'm sure its not a huge loss since who really relies on IE for much.

    the message bases will load up until all the message bases are listed and then error out. The email doesn't show at all. But just an IE problem. Maybe IE decided it would support Client-side javascript as well as it handles HTML5.. lol


    Thanks
    Mike

    ---
    þ Synchronet þ RetroDigital BBS - rdnetbbs.com
  • From Daryl Stout@VERT to POINDEXTER FORTRAN on Sunday, July 12, 2015 18:43:39
    <a href="http://poo.pee/">Poo Pee</a>
    <br />
    <a href="http://pee.poo/">Pee Poo</a>

    Looks like my 11 year old son's first attempt at writing HTML.

    At least he didn't notate image files. :P

    Daryl

    ---
    þ OLX 1.53 þ Do not look into laser with remaining eye.

    --- Virtual Advanced Ver 2 for DOS
    * Origin: The Thunderbolt BBS (1:19/33)
    þ Synchronet þ Vertrauen þ Home of Synchronet þ telnet://vert.synchro.net