General Information
All the information below should be of the admin account.
| Domain | hats.leohamel.com |
| Hosting Provider | On premises |
| Internal IP | 192.168.0.100 |
| Control Panel | Webmin + Virtualmin |
| Control Panel URL | https://hats.leohamel.com:10000/ |
| Control Panel Username | lhfjit |
| Server Admin Username | lhfjit |
| Website Engine | WordPress |
| Website Login URL | https://hats.leohamel.com/wp-admin/ |
Website Infrastructure
This is a website built on top of WordPress, which is run through Apache on Ubuntu Desktop 22.04.3 LTS. It connects directly to the database hosted on the same server. This website is hosted on premises and is configured to be accessible only within the network.
The control panel’s admin username & password is the same as the server’s username and password.
Custom File Modification
The following lines were added to /wp-content/themes/knowhow/search.php to accommodate the “Archived” status that Robin wanted. If for any reason this theme is updated (which it should not be), make sure to add this line back in.
...
<?php while (have_posts()) : the_post(); ?>
<?php if (get_post_status() === "archive") continue; ?>
...