-
Posts
24,855 -
Joined
-
Last visited
-
Days Won
885
Everything posted by Krydos
-
[Solved] Request For Second Account: Wolstech
Krydos replied to wolstech's topic in Customer Service
The queued page is shown when apache doesn't know which account the requested domain belongs to. It looks like you have your A record set correctly for the subdomain, but you still need to add the domain to your account. The only way to add a domain that you cannot change the nameservers for is by using this tool http://www.heliohost.org/home/support/scripts/domain to change your account's main domain. Once you change your main domain and wait 24 hours apache should know which account the requested domain belongs to and instead of showing the queued page it will show the contents of your public_html directory on your account. Let us know if you have any further problems adding this domain to your account. -
Since it appears as if no other Heliohost staff members would like to give you another chance I have moved your account to the Johnny server and unsuspended it. The reason you have been moved between servers is because the malware files that you keep getting on your account are causing high load and negatively affecting the other users located on Stevie. Perhaps if you can go several months on Johnny without getting any more malware or causing any other problems we can give you the ok to move your account back to Stevie and you can benefit from the increased uptime and stability that Stevie offers. I have also removed the malware files on your account. They were: /home/zodiaco/public_html/rednatura31.tk/wp-content/themes/Mentor/cache/external_37bb614aea48f68651a4c06998a2d4d4.php /home/zodiaco/public_html/rednatura31.tk/wp-content/themes/Mentor/cache/external_fd40ea2b1910b4f445362c6cbce65820.php /home/zodiaco/public_html/rednatura31.tk/wp-content/themes/Mentor/cache/external_1fcc38d353242be01810721334b46742.php /home/zodiaco/public_html/rednatura31.tk/wp-content/themes/Mentor/cache/external_6a6255b0dd5df120b3778e577dbad069.php /home/zodiaco/public_html/rednatura31.tk/wp-content/themes/Mentor/cache/external_29db131e8d529025e29d9c48fc7b3fb3.php You should now be able to log into your account at http://heliohost.org/ Let us know if you have any problems logging in, or if you have any further questions about preventing malware.
-
500 errors can be caused by a lot of things. The most common are Exceeding Process Limit The solution is to not run as many processes. Opening cpanel, connecting to FTP, checking mail, connecting to webdisk, etc all increase your process count, and if you exceed your limit php will show 500 errors since it cannot start a new php process. This sometimes affects only the webmaster since opening cPanel and FTP etc is common when you're editing your site, but normal users won't have these errors since they will only be accessing your website not all the other services. The process limit is higher on Johnny so for some websites the solution to 500 errors might be to switch servers. Syntax Error in .htaccess If you have a syntax error in one of your .htaccess files it can cause a 500 error. The easiest way to check if this is the case is to delete or rename your .htaccess files and see if the 500 error goes away. Incorrect Permissions If the script or the directory that the script is in doesn't have the correct permissions it can cause 500 errors too. If you're running a php script the file permission should be 644. If you're running a cgi script it should have 755 permissions. Your directories should have 755 or 750 permissions. Exceeding Time Limit If your script exceeds the time limit it can be killed by the system which will also result in a 500 error. The solution to this problem is to break your long executing scripts into multiple faster scripts that can call each other. For instance longscript.php always results in a 500 error because it exceeds the time limit, but if script1.php runs for a short time, and then calls script2.php which calls script3.php they can together execute the same code as longscript.php without exceeding the time limit and being killed. High Server Load If the server is currently experiencing high server load scripts can return a 500 error when they would normally work. This is more common on Johnny than Stevie since Johnny is more unstable, and accounts that cause high load on Stevie are suspended. There isn't really anything that can be done about high load 500 errors other than trying again later when the load is lower.
- 2 replies
-
- 1
-
-
- wordpress site error
- internal server error
-
(and 1 more)
Tagged with:
-
If you're trying to add a subdomain of a domain that is hosted elsewhere (you can't set the nameservers for the subdomain), or if your registrar is broken and they won't set the nameservers properly to ns1.heliohost.org and ns2.heliohost.org you can still add the domain to your Heliohost hosting. Use http://www.heliohost.org/home/support/scripts/domain to change your account's main domain to the domain that you are trying to add. Make sure that the domain in question has an A record that matches the shared IP address displayed when you log into your cPanel.
-
I'm going to assume that you got your issue resolved since the last login to the account in question was four hours ago. Marking as solved.
-
Sorry for the delay in getting this posted. This is my test file that connects to MySql from .aspx and it works fine for me. Default.aspx: <%@ Page Language="VB" %> <%@ Import Namespace = "System.Data" %> <%@ Import Namespace = "MySql.Data.MySqlClient" %> <script language="VB" runat="server"> Sub Page_Load(sender As Object, e As EventArgs) Dim myConnection As MySqlConnection Dim myDataAdapter As MySqlDataAdapter Dim myDataSet As DataSet Dim strSQL As String Dim iRecordCount As Integer myConnection = New MySqlConnection("server=johnny.heliohost.org; user id=username_database; password=********; database=username_database; pooling=false;") strSQL = "SELECT * FROM username_database.people;" myDataAdapter = New MySqlDataAdapter(strSQL, myConnection) myDataSet = New Dataset() myDataAdapter.Fill(myDataSet, "people") MySQLDataGrid.DataSource = myDataSet MySQLDataGrid.DataBind() End Sub </script> <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <title>ASP.NET MySQL Test</title> </head> <body> <div> <form runat="server"> <asp:DataGrid id="MySQLDataGrid" runat="server" /> </form> </div> </body> </html> web.config: <?xml version="1.0" encoding="UTF-8"?> <configuration> <system.web> <customErrors mode="Off"/> <compilation> <assemblies> <add assembly="*"/> </assemblies> </compilation> </system.web> </configuration> MySql.Data.dll: http://area51.heliohost.org/MySql.Data.dll.gz Test database: mysql> select * from people; +----+------------+-----------+ | id | first_name | last_name | +----+------------+-----------+ | 1 | Jack | Spratt | | 2 | Jill | McHill | | 3 | Joe | Schmoe | +----+------------+-----------+ 3 rows in set (0.02 sec)
-
[Solved] Python Update/module Addition Request On Johnny
Krydos replied to sq10prog's topic in Escalated Requests
This support request is being escalated to our root admin. -
It looks like http://cobraconsultants.com/ is all set up and ready to go now. If you're still seeing the queued page don't forget to clear your browser cache. Now you just need to upload your files or install your scripts to the public_html/cobraconsultants.com/ directory in your account.
-
Thanks for your reports regarding MySQL on Johnny. It looks like MySQL didn't restart normally after the reboot yesterday. I have manually started MySQL and now it appears to be running and restarting on it's own now. Let us know if you have any other issues with Johnny MySQL.
-
I'm a little unsure about what's going on with your account. Java was enabled on March 4th, and it worked. Then it stopped working sometime between March 4th and March 12th. I tinkered around with it a bit, and got it working again on March 14th. I deleted my test .jsp file and assumed everything would be fine from then on, but somehow between March 14th and March 22nd it got broke again. This time I completely disabled java on your account and waited 24 hours for all traces of it to be removed from the system. Then I readded java, and waited another 24 hours for everything to get set back up. I placed a test .jsp file on your account again as before, and as you can see http://deividlm.heliohost.org/ip.jsp it is working. This time I'm not going to remove the test file so you can have proof that it is working. Like I said before I'm a little unsure why java keeps breaking for you and only you, while it continues to work just fine for my account and all the other java-enabled accounts on the server. If it's something weird that you're doing to break it please stop, because I'm not going to keep fixing it for you over and over like this. If you have an idea of what is breaking it though please tell us so we can fix it or at least know why this keeps happening. As long as it doesn't break again you should be able to execute your .jsp files that you upload. If you would like to deploy a servlet please upload the .war file to /home/deividlm/ and let us know because it takes an admin to deploy it.
-
You obviously misunderstood the issue here. Shinryuu wasn't denying your request so that you would post five new topics regarding the same suspension in four different subforums; he was simply asking you what the point of unsuspending your account is if you so far appear to have taken zero measures to prevent this from happening again. Give us some sort of assurance that you will do your best to make sure this doesn't happen again or explain what you have already done, and then we can decide if it's worth it to unsuspend your account. For all we know you're the one uploading the malware on purpose, and throwing a temper tantrum by making a bunch of spam posts isn't helping your case.
-
tarinzix?
-
Are you sure on the username? usssphinx is 10 characters and the maximum number of characters a username can have is 8.
-
If anyone posts any specific settings that are needed for EyeOS to work properly, or error messages that EyeOS throws with the current settings I can take a look at whether they can be adjusted.
-
All that it takes to deploy .NET 3.5 .aspx files is to upload them to public_html directory on your account. All I see when I click your link is a 500 error which isn't very informative. The most common causes of this type of error are usually caused by .htaccess syntax error, file permissions errors, directory permission errors, process limit exceeding, script execution time exceeding, memory limit exceeding, etc. Since it can be caused by so many different sources it's best to eliminate as many variables as possible and start small with something that works, and then gradually add complication testing often to make sure any of your changes hasn't caused an error. Let us know if you need any further help troubleshooting your 500 error.
-
http://www.helionet.org/index/topic/15273-slow-stevie-performance/
-
Bitcoin.org might be a solution that would work for accepting payments from countries where paypal doesn't work. If anyone has any other suggestions of services that would allow users to transfer us money to purchase a dedicated IP please let us know and we will take a look at it. For now the Heliohost staff will discuss the pros and cons of and whether or not to create a bitcoin.org account.
-
The logs just show index.php causing the load.
-
Cobraconsultants.com still wasn't working right so I deleted it from the system completely and made sure all traces of it was gone. Then I created it for you as an addon domain on your account. It looks like everything is set up correctly now, and if you visit http://stevie.heliohost.org:2082/frontend/x3/addon/index.html you should be able to see it listed as an addon domain now. Give it another 24 hours from the time of this post and the domain should be working. Let us know if you have any other issues with this or any domains.
-
Your account was resuspended for failure to take care of the malware problem during your allotted 24 hour period. The offending files have been deleted, and your account has been manually unsuspended. If you still see the suspended page then you should try clearing your browsers cache.
-
It doesn't always work like that. Most CMS and forums just run through a very small number of files or just index.php with includes that load all of your plugins and themes and all of the other files that it needs to run. It's your website not ours, so you have to fix whatever problems you have. We just monitor how much load each account causes, and if the server as a whole begins to perform poorly the highest load account gets suspended to keep the thousands of other accounts that are not causing high load online. If the overall server load is low all the individual accounts can cause as much load as they want without fear of suspension. Anyways, since you asked here are the files that caused the most load on your account: index.php, posting.php, and viewtopic.php.
-
[Solved] Asking Permission To Have More Than One Account
Krydos replied to raykai's topic in Customer Service
Yes, it's possible. You could also offload some of your large files onto other unlimited storage services. What all is taking up the most space on your account? -
[Solved] Asking Permission To Have More Than One Account
Krydos replied to raykai's topic in Customer Service
You don't need multiple accounts to host multiple websites. Needing more disk space is not a valid reason to create multiple accounts. -
The first thing to try is to click this link http://stevie.heliohost.org:2082/frontend/x3/passwd/index.html to change your password, and make sure the checkbox labeled "Allow MySQL password change" is checked. Once your cpanel (and mysql) password has been changed try loading PhpMyAdmin again and it should work. Let us know if you're still having trouble getting PhpMyAdmin to work.