Jump to content

Krydos

Chief Executive Officer
  • Posts

    24,853
  • Joined

  • Last visited

  • Days Won

    885

Everything posted by Krydos

  1. So the first time a particular client/account connects the database stores the start timestamp, and then each time they connect it checks the difference between now() and the registration date to see if it exceeds their license period? Does the on or off bit need to update once a day or more often?
  2. What kind of event are you trying to schedule? Is it something that runs once a day or something?
  3. What domain are you referring to? Posting some actual information instead of obscenities would be helpful.
  4. The database flm_dds1 should now be accessible by the potgresql user flm_postgres from any IP. Let us know if you still can't connect.
  5. Aspx is working on Johnny for me: <%@ Page Language="C#" %> <% HelloWorldLabel.Text = "ASP.NET is working."; %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> </head> <body> <form id="form1" runat="server"> <div> <asp:Label runat="server" id="HelloWorldLabel"></asp:Label> </div> </form> </body> </html> http://krydos2.heliohost.org/test.aspx
  6. Any domain that you add to Johnny can take up to 24 hours to start working, and in the meantime will show the queued page.
  7. From what I understand flask is used primarily on home computers where you might not have access to a mature tested apache server to test your python web scripts in a fully python environment. As soon as someone explains why they need flask to do something that django/apache cgi can't already do I'll be listening. Apache configuration can be daunting and complex. I get it. I'm the one that configures it, but the main advantage to flask is being able to run a janky webserver super easily by simply running the command ./runserver, but you really don't need that if you have a real http/https server.
  8. /home/kamu/public_html/fb.php has been deleted and your account has been unsuspended.
  9. If you want any IP to connect to the database then put a % there instead of the IP.
  10. The script that was causing heavy load is /home/kamu/public_html/fb.php Which appears to be a facebook bot liking script.
  11. Tommy's smtp certificate is fine https://www.sslshopper.com/ssl-checker.html#hostname=tommy.heliohost.org:465 mail.abdu.io doesn't have an ssl certificate installed https://www.sslshopper.com/ssl-checker.html#hostname=mail.abdu.io See how it says nossl.heliohost.org? Go to https://mail.abdu.io/ and approve the incorrect certificate and there are instructions on how to install an ssl certificate.
  12. It could be that you don't have reverse dns set up on your domain. Some email servers, most notably AOL, refuse all email from any domains that don't have a valid ptr record. It could also be that the inbox that you're sending to has a filter that any address that isn't in their contact list gets sent to spam. Since you use cloudflare you won't be able to use mail.abdu.io because cloudflare isn't proxying your mail connections correctly. You can either change the cloudflare settings or just use tommy.heliohost.org as your smtp/imap domain.
  13. Probably before since it's an apache module. Test it out and let us know.
  14. When you include a php script into another php script as far as the server is concerned it just copy/pastes the code from the included file into the spot where the include/require command is and run the script with the permissions of the called php script. So what matter here is that the read flag was set. If you were to curl to another php script or use something silly like exec("script.php") then the permissions of that script would matter. Suphp cares a lot about permissions and if they're a little off it just shuts down with a 500 error.
  15. 428.74 MB is the size of all of your databases summed.
  16. The wait on Tommy for java is only a few hours.
  17. http://lillianday.com/thething.php works for me.
  18. Nice googling skills. I was looking for that first link exactly. All I found was an EA3 module. I might be able to make it work without breaking things too bad if that link works. Alright, is mod_cloudflare working?
  19. Well, I looked into it and it looks like it's going to be a massive pain to install and will likely break things due to easyapache. It's probably not worth the potential for downtime that it could cause on Tommy.
  20. Here's an absolutely amazing free tool I found while trying to figure out why official Heliohost emails were ending up in spam boxes so often: https://www.mail-tester.com/ They only allow 4 free tests per day though so use them wisely. I've actually been in contact with them for the purpose of making their tool even more accurate, and they thanked me for my changes. Haha. If the tool reports any problems let us know and we can help walk you through getting them fixed.
  21. Yeah, it can be done. http://www.dnsstuff.com/tools#reverseDns|type=ipv4&&value=66.220.18.186
  22. Why not just look at the log files on cloudflare's servers?
  23. I.... don't understand. How about this? 14 lines of php/html <?php if (isset($_FILES['bmpimage'])) { move_uploaded_file($_FILES['bmpimage']['tmp_name'], "temp.bmp"); $image = new Imagick(); $image->readImage("temp.bmp"); $image->setImageFormat("jpg"); $image->writeImage("temp.jpeg"); echo "<img src='temp.jpeg'>"; } else { ?> <form action="convert.php" method="post" enctype="multipart/form-data"> <input type="file" name="bmpimage"> <input type="submit" value="Convert to Jpeg" name="submit"> </form> <?php } http://krydos.heliohost.org/70/convert.php
  24. Deployed. http://brassatom.heliohost.org/SpringClient/
  25. root@johnny [~]# ./deploy_java jayam SmartClubWeb User jayam found. Unable to find file: SmartClubWeb.war Usage: deploy_java <username> <.war file> Make sure you put your .war in /home/jayam/file.war like it explains in the wiki. Deployed. http://smartclub.heliohost.org/SmartClubWeb/
×
×
  • Create New...