-
Posts
26471 -
Joined
-
Last visited
-
Days Won
945
Everything posted by Krydos
-
Here are the instructions for moving your account https://wiki.helionet.org/Moving_your_account Ricky and Tommy are both full for the next 3.5 hours. Free Tommy signups usually fill in a few seconds. Ricky signups have been staying open 1-2 hours. Also, if you're a donor https://www.heliohost.org/donate/ just let us know your transaction ID and an admin can move your account to Tommy even if the server is full for the day.
-
What is your username? Neither of the servers should be estimating an install in July. EDIT: Nevermind, you probably mean March 7th, not July 3rd.
-
In order to reuse a username you have to delete the hosting account AND the forum account. You just deleted the hosting account, but as long as the forum account exists you can't choose that username. I have deleted the forum account mfahmiak for you. I have sent you another Tommy invitation. If you actually use the invitation link this time you won't need to pick a server because the special link already has the Tommy server selected.
-
No, shared hosting plans do not include the ability to run shell commands. VPS include ssh and root access so you can run any shell commands you want.
-
Have you read https://wiki.helionet.org/Django ? You run startproject on your home computer and then upload the project. If you can't run these commands and create your project on your own computer you will need a vps https://www.heliohost.org/vps/ in order to have ssh access to run the commands you're trying to do.
-
My guess is that apache has to read the file first in order to pass it to php. Apache runs as the user nobody so it needs other readable permissions to even see the php script. Then once the php script is passed to php it is executed as your userid. I suspect if you ran a cronjob on a php script with 640 permissions it would work.
-
I have resent your invitation.
-
What is your transaction ID?
-
Your site https://andrews-giveaways.tk/ is still working for me.
-
Ricky is second best as far as uptime goes.
-
Done. You should now be able to log in and your website should be working again.
-
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...
-
See https://www.helionet.org/index/topic/35190-hh191578-fwd-php-settings/?p=156428
-
[HH#485286] VPS issue - Failed WHM/CPanel install please reset OS
Krydos replied to HelioHost's topic in Email Support
Closed. -
See https://www.helionet.org/index/topic/35200-hh429656-sql-max-connection-reached/?p=156446
-
An update on what?
-
[HH#935314] For Getting permission to having 3 account
Krydos replied to HelioHost's topic in Email Support
Since we only allow one account per person we will need to see a government issued ID for both you and your brother in order for both of you to have an account. You can host as many domains as you want on one account so there really isn't a reason to have more than one account. -
Ricky is up currently, and has 99.42% uptime over the last week. You can check the uptime status at http://heliohost.grd.net.pl/monitor/ If Ricky isn't up as much as you need our fastest server with the best uptime is Tommy.
-
What is your username, or main domain?
-
The max_user_connections error is in place to prevent one account from hogging the entire mysql server, and preventing everyone else from being able to access it. We recommend making sure you're closing your mysql connections immediately after you're done using them. Some languages, most notably Java, try to always use persistent connections which quickly results in a lot of those max_user_connections errors. Another thing you can do is write your code to detect max_user_connections errors and automatically try the connection again after a second. This helps hide the error from the end user by having the page take a little longer to load instead of just ending immediately with an error. Information_schema is the database where the information about all the other databases is kept, for example names of a database or a table, the data type of columns, access privileges, etc. It is a built-in virtual database with the sole purpose of providing information about the database system itself. The MySQL server automatically populates the tables in the information_schema. The important thing to remember about the information_schema database is that you can query it, but you cannot change its structure or modify its data. Source: https://www.siteground.com/kb/what_is_the_information_schema_database/ Over the past week your account has only transferred 258 MB of data. That is a pretty standard amount for a small website. This isn't something to be worried about. We offer unlimited bandwidth anyways, and have accounts that consistently transfer more than 100 GB per week.
