Jump to content

Krydos

Chief Executive Officer
  • Posts

    24,179
  • Joined

  • Last visited

  • Days Won

    851

Everything posted by Krydos

  1. Well, the best free subdomain is yourname.heliohost.org because we don't play any games and we won't randomly steal your domain from you and hold it ransom like freenom does. If you don't mind them possibly stealing your domain and putting malware ads on it and demanding you pay them $20 to get it back then check out http://freenom.com/ You can register .tk and .ga and .ml and .cf and .gq domains there. They are such scammers though. If you want to spend a little bit of money, which I recommend, check out https://www.namecheap.com/?aff=102467 You can get a ton of TLD's for only 88 cents per year. .website and .site and .space and .press and .us and .bid and .trade and .accountant and .faith and .win and .download etc etc. Make sure you use our affiliate link https://www.namecheap.com/?aff=102467 if you do end up buying a domain so we get some money from it too. Thanks!
  2. The user that Tomcat runs as doesn't have permission to create directories for security because this is a shared host. Just create your folder manually, or create it with PHP. PHP is allowed to create directories because it runs as SuPHP which means it runs with the same permissions as your main user account. There is no such thing as SuJSP so Tomcat has to run all users with the same tomcat user with the same permissions.
  3. See http://www.helionet.org/index/topic/28406-my-cron-job-doesnt-work/?p=129898
  4. I talked to him on IRC chat and his command was /home/deep958/public_html/cron.php which doesn't do anything because it needs to be something like php /home/deep958/public_html/cron.php
  5. That shouldn't really be possible while using sql strictly. If two mysql queries happen simultaneously the mysql server will pick one, and execute it first and the second one that happened at exactly the same time will have to wait a millisecond or two queued up to go next. However, if your code is to blame then it could be possible: $con = new mysqli($db_host, $db_user, $db_pass, $db_data); $sql = "select views from video_table where id = '$video'"; $result = $con->query($sql); $row = $result->fetch_assoc(); $views = $row['views']; $views++; // here is where another process could check the viewcount and get the same value $sql = "update video_table set views = '$views' where id = '$video'"; $con->query($sql); So, with that code several php processes could query for the current value, and get the same number, say 50, and all increment it in the php and put 51 back in the database. If you use wolstech SQL query above then you shouldn't lose data.
  6. What is the error message?
  7. You can prevent your account from becoming inactive by logging in at https://www.heliohost.org/login/ at least once every 30 days.
  8. Let us know if you would like any links to sources. Anyone is able to create the article and anyone can edit it. https://en.wikipedia.org/w/index.php?title=HelioHost&action=edit&redlink=1
  9. We have a 728x90 banner for you to use on your site if you want. It looks like this: Just put this code on your page so we can see how many people view the banner and how many clicks it gets: <ins data-revive-zoneid="1" data-revive-id="321e1cec4956204a54bd86da12deea5b"></ins><script async src="//krydos.heliohost.org/a/www/delivery/asyncjs.php"></script> Let us know if there is a certain size banner that would work better for you and we can create one for you.
  10. What kind of bitcoin wallet would you suggest?
  11. Write a positive review about HelioHost at https://hosting.asp.net/hosting/hostingprovider/details/1105
  12. Reddit changes pretty quick and old threads get locked, but just dropping a link somewhere like this on a new post would bring us a lot of visitors https://www.reddit.com/r/web_design/comments/2ezmbm/has_anybody_got_any_experience_with_free_domain/ Here are some subreddits to keep an eye on https://www.reddit.com/r/freewebhosting/ https://www.reddit.com/r/webhosting/ https://www.reddit.com/r/Hosting/ https://www.reddit.com/r/web_design/ https://www.reddit.com/r/learnwebdev/ https://www.reddit.com/r/webdev/ https://www.reddit.com/r/web_programming/ https://www.reddit.com/r/php/ https://www.reddit.com/r/python/ https://www.reddit.com/r/wordpress https://www.reddit.com/r/Entrepreneur/ https://www.reddit.com/r/Frontend/ https://www.reddit.com/r/html5/ https://www.reddit.com/r/html5games/ https://www.reddit.com/r/css/ https://www.reddit.com/r/learnjavascript https://www.reddit.com/r/javascript/ https://www.reddit.com/r/jquery/ https://www.reddit.com/r/coding/ https://www.reddit.com/r/badcode/ https://www.reddit.com/r/AskComputerScience/ https://www.reddit.com/r/servers/ https://www.reddit.com/r/websecurity/ and a lot more...
  13. Write a review (and mentioned that we have java and 1000 MB storage) for HelioHost at http://www.hospedagensgratis.com.br/hospedagem/heliohost/
  14. Give us a 5 star review and post a comment on http://www.free-web-hostings.info/free-web-hosts/heliohost-org/
  15. If you can think of a competitor find them on alternativeto.net and make sure HelioHost is listed on their page https://alternativeto.net/
  16. You can give HelioHost an upvote as an alternative to our competitors https://alternativeto.net/software/000webhost/ https://alternativeto.net/software/smart-hosting/ https://alternativeto.net/software/ktmwebhosting/ https://alternativeto.net/software/peer-1-hosting/ https://alternativeto.net/software/little-hero-hosting/ https://alternativeto.net/software/hostinger/ https://alternativeto.net/software/joyent/ https://alternativeto.net/software/x10hosting/ https://alternativeto.net/software/onesite/ https://alternativeto.net/software/webbera/ https://alternativeto.net/software/zymic/ https://alternativeto.net/software/serversfree/ https://alternativeto.net/software/smart-hosting/ https://alternativeto.net/software/profreehost/
  17. You can post a review about HelioHost at http://alternativeto.net/software/heliohost/reviews/
  18. You can answer a question with a description of HelioHost at https://www.quora.com/pinned/Web-Hosting-Providers
  19. You can write a review about HelioHost at http://www.free-webhosts.com/reviews/add-review.php?hostname=HelioHost
  20. If you use something like this in your .htaccess RewriteEngine On RewriteCond %{HTTPS} !=on RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] then google, and all the other search engines will eventually change all their links to https. I'm not sure how your library only allows https though. If they blocked port 80 entirely then typing something like heliohost.org would get blocked even though it would immediately forward to port 443. I've seen some bizarre browsers that behaved the way you're describing though. Basically any url you type in even if you specify http:// would automatically tack https:// onto everything. So if the site didn't provide https it would just say that site couldn't be found. Perhaps that is what your library is doing. Another thing that could be possible is maybe your library is willing to communicate on port 80 ONLY to find redirects to https. If the first response on port 80 isn't a 301 redirect to port 443 then it blocks the connection. Very weird either way.
  21. You can let your Facebook friends know about us by making a post on your timeline. https://www.facebook.com/share.php?u=http://www.heliohost.org/
  22. You can let your twitter followers know you're hosting your website with us by using @heliohost in your tweet. https://twitter.com/intent/tweet?text=My%20website%20is%20on%20%40heliohost%20the%20community%20powered%20free%20web%20host%20for%20everyone.%20Get%20your%20own%20free%20website%20at%20http%3A%2F%2Fheliohost.org%2F
  23. You can write a Facebook review about HelioHost at https://www.facebook.com/pg/HelioHost.org/reviews/
×
×
  • Create New...