Jump to content

Krydos

Chief Executive Officer
  • Posts

    23,803
  • Joined

  • Last visited

  • Days Won

    828

Everything posted by Krydos

  1. Done. You should now be able to log in and your website should be working again.
  2. Your account was archived because you haven't logged in for quite a while. We have a limited amount of space on our servers, and occasionally we have to remove the unused accounts to make space for new users. To prevent your account from becoming archived again please remember to log in at https://www.heliohost.org/login/ at least once every 30 days. Unarchiving...
  3. Unblocked. It was because of failed IMAP logins so check your saved credentials in your mail client.
  4. I already said this on discord, but if you capitalize your filenames you have to capitalize them in the url too. tranpertgl.php is not equal to TranPertgl.php
  5. Please post the following information: Your cPanel usernameYour main domainThe server that you are onThe version of PHP you're usingThe memory that your software requires
  6. The way I've always done backups is I put the backup file on a server, create a random download link to it, and email the link to the file. Then once the file is downloaded I delete the backup. Checking my email would only result in a dead link because the file that it linked to has been deleted long ago.
  7. Done. You should now be able to log in and your website should be working again.
  8. Your account was archived because you haven't logged in for quite a while. We have a limited amount of space on our servers, and occasionally we have to remove the unused accounts to make space for new users. To prevent your account from becoming archived again please remember to log in at https://www.heliohost.org/login/ at least once every 30 days. Unarchiving...
  9. Please don't encourage people to use this piece of trash software.
  10. You had a lot of things going on that were wrong. Rather than try to fix them all I just started you over fresh. http://pystone.sopython.heliohost.org/ As is always a good idea when debugging and developing make small changes and test it frequently to make sure your updates aren't breaking it. Let us know if you have any questions.
  11. So, do you want your django app to exist at http://pystone.sopython.heliohost.org/ or http://pystone.sopython.heliohost.org/pyStone/ or somewhere else?
  12. That exact backup has been deleted for probably a year. Once you downloaded it it was your responsibility.
  13. Done. You should now be able to log in and your website should be working again.
  14. Your account was archived because you haven't logged in for quite a while. We have a limited amount of space on our servers, and occasionally we have to remove the unused accounts to make space for new users. To prevent your account from becoming archived again please remember to log in at https://www.heliohost.org/login/ at least once every 30 days. Unarchiving...
  15. I don't see anything called Hello1 and Hello2 on your account. Did you delete them already?
  16. You can make a backup of your account by clicking the backup button in cpanel.
  17. Unarchived. Your username is pizzan1 now.
  18. Done. You should now be able to log in and your website should start working within 2 hours.
  19. Your account was archived because you haven't logged in for quite a while. We have a limited amount of space on our servers, and occasionally we have to remove the unused accounts to make space for new users. To prevent your account from becoming archived again please remember to log in at https://www.heliohost.org/login/ at least once every 30 days. Unarchiving...
  20. As far as I know you can use any mysql connector version that you want. Yes, pretty much all deployed .war servlets connect successfully to mysql. Here is a simple .jsp example. It isn't even a deployed .war, just a file named index.jsp <%@ 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"%> <sql:setDataSource var="mysql_test" driver="com.mysql.jdbc.Driver" url="jdbc:mysql://localhost/krydos_test?serverTimezone=UTC" user="krydos_test" password="<removed>"/> <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> It's an old example so I'm using an old connector but it's working with mysql-connector-java-6.0.5.jar in /WEB-INF/lib/ You can download my exact version from http://krydos.heliohost.org/mysql.jsp/WEB-INF/lib/mysql-connector-java-6.0.5.jar if you want, or the newest version can be downloaded from https://dev.mysql.com/downloads/connector/j/ Keep in mind that if you're doing a simple .jsp example like mine the .jar files aren't loaded until Tomcat restarts. It restarts on its own every few days, or you can request a restart. If you do this all within a deployed .war you don't need to restart Tomcat, it loads everything up when it's deployed.
  21. It isn't consecutive wrong passwords. You can't reset your ip by logging in successfully. Getting blocked is based on how many failed login attempts an ip has over a period of time. The exact number of failed attempts, and the period of time should remain secret though so people can't set up a bruteforce bot that stays right outside the limits.
  22. [ERROR] 2019-03-25 01:50:17 :Context initialization failed org.springframework.beans.factory.BeanDefinitionStoreException: Unexpected exception parsing XML document from class path resource [spring-servlet.xml]; nested exception is java.lang.IllegalStateException: Context namespace element 'component-scan' and its parser class [org.springframework.context.annotation.ComponentScanBeanDefinitionParser] are only available on JDK 1.5 and higher According to https://stackoverflow.com/questions/23813369/spring-java-error-namespace-element-annotation-config-on-jdk-1-5-and-high you're probably using too old of a spring version for our server. Tommy is running Tomcat 9.0.12 and java 1.8.0_191. It will make deployment easier for you if you develop your application using those same versions on your home pc.
  23. It would have to be compatible with the rest of our hardware. For example, we have a hard drive that we've tried to install in at least three different servers, and none of them recognize it. After the successful gofundme we did last year we purchased a lot of hard drive space so we should be good for a while. We've been talking about doing a new gofundme to purchase another server sometime this year. Honestly though as nice as it would be to expand and get more hardware, we're struggling to even pay the monthly bills. We lose money nearly every month, and our savings account only has so much left in it to keep us afloat. When we run out of money to pay the monthly bills it doesn't matter how many hard drives or other hardware people have donated to us, we're going to have to go out of business. It's not as exciting as a new piece of hardware, but what we really need is just money so we can keep doing what we do.
×
×
  • Create New...