-
Posts
17,711 -
Joined
-
Last visited
-
Days Won
661
Everything posted by wolstech
-
There is no way for a user to self-unblock. You have to ask one of us to do it.
-
I'm confused because not only are you active, your account isn't even on that server. Escalating.
-
Unblocked. It was indeed for too many failed cPanel logins.
-
[Solved] Close The Connections For Luigi123_Sb
wolstech replied to Luigi123's topic in Escalated Requests
If the server is broken, it'll just eat up the additional ones and leave them open too. Krydos might be willing to try increasing it, but it wont actually fix the problem (properly made software will close unused connections when done with them), it'd just delay or hide the problem. -
[Solved] Close The Connections For Luigi123_Sb
wolstech replied to Luigi123's topic in Escalated Requests
The game server is broken, so your best bet is to talk to whoever makes/runs the game server software that's running at the IP Krydos posted, and ask why it doesn't close its SQL connections like it should. It's likely either a bug or poor design, especially since the connections sit there open with absolutely no usage. -
The heliohost.org login gives others trouble too sometimes. Use https://tommy.heliohost.org:2083/ instead.
-
Free Tommy registrations open at midnight UTC every night. You can get an account for free then. Be sure to delete your existing account first. Also, if you want to reuse the username, one of us has to rename your forum account for you to make it available.
-
Johnny only supports 5.6. You need to move to Tommy if you need 7.1.
-
What link are you using to log in?
-
[Solved] Close The Connections For Luigi123_Sb
wolstech replied to Luigi123's topic in Escalated Requests
Seeing Krydos said there wasn't any open after you stopped the game server, the game server itself is likely to blame. The connections probably reopened when you relaunched the game server. Krydos will have to confirm what he sees with the game server running again, but I suspect the game server is either buggy, broken, or poorly designed and is not closing them after use as it should...your next step would probably be to troubleshoot/update/replace the game server software. -
This support request is being escalated to our root admin.
-
I assume you mean sudhana1, since sudhana was a Stevie account that's been gone for 7 months. That account is not suspended. If you're seeing a queued or suspended page, please clear your cache.
-
He has to be on paper lantern, we don't have x3 anymore. The parked domains button is now labeled "Aliases."
-
Unblocked. It may take a few minutes to start working again.
-
Your forgot to change the table name in my example: You need to change "table" to your table name. The table is blank because the mysqli_fetch_assoc() failed. The mysqli_fetch_assoc() failed and produced those errors because the mysqli_query() failed. The mysqli_query() likely failed because of two reasons: The connection isn't open (I don't see where you opened one in the view_paginated.php), and the query also tried to select from a non-existent table called 'table'. A lack of error checking code means you have no way of seeing the error message the mysqli_query() generates when it fails. The easiest way to check for the query failing is to put an if statement after mysqli_query() to check the value that was returned. If the returned value is false instead of a result, it failed...you can then mysqli_error() to return a string saying what the error was. $result = mysqli_query($connection,"Whatever my query is"); //Add the below if statement //This makes your script show the SQL error and stop running if the query fails. Put it after each mysqli_query() line, and be sure to change $result to whatever //variable your mysqli_query() puts its result in. if (!$result) { die(mysqli_error($conn)); }
-
Looks good now. I don't see the forum with the illegal content anymore. Thank you for correcting this.
-
The account mahdi199 has been unsuspended. Please remove the warez within 24 hours of this post. Also, be aware that since you're on Johnny, it sometimes takes up to 24 hours for the website become visible again after being unsuspended.
-
That's a great way to help us. Advertising makes up the majority of our revenue each month (to get an idea, we've made roughly $397 on ads this month, compared to about $80 in donations) so disabling an adblocker is a significant contribution in its own right. Thank you for your contribution
-
Johnny is infamous for SSL installation issues due to his slow performance/overloading. Krydos might be able to get this fixed for you, but my recommendation is to move to Tommy. Tommy is a lot faster and provides AutoSSL, which means every domain automatically gets an SSL certificate without doing anything at all. Even better, it also renews itself when needed. I'll escalate this for you, but if you want to move to Tommy instead, let me know and I'll close it.
-
Doesn't matter who posts or publishes it. It's still illegal in the USA where we are based, and therefore is not allowed here. I'm willing to unsuspend you, but you will need to remove that forum and any references to illegal software within 24 hours. Do you want to do this?
-
You're suspended for copyright infringement. We do not allow the hosting of warez, links to warez, or tools/resources to obtain warez.
-
This support request is being escalated to our root admin.