• Running httpd and synchronet web server

    From Amessyroom@VERT/TL-QWK to All on Saturday, July 13, 2024 11:46:19
    I'm trying to run httpd on port 8080, and let synchronet run on 80/443.

    But even if I give a url specifying 8080 it seems to redirect to 80.

    How can I get the two services to work together ?

    The httpd/wordpress site should be accessible on http://confused.ddns.net:8080/index.php

    confused.ddns.net and toolazy.ddns.net resolve to the same IP.

    Synchronet is configured for 80/443 for toolazy.ddns.net

    ---
    þ Synchronet þ Too Lazy BBS - Sit back and read and play games - toolazy.ddns.net:2323
  • From Amessyroom@VERT/TL-QWK to All on Saturday, July 13, 2024 12:39:24
    Determined problem to be password protection plug referencing site without 8080 , so it defaulted to hostname only which resolved to the BBS on port 80.

    Modified wordpress config to use confused.ddns.net:8080, and this allowed me to get in see posts.

    But it seems I cannot post , and pictures are not showing up. Have to figure out why these two functions are broken.

    ---
    þ Synchronet þ Too Lazy BBS - Sit back and read and play games - toolazy.ddns.net:2323
  • From nelgin@VERT/EOTLBBS to All on Saturday, July 13, 2024 22:25:43
    On Sat, 13 Jul 2024 12:39:24 -0400
    "Amessyroom" (VERT/TL-QWK) <VERT/TL-QWK!Amessyroom@endofthelinebbs.com>
    wrote:
    Determined problem to be password protection plug referencing site
    without 8080 , so it defaulted to hostname only which resolved to the
    BBS on port 80.

    Modified wordpress config to use confused.ddns.net:8080, and this
    allowed me to get in see posts.

    But it seems I cannot post , and pictures are not showing up. Have to
    figure out why these two functions are broken.

    ---
    þ Synchronet þ Too Lazy BBS - Sit back and read and play games - toolazy.ddns.net:2323
    Maybe make sure WordPress isn't configured to try and serve secure
    pages via https. Maybe that's what is happening?
    Or you may need to dick around with WP so it knows you're using port
    8080.
    --
    End Of The Line BBS - Plano, TX
    telnet endofthelinebbs.com 23
    ---
    þ Synchronet þ End Of The Line BBS - endofthelinebbs.com
  • From Amessyroom@VERT/TL-QWK to All on Tuesday, July 16, 2024 00:55:36
    Determined there were three tables that I needed to update with the new URL.


    UPDATE wp_options
    SET
    `option_value` = 'http://confused.ddns.net:8080'
    WHERE `option_id` = 1 or `option_id` = 2;
    UPDATE wp_posts SET post_content = REPLACE(post_content,'http://confused.ddns. net','http://confused.ddns.net:8080');
    UPDATE wp_postmeta SET meta_value = REPLACE(meta_value,'http://confused.ddns.net','http://confused.ddns.net:8080');

    ---
    þ Synchronet þ Too Lazy BBS - Sit back and read and play games - toolazy.ddns.net:2323