Jump to content

Krydos

Chief Executive Officer
  • Posts

    25,178
  • Joined

  • Last visited

  • Days Won

    900

Everything posted by Krydos

  1. The reason you can't get password reset emails is because you used an email address that is on your account. So, when it sends the email you can't access it since you can't log in.
  2. I fixed your database for you.
  3. Your account was created less than 24 hours ago. It's normal for sites to show errors or the queued page for up to 24 hours after account creation while things get set up.
  4. I still don't think you understand. You stole domains. Stealing is illegal. Illegal activity violates our ToS. Violating our ToS usually results in never getting your account unsuspended. Sometimes we unsuspend if users are truthful about everything, apologetic for what they did, understanding of why we had to suspend their account, and promise to never violate our ToS again. To date, you've done none of these things. I'm a little confused why you think you're ever getting your data back. Right now I'm just trying to figure out how to return all the stolen domains to the people who rightfully own them.
  5. What all domains on your account are stolen? I'm assuming indozona.tk is yours since the domain matches your username. Are the rest of them stolen?
  6. http://www.heliohost.org/home/signup/217
  7. Are you saying someone else has access to your account and they stole the domain?
  8. Did you ask Jim (Proaviator) if you could borrow his domain? http://www.helionet.org/index/topic/24021-need-to-be-deleted-from-johnny/
  9. You opened 70 connections to the server simultaneously and it thought you were trying to DoS it. Wow, I thought Stevie was really out of date. We currently run Apache 2.2.16, PHP 5.3.8, and MySQL 5.6.21 on Stevie server. We're setting up a new server named Tommy that will have more up to date versions than Stevie though so you can transfer your account once Tommy goes live. Tommy is currently running Apache 2.4.23, PHP 5.6.23, and MySQL 5.6.30, but those values may change before he's released.
  10. # DOS 70 connections - Wed Aug 3 11:29:59 2016 Can you connect now?
  11. I'm waiting for you to answer my last question.
  12. No problem.
  13. Your password has been manually reset, tested, and emailed to your contact address. Let us know if you're still unable to connect.
  14. Try resetting your password once.
  15. Brute force protection blocked you If you get your password wrong don't continue guessing or you'll get locked out. Can you connect now?
  16. If you need special permissions to open a lot of FTP connections your IP can be whitelisted. For instance one user has a weather monitoring device that uploads via FTP the current conditions once every 5 minutes which is 288 connections per day. Just let us know what you're using all those FTP connections for.
  17. In order to test your phpmyadmin I changed your password. Your new password has been manually tested, and emailed to your contact email address.
  18. What that means is you opened 201 separate FTP connections in a single day. We usually only see that high of numbers when a bot is trying to brute force someone's FTP account. Can you connect now?
  19. Are you saying that you asked permission of the rightful owners of these domains if you could borrow them?
  20. You're not borrowing. You're stealing. Since you seem to be having trouble grasping that concept let me show you the definition of stealing. Did you ask any of the people who own these domains if you could borrow them?
  21. Why do you steal other people's domains?
  22. Try creating your Stevie account now. Let us know if you get any other errors.
  23. Go to http://stevie.heliohost.org:2082/frontend/x3/sql/index.htmlUnder "create new database" type database name. Example: databaseNote the database name starts with your username and an underscrore: Example: vordar_databaseOn the same page scroll down to "mysql users" and create a new user. Example: userNote that the database user starts with your username and an underscore: Example: vordar_userOn the same page scroll down to "add user to database".Select the database you created in step 2, and the database user you created in step 4.Click "add" and on the next page check all the permissions your database user needs. If in doubt just select all permissions. (You can change this later.)Go to http://stevie.heliohost.org:2082/frontend/x3/sql/PhpMyAdmin.html and select your new database in the left navigation panel.Under the "create table" header enter "data" in the "name" box, "1" in "number of columns, and click go.In the name column type the name of your new column, and then click save. Example: columnIn the left navigation panel locate vordar->vordar_database->data->columns->column or whatever values you used.Click the "insert" tab along the top.In the value boxes enter some integer data like "1, 2" and click the bottom go button. Then click go again in the bottom right.Go to http://stevie.heliohost.org:2082/frontend/x3/filemanager/index.html?showhidden=1&dir=/public_htmlIn the top left click "new file" and select a filename that ends with .php Example: database.phpNote that the file is being created in /public_html this is the webroot and will show up when you go to your domain. Example: vordar.heliohost.orgClick "create new file" and locate the file you just created.Right click your new file and select "code edit".Copy/paste in the following code:<?php $db_host ="localhost"; $db_pass = "password"; // use a more secure password $db_data = "vordar_database"; // or whatever you created in step 2 $db_user = "vordar_user"; // or whatever you created in step 4 // connect to database $conn = new mysqli($db_host, $db_user, $db_pass, $db_data); if ($conn->connect_error) { die("Connection failed: ".$conn->connect_error); } // execute a select query $sql = "select count(*) from data"; $result = $conn->query($sql); $row = $result->fetch_assoc(); $count = $row['count(*)']; echo $count; Click "save changes" in the top right corner.Now to execute your code go to your domain in a browser, and click the filename from step 13. Example: vordar.heliohost.org/database.phpIf you did everything right your browser should say "2" because this how many rows we created in phpmyadmin.
  24. Explain yourself.
  25. Do you know anything about an account named indozona? Upon closer inspection it looks like we have a forum lurker who stole your domain while it was unaccounted for. I have removed the domain from his account, and suspended him. I manually created your account for you on Stevie, and sent you an email to your contact address with the username and a temporary password. Let us know if you can log in, or if you need help with anything else.
×
×
  • Create New...