-
Posts
24,202 -
Joined
-
Last visited
-
Days Won
855
Everything posted by Krydos
-
You can make a backup of your account by clicking the backup button in cpanel.
-
Remote access enabled.
-
Unarchived. Your username is pizzan1 now.
-
[Solved] request to restore archived account
Krydos replied to david1p's topic in Escalated Requests
Done. You should now be able to log in and your website should start working within 2 hours. -
[Solved] request to restore archived account
Krydos replied to david1p's topic in Escalated Requests
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... -
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.
-
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.
-
[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.
-
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.
-
jdbc:mysql://127.0.0.1:3306/joomleex_db?max-connections=1 https://stackoverflow.com/a/2225275/2336864
-
Likely when the .war was refusing to deploy due to errors is when you had it the closest. I've seen a lot of .wars refuse to deploy because java doesn't play nice on a multi-user system and for whatever reason it tries to open 100 mysql connections during deployment. Obviously this is going to fail because you're on a server with other users than just you. If that is why it was failing to deploy all you would have needed to do was limit the number of simultaneous connections to something sane like 6, or even better 1. This is all just guesses without any actual evidence though so who knows what the actual reason was.
-
Unblocked. If you login at https://www.heliohost.org/login/ that won't happen again.
-
addon domain with Google Domains primary domain
Krydos replied to helioma's topic in Customer Service
You either need to use our nameservers for a few minutes, and then switch back after you add the domain in cpanel, or if you can't (or refuse to) use our nameservers you'll need to change your main domain. -
You're on Tommy now. If you see a 404 error or a Johnny queued page please clear your browser cache and flush your os dns records. Thanks for the donation. We really appreciate it.
-
[Solved] Lost packets / poor connection from China
Krydos replied to liuzxdp's topic in Escalated Requests
Ping statistics for 65.19.143.6: Packets: Sent = 3372, Received = 3372, Lost = 0 (0% loss), Approximate round trip times in milli-seconds: Minimum = 62ms, Maximum = 316ms, Average = 71ms I'm thinking the packet loss you're seeing has something to do with your internet connection. I'm 2500 km from the servers too so it's not like they're in my backyard either. Some other people can test this too if they want. Just type ping 65.19.143.6 -t on windows command line, and then press ctrl-c to see the final report when you get bored of letting it run. -
[Solved] Any .htaccess rewrite will causes error 403
Krydos replied to yky123's topic in Customer Service
Does .htaccess rewrites work now? -
Looks like it worked https://www.sslshopper.com/ssl-checker.html#hostname=denied.gr It only covers denied.gr and www.denied.gr though. Will that work for you?
-
[Solved] Your account has been archived due to inactivity
Krydos replied to naser202's topic in Suspended and Queued Accounts
Looks like wolstech forgot to post the finished message. I tested this account and it looks like it unarchived fine. -
Moving...
-
Backup heliohost account to a cloud storage.
Krydos replied to DmC's topic in Website Management and Coding
Here is an example of how to set up an automated backup system on HelioHost to email your backups. https://wiki.helionet.org/Running_Auto_Backups -
It should be working again now. Thanks for noticing.
-
A separate IP for Chinese users is unnecessary at this time because none of our IPs are blocked in China. If the user wants to purchase a dedicated IP for $12 per year they're welcome to.
-
Is it working now?
-
Try deleting the wordpress and installing it again without any extensions or themes. If it works install your extensions and themes one at a time to make sure each work.