Jump to content

Krydos

Chief Executive Officer
  • Posts

    25,180
  • Joined

  • Last visited

  • Days Won

    900

Everything posted by Krydos

  1. Krydos

    Donate

    That's awesome! For anyone else who may be reading this, a lot of jobs will do a donation match to approved 501c3 charities, which is what HelioHost is. So, if you donate $100 your job might match your donation and send another $100 to us. You can ask at work to see if your job has a donation matching program like this.
  2. Done. You should now be able to log in and your website should be working again.
  3. Your account was archived because you haven't logged in for quite a while. We have a limited amount of space on our servers, and occasionally we have to remove the unused accounts to make space for new users. To prevent your account from becoming archived again please remember to log in at https://www.heliohost.org/login/ at least once every 30 days. Unarchiving...
  4. Closing due to inactivity.
  5. Closing due to inactivity.
  6. Sqlite is already enabled on Tommy php 7.2 https://krydos.heliohost.org/72/phpinfo.php I just used php 7.2 on Tommy to create a new sqlite database, created a table, inserted some data into the table, and selected the data back out. It all worked and gave no errors. Can you link to the script you're getting that error with?
  7. There you go https://bzysharing.com/test.aspx Yes, mono supports web.config.
  8. 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?
  9. Krydos

    Donate

    I believe that's one of Ashoat's old addresses from when he created the company back in 2005.
  10. 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
  11. Thanks for taking care of the extra account so quickly. There you go http://valdir.heliohost.org/test.aspx
  12. 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
  13. Krydos

    Double Storage

    Does your account have 2000 MB now?
  14. It should be installed on Tommy php 5.4 too now.
  15. 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.
  16. Removed.
  17. I would start with something like https://github.com/blueimp/jQuery-File-Upload/wiki/Chunked-file-uploads
  18. Which version of php are you using?
  19. There you go http://bzysharing.com/test.aspx
  20. 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?
  21. You have to remove it from addon domains before you can add it as an alias.
  22. 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.
  23. 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.
  24. 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...