• Running httpd and synchro

    From Amessyroom@VERT/TL-QWK to All on Sat Jul 13 11:46:00 2024
    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 Sat Jul 13 12:39:00 2024
    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 Amessyroom@VERT/TL-QWK to All on Tue Jul 16 00:55:00 2024
    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