Jump to content

Krydos

Chief Executive Officer
  • Posts

    26469
  • Joined

  • Last visited

  • Days Won

    945

Everything posted by Krydos

  1. Krydos

    Donate

    Ashoat hasn't been able to find any emails like that. Are you sure they already sent it or is it going to be sent sometime soon?
  2. Krydos

    Donate

    I believe that's one of Ashoat's old addresses from when he created the company back in 2005.
  3. Krydos

    Donate

    Yes, if you know the right search terms you can actually find us listed on the IRS website https://apps.irs.gov/app/eos/displayAll.do?dispatchMethod=displayAllInfo&Id=5003329&ein=272285629&country=US&deductibility=all&dispatchMethod=searchAll&isDescending=false&city=&ein1=&postDateFrom=&exemptTypeCode=al&submitName=Search&sortColumn=orgName&totalResults=54&names=Helio&resultsPerPage=25&indexOfFirstRow=0&postDateTo=&state=All+States All of your info can be found on that page, but for ease Organization name: Helio Networks Website: https://www.heliohost.org Address, City, State: 110 7th Ave S Kirkland, WA 98033 United States EIN: 27-2285629 Organization Contact: Ashoat Tevosyan (CFO) ashoat@gmail.com
  4. Asking for someone's bank account number is not something we do in the US. This would essentially give them access to withdraw as much money as they want from our account. I did some googling, and it looks like you might be referring to IBAN and BIC account numbers which is a common way to transfer money in Germany. Unfortunately, since we use a US bank our account doesn't even have an IBAN number. Would you like our mailing address to mail a donation check to us?
  5. It's likely that the emails are ending up in the spam box. You can check your spam score by sending one of your mailing list emails to https://www.mail-tester.com/ If you get 10/10 then that means you've done everything you can to get your email to their inbox. If you get less than a perfect score let us know what it says, and we can help you get the issues fixed.
  6. Thanks for taking care of the extra account so quickly. There you go http://valdir.heliohost.org/test.aspx
  7. Before I can enable ASP.net on your Tommy account you need to delete your Ricky account. Each person is only allowed to have one account as is stated in our ToS. After you've backed up your data you can delete your account with this link http://www.heliohost.org/classic/support/scripts/delete
  8. No, Tommy is the only server that offers ASP.net. An admin can move your account for you if you're a donor, otherwise you will need to backup, delete, and then create a new account on Tommy for free. Once you have your Tommy account let us know because ASP.net is not enabled on new accounts by default.
  9. Krydos

    Double Storage

    Does your account have 2000 MB now?
  10. It should be installed on Tommy php 5.4 too now.
  11. Unfortunately your account was archived 2017-07-27 which was well before https://www.helionet.org/index/topic/31373-fundraiser-for-new-server/ The reason we did a fundraiser is to buy more storage space because we had run out completely and were being forced to delete old accounts to make space for new accounts. Your account was one that was deleted. Now that our GoFundMe was a success, we bought, and installed the hardware in our cabinet we no longer have to delete old accounts like this anymore so this shouldn't happen again. I have sent an invite to create a new account to your contact email address.
  12. Removed.
  13. That's a pretty useful article. Thanks for sharing.
  14. I would start with something like https://github.com/blueimp/jQuery-File-Upload/wiki/Chunked-file-uploads
  15. Which version of php are you using?
  16. There you go http://bzysharing.com/test.aspx
  17. TCP and UDP port 27015 has been opened on Tommy to 192.223.29.32, and those other listed ports have been closed. Do you still need port 27025 to 192.99.0.216 open?
  18. I have sent you an special invitation to create an account on one of our servers to this email address. To begin creating your account click the link in the email. If you would like to test out Java Tomcat hosting or ASP.net let us know and they can be added to your account. Let us know if you need any help or have any questions. After you write the review provide us a link to it and we can post it on our main website (heliohost.org), forums (helionet.org), and on our official Facebook and Twitter accounts. Thanks.
  19. How long would you need access to an account for?
  20. You have to remove it from addon domains before you can add it as an alias.
  21. This thread was locked due to a lack of response from the user. I'm unlocking it and bumping it to give ioixd another chance to respond.
  22. I've already done quite a bit of research into railgun, and decided that the performance gains would not be worth the hassle of installing it. It also has the possibility of breaking a lot of stuff that we already have working on the server. If you really want to try it out I could probably install it on the new Johnny when I rebuild him.
  23. Just press F12, and go to the console tab. Each https request has a certain amount of overhead so you want to try to minimize the number of requests your browser needs to make to load the page. https://atoz.ml/assets/css/styles.css is relatively tiny so it would actually be beneficial to put the code straight into your .php file rather than forcing the browser to make two requests. One for the .php file, and then another for the .css file. You might want to also minimize the css code to reduce size, but since there is so little code there it probably won't make much of a difference. If you take a look at https://atoz.ml/assets/css/materialize.min.css however, it is quite large, and obviously not written by you. You can try inlining it if you want, but like the above quote says it will likely make your above-the-fold size too large to load quickly enough. This means you need to identify which rules in that css file are actually used above-the-fold, and probably just inline them. Then you can asynchronously load the rest of the .css that you need for the rest of the page. The point of all of the above is to get the portion of the page that is immediately visible when someone goes to your site to load as quickly as possible. Human reaction time is relatively slow so you can asynchronously continue loading the rest of the page that isn't immediately visible after the top part is done. Also, none of the above has anything to do with the server. This is all code changes that you need to make.
×
×
  • Create New...