edit LOGIN home sitemapThis is starting to look better
Dec 8th, 2025

Had to go and edit some parens out of image file names so my Perl/Tk image viewer could load them properly. Took me a minute or ten longer than it should have - very old code lol, like 2011'ish


for i in `ls *.jpg|grep "("`; 
  do  
  F=`echo $i | sed "sx(xx"|sed "sx)xx"`; 
  echo $i $F; 
  mv $i $F; 
  done


November 13th, 2025

Moved ssh access from FedoraServer zone to Trusted zone using firewall-cmd.

Allowed http/https access too.

Noted that outage on our internet the other day had changed my IP address.

Fixed sub auth{} in cms3.pm to allow posting from the new IP.

firewall-cmd --zone=Trusted --add-zone=192.168.1.20
firewall-cmd --zone=Trusted --add-zone=192.168.1.20 --permanent
firewall-cmd --zone=Trusted --add-service=ssh
firewall-cmd --zone=Trusted --add-service=ssh --permanent
firewall-cmd --zone=Trusted --add-service=http 
firewall-cmd --zone=Trusted --add-service=https 
firewall-cmd --zone=Trusted --add-service=http --permanent
firewall-cmd --zone=Trusted --add-service=https --permanent
firewall-cmd --zone=FedoraServer --remove-service=ssh
firewall-cmd --zone=FedoraServer --remove-service=ssh --permanent  
# logged in a new terminal to verify.
# note: my actual home IP isn't .1.20 =)


November 9th, 2025
Upgraded my nanode from F41 to F43 today. Dumped the 4 old domains and switched to new ones.
I kept the pages from zpoc.soon.it and made them load for c0m.or-g.net instead. A few edits in valid_domains and a lot of cleanup of non-active pages (over 600 of them) from the pages table. A few edits on pages that had links to the other domain fixed it.

I did miss the tar -cvf of my webfiles somehow so i need to see where i left my various .ico files. Otherwise, the upgrade and domain switch went very very well with just a psql import of the db dump. My boundless table survived intact, although i think i'm missing the htmx.js file now...

--date--
--post