Jump to content

Krydos

Chief Executive Officer
  • Posts

    25,185
  • Joined

  • Last visited

  • Days Won

    900

Everything posted by Krydos

  1. The easiest way to set up cloudflare is to use the cloudflare plugin we have in your cpanel https://tommy.heliohost.org:2083/frontend/paper_lantern/cloudflare/index.live.php As far as whether you should use cloudflare for each and every cname, that's up to, and what your purpose for using cloudflare is. If you're just trying to speed up your site a bit then all of those cnames don't really matter. If you expect your site to get targetted by DDoS attacks, then first of all maybe you should host your site somewhere else so your account doesn't cause downtime for the rest of our users, but yeah you should probably run ALL of your subdomains and cnames and everything through cloudflare so your attackers can't find the originating server, but if you don't expect all of that to happen then it's probably overkill. Regarding the forced https I would just use .htaccess myself. I'm not familiar with cloudflare forced ssl settings, but rewrite rules are pretty straight forward. Just put this in your .htaccess file RewriteEngine On RewriteCond %{HTTPS} !=on RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
  2. A PM has been sent with the link to download your databases.
  3. Deployed http://academicmanager.heliohost.org/AcademicManagerTest/
  4. I can backup the database only.
  5. That link works for me. https://tommy.heliohost.org:2083/frontend/paper_lantern/webmaillogin.html leads to https://tommy.heliohost.org:2096/webmail/paper_lantern/index.html?login=1&post_login=
  6. Don't worry about it. By making this post you just let us know that yet another user is interested in this feature, and thereby moving it as a higher priority.
  7. See http://www.helionet.org/index/topic/27636-solved-lets-encrypt-support-auto-ssl/ and http://www.helionet.org/index/topic/26914-ssh-on-tommy/?p=124952 In order to automatically renew Let's Encrypt a custom Heliohost plugin is going to need to be written which is a considerable undertaking, but it is in the works. For now just update your Let's Encrypt certificates manually.
  8. Dedicated IP granted.
  9. Go to https://tommy.heliohost.org:2083/frontend/paper_lantern/sql/managehost.html and enter the symbol % to allow all IP addresses to connect to your databases remotely. That way each time your dynamic IP changes you'll still be able to connect.
  10. The goal is to get Johnny to open registrations 24 hours a day, but we're scaling it up slowly to make sure he can handle the load. The number of accounts allowed to be created is based on the load.
  11. Deployed. http://academicmanager.heliohost.org/AcademicManager/
  12. Why does it matter? It changes (increases lately) often.
  13. You're the reason Tommy got listed in the CBL. See http://www.helionet.org/index/topic/27727-tommy-is-blacklisted/
  14. https://www.timeanddate.com/worldclock/converter.html
  15. I suspended the account that was causing the issue. That's the only thing that can be done. Ah, nevermind I checked again and it said "We can tell you fixed the problem" and it has a delist link now.
  16. This one is working too now that I restarted apache.
  17. There you go https://itech.heliohost.org/
  18. <%@ page import="java.io.*,java.util.*,java.sql.*"%> <%@ page import="javax.servlet.http.*,javax.servlet.*" %> <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> <%@ taglib uri="http://java.sun.com/jsp/jstl/sql" prefix="sql"%> <!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> <title>JSP MySQL Test</title> </head> <body> <sql:setDataSource var="mysql_test" driver="com.mysql.jdbc.Driver" url="jdbc:mysql://localhost/username_test?serverTimezone=UTC" user="username_test" password="bestpasswordever"/> <sql:query dataSource="${mysql_test}" var="result"> SELECT * from java; </sql:query> <c:forEach var="row" items="${result.rows}"> <c:out value="${row.data}"/> </c:forEach> </body> </html> Then download https://krydos.heliohost.org/jars/jstl-1.2.jar and https://krydos.heliohost.org/jars/mysql-connector-java-6.0.5.jar and put them in your WEB-INF/lib directory Working example: https://krydos.heliohost.org/mysql.jsp It doesn't look like anyone has tried that yet. Let us all know how it goes and the next person will know.
  19. It's working now. Apache needed to be restarted for it to work though.
  20. The one and only report I have for Tommy is from February. Johnny has had quite a few reports lately though.
  21. Krydos

    404 Problem

    You can use the cloudflare plugin in cpanel. It shouldn't give any errors.
  22. I restarted the firewall on Tommy and it seems to be working now.
  23. Have you tried resetting your password? https://www.heliohost.org/reset/
  24. Deployed http://gabyyeg2.heliohost.org/spanishServer/
  25. Phpmyadmin on Tommy might be about as fast as you're going to get. The problem here is mainly that phpmyadmin is very poorly designed. The problem is that get_images.js.php is really slow. Without editing the source code there isn't much I'm going to be able to do about it either. Personally I just do everything on the command line with remote mysql mysql --host=65.19.143.6 --user=krydos -p Another thing you could do is install a faster php db management script on your account. Softaculous already has Adminer which is supposed to be a lot faster than phpmyadmin https://tommy.heliohost.org:2083/frontend/paper_lantern/softaculous/index.live.php?act=software&soft=280
×
×
  • Create New...