Jump to content

wolstech

Chief Risk Officer
  • Posts

    19183
  • Joined

  • Last visited

  • Days Won

    759

Everything posted by wolstech

  1. We cannot manage the domain for you since we're not a registrar. We can only run your content on your domain once the domain is registered. The registrar needs the transfer code to accept your domain. As I said earlier, we recommend Namecheap for that. Then you need a hosting company, which is what we are. Once Namecheap or another registrar transfers your domain, you specify our nameservers on Namecheap's site, then your domain will work with our service. It sounds like you want a single company that does both domain registration and the hosting. We do not provide such a service.
  2. Yes that company could be giving you trouble intentionally, especially if they sell a competing product. I've seen one other company that did the same thing, the user ended up transferring his domain so he could host with us. We typically recommend Namecheap for domain registrations: https://www.namecheap.com/?aff=102467 They support .de domains, so you should be able to transfer your existing domain to them.
  3. wolstech

    Last I was told, there is no cPanel plugin for Lets Encrypt, only a WHM plugin. There's a major difference. A WHM plugin is managed by root admins, and is global to everybody on the server. The WHM plugin issues a certificate for every single account and domain on the server. It has a stupidly low limit of I believe 20 certs a week that we'd go over in a single day...we have way too many new accounts per day for it. In addition, SSL adds extra load to our (and LE's, for issuing the certs) servers, and many domains hosted here probably wouldn't use SSL even if we made it standard on all accounts. As of right now, due to the lack of available software and LE's restrictions, there is no way for normal users to properly automate Lets Encrypt on our service. You can however manually generate a certificate for your domain every 90 days and install it. See this guide for that: http://wiki.helionet.org/Installing_an_SSL_Certificate_with_ZeroSSL
  4. The domain wildsidedivers.tk is correct already: http://bybyron.net/php/tools/dns_records.php?domain=wildsidedivers.tk&rec=NS Have you tried adding it? The domain iot-sa.tk is incorrectly configured though. You need to select Custom DNS and enter the nameservers ns1.heliohost.org and ns2.heliohost.org. Your domain's NS records: http://bybyron.net/php/tools/dns_records.php?domain=iot-sa.tk&rec=NS (We do not support using an A record with Tommy's IP address, which is what it appears you've done).
  5. That's partially correct. A domain is just a pointer to a web server. We cannot register the domain (the actual name) for you since we're not a registrar (the company you paid for the domain should be a registrar), but we can provide the web server that the domain gets pointed to. The fact that they're unable to set nameservers for you or give you instructions is very odd since it's a common process and request for registrars (EVERY domain they sell needs this done as part of setup). The domain is showing as ready on our end, so all the registrar needs to do is add the two records that point your domain to our nameservers and it would work with our service. Did they give you a reason why they can't configure it? Also, what company did you purchase the domain from? (Normally I can look this up, but your registrar doesn't seem to provide the required data...).
  6. That's actually not bad...especially for the free price. Here's an example of a PHP mail package that should work with it: https://github.com/PHPMailer/PHPMailer/ They have an example for doing SMTP with it right in the readme.
  7. All Stevie and Johnny domains should have already been released. You should just be able to add them. Is there an error you're getting?
  8. You can't use the pear mail() because we don't support pear. That error is normal. If you really want to use an external mail server, you should download any of the large number of smtp classes available for PHP that implement the protocol via sockets and use that. Is there a reason you can't use our mail service though (you're the only user we have that has done this)?
  9. Last I checked, we didn't support PEAR. I'll escalate this because of your odd mail configuration...as far as I'm aware, you're the only one who's trying to use an external mail server for their domain's email.
  10. Our server prioritizes delivering mail locally when possible. If mail is sent to a domain hosted here, it never leaves our server by design. I'm not sure if you can change this...Krydos or Byron would know.
  11. To add to krydos, the archive.org link he posted also has the site's contact page available. It can be seen in the left side bar of the archived site.
  12. Your registrar (the company you bought the domain from) should have a place where you can set the nameservers for your domains. Did you have to set a password of some sort when you purchased the domain? If so, you probably can log into a customer area on their website and set them. If you can't figure it out, contact their support and ask them how to set the nameservers to ns1.heliohost.org and ns2.heliohost.org. Many will even do it for you if you ask. All registrars are capable of setting nameservers since every web hosting company requires this same process to use your domain with the hosting company.
  13. You're trying to host a single subdomain of a domain that's hosted elsewhere...cPanel's official answer is that this is not supported. However, we can make it work. You need to use the subdomain in question as your main domain. If you do this, http://rk4.heliohost.org will no longer function. You can't have both. You should be able to change your main domain yourself by signing into www.heliohost.org (note that the option for this is NOT in cPanel, but in the "Heliohost tools" section). If you have trouble, let me know and I can change it for you.
  14. 1. Midnight UTC every day. 2. You can still delete your account, but you need to sign into www.heliohost.org to do so. The old one on the classic site is no longer supported. Please note that if you're trying to delete an old Stevie or Johnny account, they've already been deleted since the servers crashed. 3. It's still supported. Support@heliohost.org
  15. That account failed to create, though the error message is "Account creation OK"? Not sure what happened here. Escalating so the cause can be investigated.
  16. Cron again. There's a section in cpanel for crons. I recommend that you check them and assuming you only have 1 job, make sure it's not set to run more often than once every 12 hours. One of your programs probably created a cron set for a few minutes or something. A lot of software will do it when it's installed, and some do not tell you.
  17. Your account was suspended for running too many cron jobs. To help keep load low, we limit accounts to two (2) cron executions in a 24 hour period. This means that, if you only have a single job, it can run no more frequently than once every 12 hours, with two jobs, they can each only run once a day, and so on. Your account has been unsuspended. To add to this for your specific case, there are a lot of programs in Softaculous that create crons during installation. Because we limit the number of crons per day, we recommend that when installing programs from Softaculous, you should disable the cron installation and create it manually so you can keep your account within the limit.
  18. Glad to see you got it working Let us know if you need anything else.
  19. This should be closer to correct, though I didn't test it and there may be syntax errors. Your issues were both the SQL syntax described above, and also your IF statement was wrong. mysqli::query() doesn't return a boolean TRUE when you run a SELECT, it returns a mysqli_result object instead. Your IF was explicitly looking for a Boolean true, but since the function doesn't return true when a SELECT succeeds, the else section always runs (there's no database error, hence why $db->error was empty). The quick way to check if a mysqli::query() was successful is to check if the returned value is empty(). Boolean TRUE (the result of an INSERT, UPDATE, etc.), mysqli_result objects (the result of SELECT), etc. are considered to be non-empty. Boolean false from a failed query is always considered empty. <?php $db = new mysqli("localhost", "root", "", "default_db"); if ($db->connect_error) { die("Connection error"); } else { $sql = "SELECT * FROM users WHERE `nick` = '$u'"; $result = $db->query($sql); if (!empty($result)) //Check that it's not empty. Non-empty queries are successful. { $data = $result->fetch_array(MYSQLI_ASSOC); echo $data['email']; } else { echo "Query error: " . $db->error; } } ?>
  20. SELECT * FROM 'users' WHERE 'nick' = '$u' Should be: SELECT * FROM users WHERE `nick` = '$u' You used the wrong type of quotes. You need the ` symbol (the one to the left of the number 1, above the tab key), not the ' (apostrophe). around the field names. If you want something around the table names, you should use these there too, though the code will work without anything around the table name.
  21. You're indeed suspended too many cron jobs. The limit is 2 per day. Unsuspended.
  22. It's already suspended for the second time. Escalating so Krydos can check on the file causing this.
  23. Your account was suspended for causing high server load. I have unsuspended your account, but please try to limit the load you put on our servers as it slows down not only your site, but the sites of all other HelioHost users sharing your server. If you still see the suspended page, please clear your cache.
  24. A 503 Service Unavailable is indeed because you didn't request ASP.NET. Escalating to have this installed for you.
  25. I bought a .com back in 2014 when i lost that .tk, so I have a domain...was on a road trip at the time and seeing it needed to be fixed asap, i had to buy it, set it up, and reconfigure a whole boatload of things using only an iPad and Bluetooth keyboard on free wifi at hotels and coffee shops...I still hate freenom for that. Do I actually qualify for the free domain promo? I was under the impression that being an admin meant I didn't (kind of like how employees of a company holding a contest can't enter). Because if I can, I have almost 10 years worth sitting there and I easily make 400 posts a year.
×
×
  • Create New...