Jump to content

Krydos

Chief Executive Officer
  • Posts

    25,369
  • Joined

  • Last visited

  • Days Won

    909

Everything posted by Krydos

  1. DKIM, SPF, and DMARC have been set up for the domain palaciospoa.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.
  2. Can you login to SFTP now? Also it's possible that your SFTP password has gotten out of sync with your Plesk password so you can change the SFTP password through Plesk by going to Login > Continue to Plesk > Websites & Domains > [main domain] > Dashboard > Connection Info > System User Credentials > Edit Password
  3. WSGI control access has been enabled on the domain dmbsoft.helioho.st. To restart your Flask app and load new code changes in simply edit /home/dmbsoft.helioho.st/httpdocs/flask.wsgi. Adding a blank line, removing a blank line, adding a space, or removing a space are examples of editing the file. As long as the last modified timestamp changes it will clear the server cache. Let us know if you run into any issues.
  4. Just to give you an update, we do have access to the Microsoft points donations information, but it seems to take a really long time to get to us. The latest data we have are these donations from July 26th It says that disbursements are sent at the end of the month so I suspect the August donations will be sent soon.
  5. DKIM, SPF, and DMARC have been set up for the domain theopengamer.com. 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.
  6. DKIM, SPF, and DMARC have been set up for the domain freightnetworkplus.online. 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.
  7. The module flask-cors has been installed on Tommy's Python 3.12. You can see the current list of installed modules and their versions with this link https://krydos1.heliohost.org/pyinfo/info3.12.py
  8. Your subscription has been canceled and you won't be billed again. Thanks for using our VPS service.
  9. Your subscription has been canceled and you won't be billed again. Thanks for using our VPS service.
  10. We are happy to announce that we have now finished moving all of the accounts on our old Tommy server to the newly upgraded server, and will be shutting down the old server soon. If you use our nameservers, your DNS records have been updated to the new server for you and your account was moved with zero downtime, but if you use external DNS, such as Cloudflare, we can't update your records for you. You need to check your email and use the IP addresses that we emailed you on your external DNS provider. If you have been living under a rock, not reading any news posts, ignoring our emails, and haven't updated your DNS records yet, you may have noticed that your website just went offline. This is your final warning: The old Tommy is being retired. We will be deleting the old server in a couple days so make sure you check your account and let us know if anything is missing, didn't get transferred correctly, or if you have any other issues. Let us know if you need help with anything.
  11. Created. I believe it will be /home/dl5ark.heliohost.org/mybo.dl5ark.heliohost.org/ Yes, each subdomain can have a different PHP version.
  12. You can have up to 10 domains or subdomains on your account, and each one can have a different PHP version. For instance you could do blitz.dl5ark.heliohost.org, anotherproject.dl5ark.heliohost.org, etc
  13. Yep, I can confirm that GD imagettftext() function on Tommy's PHP 5.6 is broken, and I can't get it to even produce an error. I suspect it is Plesk's fault because we just use the package plesk-php56-gd.rpm and they probably made some mistake compiling it. Some options: We can report it to Plesk and see if they will fix it. We could uninstall the Plesk package, and compile GD ourself from source, but that seems like too much work and may break other things. We could use a version of PHP where GD actually works, such as 7.4, but that may not be an option if too much of the rest of the code requires 5.6. We could move your website to Lily where I think PHP 5.6 has GD and it actually works. We could move you to a VPS which start at $4 per month https://heliohost.org/vps/ You could use Image Magick instead of GD. Example code below: <?php // font size and colors $fontsize = 53; $width = 800; $height = 200; $bg = "#fbfbfb"; $fg = "#000000"; $text = "Hallo, Welt!"; // initialize the imagick stuff $image = new Imagick(); $draw = new ImagickDraw(); $pixel = new ImagickPixel($bg); // load font $draw->setFont("./DejaVuSansMono-Oblique.ttf"); $draw->setFontSize($fontsize); $draw->setFillColor($fg); // make background $image->newimage($width, $height, $pixel); // add text to background $image->annotateImage($draw, 100, 150, 0, $text); $image->setImageFormat("png"); header("Content-Type: image/png"); echo $image; Example using the above Image Magick code on PHP 5.6: Example using your GD code on PHP 7.4:
  14. Thanks for letting us know. If anyone else has any issues migrating to the new version of Perl we'll suggest this solution to them as well.
  15. Your subscription has been canceled, and you won't be billed again. Thanks for using our VPS service.
  16. I added these lines use File::Basename; use lib dirname (__FILE__); and it seems to work now. The old Tommy has Perl v5.16.3 and the new Tommy has Perl v5.32.1 so maybe there was some change between these versions. Let us know if there are any other issues.
  17. Would you like to have your forum username changed to match your hosting account? This makes it a little easier for us to help you because we don't have to spend as much time figuring out who you are.
  18. The account fdevillalobos is actually a suspended Johnny account but I figured out what you meant. I have added it to my todo list to make the move script copy over remote PostgreSQL access, but for now I manually copied everything over.
  19. Krydos

    Tommy Upgrade

    Exec() is disabled on shared hosting, Tommy, Johnny, and Morty. If you need exec() you'll need to get a VPS https://heliohost.org/vps/
  20. Krydos

    Tommy Upgrade

    You have to request remote access again for PostgreSQL database after being moved. If you want to be able to enable remote connections yourself you can use MariaDB instead. Remote access enabled. host=65.19.154.90 port=5432 username=fudobi_admin_strange dbname=fudobi_strange password=<set in Plesk>
  21. Krydos

    Tommy Upgrade

    Your account will be moved shortly.
  22. Krydos

    Tommy Upgrade

    You're on the new server now.
  23. Krydos

    Tommy Upgrade

    Good idea. It's been updated to include that information.
  24. The module mysqlclient 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
  25. We could always upgrade your VPS some more if it doesn't support running two copies of your site, but like I said as long as you password protect your development site it shouldn't cause too much load. A Wordpress site with zero visitors causes zero load. It's not like there is any constantly running processes that take up memory.
×
×
  • Create New...