-
Posts
26446 -
Joined
-
Last visited
-
Days Won
944
Everything posted by Krydos
-
[HH#741629] Stan Engel shared "rvwarsWEB SITE" with you
Krydos replied to HelioHost's topic in Email Support
On most websites the css, js, and images don't change very often, but the index file may be dynamic and change each time the page is loaded. Browser automatically cache static resources to save bandwidth and speed up page loading times. If the browser has to download all of the static resources each time the page is refreshed it will slow things down. It's not a big deal to inline css in a simple, small website, but on a massive site where the css might be several MB it can start to add up fast. -
We'll make a news post once Morty is released.
-
[HH#741629] Stan Engel shared "rvwarsWEB SITE" with you
Krydos replied to HelioHost's topic in Email Support
I commented them out for you. Make sure you clear your browser cache otherwise your browser will likely continue showing the grey stripes because it doesn't download the .css file each time you load the page. -
[HH#741629] Stan Engel shared "rvwarsWEB SITE" with you
Krydos replied to HelioHost's topic in Email Support
The grey background on the text is being caused by these lines in the file /home/admin/web/rvwars.helioho.st/public_html/css/rvwars.css #news p { background-color:#eeeeee; } Let us know if you can't find those lines to remove them, and I can do it for you. -
[HH#741629] Stan Engel shared "rvwarsWEB SITE" with you
Krydos replied to HelioHost's topic in Email Support
You're doing great! Let us know if you need help with anything else. -
[HH#741629] Stan Engel shared "rvwarsWEB SITE" with you
Krydos replied to HelioHost's topic in Email Support
If you drag and drop the new index file it should prompt you whether to overwrite it or not and give you timestamps and size comparisons. Deleting the file on the server first works too. -
[HH#741629] Stan Engel shared "rvwarsWEB SITE" with you
Krydos replied to HelioHost's topic in Email Support
Ok, your password has been updated. Try logging in to SFTP now. Also for future reference, please don't email your password to us. We don't need your password to help you, and email is extremely insecure so your VPS may get hacked if you email plaintext passwords. -
[HH#741629] Stan Engel shared "rvwarsWEB SITE" with you
Krydos replied to HelioHost's topic in Email Support
Go to this page https://heliohost.org/password/ and submit a new password for the admin account. It won't automatically update your server though so let me know when you've submitted the new password, and then I can manually copy it over to your VPS. -
[HH#741629] Stan Engel shared "rvwarsWEB SITE" with you
Krydos replied to HelioHost's topic in Email Support
Yes, that is wrong. Like I said 22 hours ago Protocol: SFTP Host: 65.19.141.202 Port: 22 Logon Type: Normal User: admin Password: <same as logging in to Hestia> Default remote directory: /home/admin/web/rvwars.helioho.st/public_html Please note I said the "admin" user not "wa2uet". -
[HH#741629] Stan Engel shared "rvwarsWEB SITE" with you
Krydos replied to HelioHost's topic in Email Support
Are you sure you're uploading the file to /home/admin/web/rvwars.helioho.st/public_html ? -
[HH#741629] Stan Engel shared "rvwarsWEB SITE" with you
Krydos replied to HelioHost's topic in Email Support
The code editor I use is Visual Studio Code which is a free app you can download from https://code.visualstudio.com/ It can help with editing html and has color highlighting, but you can use any editor that you like. -
[HH#741629] Stan Engel shared "rvwarsWEB SITE" with you
Krydos replied to HelioHost's topic in Email Support
If you'd rather edit your site with your web browser, you can do so by logging in at https://wa2uetwx.heliohost.us:8083/ Username: admin Password: <you picked the password> Either SFTP or Hestia will work. So whatever is easier for you. -
[HH#741629] Stan Engel shared "rvwarsWEB SITE" with you
Krydos replied to HelioHost's topic in Email Support
Login with SFTP Protocol: SFTP Host: 65.19.141.202 Port: 22 Logon Type: Normal User: admin Password: <same as logging in to Hestia> Default remote directory: /home/admin/web/rvwars.helioho.st/public_html -
[HH#741629] Stan Engel shared "rvwarsWEB SITE" with you
Krydos replied to HelioHost's topic in Email Support
Alright, how does this look? https://rvwars.helioho.st/ -
[HH#741629] Stan Engel shared "rvwarsWEB SITE" with you
Krydos replied to HelioHost's topic in Email Support
Yes, it looks like I can download the files for the website. -
[HH#741629] Stan Engel shared "rvwarsWEB SITE" with you
Krydos replied to HelioHost's topic in Email Support
Do you have a domain for this website already, or would you like a free domain such as rvwars.helioho.st? -
We generally don't install beta or dev versions since they are usually quite buggy and unstable. I didn't install the "wrong" version, I just installed the latest stable version like we always do, and exactly as I intended to do. Sometimes when people ask for ancient versions of things we do the same thing and install the latest stable version instead. It's highly unlikely anyone other than you will use this itchat-uos so it probably won't hurt to have an unstable, development version of it installed.
-
The module itchat-uos has been installed on Tommy's Python 3.12. You can see the current list of installed modules at https://krydos1.heliohost.org/pyinfo/info3.12.py
-
The problem is .well-known has to be accessible via http. # curl "http://borbach.com/.well-known/acme-challenge/ysITPUa8hTIqNhE7FjrKF9WjF0QDi4AUgdjhK5ioL3U" <html> <head><title>301 Moved Permanently</title></head> <body> <center><h1>301 Moved Permanently</h1></center> <hr><center>nginx</center> </body> </html> As you can see requests for http get redirected to https so SSL verification will always fail. I disabled redirection to https and now it returns the contents of the verification file instead of redirecting to https. # curl "http://borbach.com/.well-known/acme-challenge/ysITPUa8hTIqNhE7FjrKF9WjF0QDi4AUgdjhK5ioL3U" ysITPUa8hTIqNhE7FjrKF9WjF0QDi4AUgdjhK5ioL3U.JYseh45lQBxj41K6qwq7KQASWpf6M7NBo1lNHke015E Here is the recommended way to redirect to https, while making an exception for .well-known to be accessed via http RewriteEngine On RewriteCond %{HTTPS} !=on RewriteCond %{THE_REQUEST} !/.well-known/(.*)$ [NC] RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] I added the above code to your .htaccess and I reissued Let's Encrypt via Plesk for you and now everything is working as expected. https://www.sslshopper.com/ssl-checker.html#hostname=borbach.com
-
DKIM, SPF, and DMARC have been set up for the domain a0795683865.helioho.st. We recommend sending a test email to https://www.mail-tester.com/ to make sure that everything is set up correctly. If you get less than a 10/10 score please post a link to the full report so we can help you fix any other issues that there may be.
-
[Solved] remote access to postgresql request
Krydos replied to joyless's topic in Escalated Requests
When I first glanced at this I read joyless trout. Haha. Remote access enabled. host=65.19.154.90 port=5432 username=joyless_user dbname=joyless_tryout password=<set in Plesk> -
Usernames that we know of who are in this class: devlab, romrarito, aelreje, dtfj03, meglopez, duckworth, vinzj Are there any others?
-
Since so many of these students are using personal gmail.com addresses they are still getting suspended by our multi account detection system. Can we please get this organized so they are all using studentname@usls.edu.ph email addresses or something like that so we can identify them prior to getting suspended, and then requesting to be added to the class exemption list?
-
I thought all of the students in this class were going to be using username@usls.edu.ph email addresses. I also thought all of the students accounts were going to be listed in this thread We are extremely happy to provide accounts to help this class learn about hosting in the real world, but unless someone actually gets this organized you are all going to continue getting suspended since you're all using the same computers and IP addresses.
-
[Solved] Python3 Dependencies Needed for Tommy
Krydos replied to kkaviani's topic in Escalated Requests
The module psycopg2 has been installed on Tommy's Python 3.12. You can see the current list of installed modules at https://krydos1.heliohost.org/pyinfo/info3.12.py
