Jump to content

Krydos

Chief Executive Officer
  • Posts

    24,148
  • Joined

  • Last visited

  • Days Won

    848

Everything posted by Krydos

  1. Try resetting your password once.
  2. 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?
  3. 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.
  4. In order to test your phpmyadmin I changed your password. Your new password has been manually tested, and emailed to your contact email address.
  5. 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?
  6. Are you saying that you asked permission of the rightful owners of these domains if you could borrow them?
  7. 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?
  8. Why do you steal other people's domains?
  9. Try creating your Stevie account now. Let us know if you get any other errors.
  10. 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.
  11. Explain yourself.
  12. 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.
  13. Hmmm. Ok try this. server type =imap server hostname =stevie.heliohost.org user name =admin@ashleyhales.co.uk port =143 connection security =starttls authentication method=normal password server type =smtp server hostname =stevie.heliohost.org username =admin@ashleyhales.co.uk port =25 connection security =starttls authentication method=normal password
  14. I don't see any account with the domain proaviator.com. What username did you pick?
  15. Your account has been unsuspended. Be sure to fix it quickly before more spam gets sent.
  16. You've been unblocked again.Can you connect now?
  17. Your account was created less than 5 hours ago. New accounts can show the queued page for up to 24 hours. Can you connect to cPanel without a proxy at http://cpanel.craigary.net/ ?
  18. Your site has been moved to an IP address that should be visible in China. You can find your new A record in the left information pane under the heading "shared IP address", or you can use ns1.heliohost.org and ns2.heliohost.org and the A record will be set automatically.
  19. The latest news can be found at Helionet, Facebook and Twitter.
  20. Not yet.
  21. I fixed the database error for you, but now you have a syntax error: http://miketten.tk/
  22. The way a denial of service attack works is by overloading the server with a large number of connections preventing any legitimate traffic from being able to connect. Sometimes when regular users have a large number of connections, in your case 41, the server suspects you of trying to DoS it and blocks you.
  23. Your site http://mkgamers.ml is visible now.
  24. Can you connect now?
×
×
  • Create New...