Jump to content

jomgapuz

Members
  • Posts

    27
  • Joined

  • Last visited

Contact Methods

  • Website URL
    https://www.jomgapuz.com/

Profile Information

  • Gender
    Male

jomgapuz's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Hello, I have donated before and when I signed in, this (the screenshot) is the result. My account was on Tommy as I have donated before. Is there a way I can claim an account again on Tommy? My username was gapuz.
  2. I guess the database service to use hasn't been brought out yet. Can we have MongoDB in the Lily server?
  3. How about Node.js? Will you add it to Lily server?
  4. I would love to try a Windows server. :-)
  5. I've signed up already but are there any freebies?
  6. Hi, I have signed up for monthly donation. What gives? :-) thank you! More power!
  7. How about the second question? I cannot see my RAM or CPU usage in my cPanel.
  8. So aside from having an account on Tommy we can also have an account on the new server at the same time if we donated?
  9. Hello, Being a donor, will I have an exception? For example, if just in case I've reached resource limit and my account was automatically deleted, will I be able to restore my account? Also, how will I know that my account in cPanel is using an amount of RAM or CPU load?
  10. Hi, Just read it. As per documentation, it must be installed with the parameter: –with-password-argon2
  11. Hi, Just in. As of release PHP 7.2.0, the new password hashing algorithm should be available but it doesn't seem to exist. Using the hashing algorithm introduce from here, here and here: PASSWORD_ARGON2IThe usage below should work...: <?php /** * This code will benchmark your server to determine how high of a cost you can * afford. You want to set the highest cost that you can without slowing down * you server too much. 8-10 is a good baseline, and more is good if your servers * are fast enough. The code below aims for ≤ 50 milliseconds stretching time, * which is a good baseline for systems handling interactive logins. */ $timeTarget = 0.05; // 50 milliseconds $cost = 8; do { $cost++; $start = microtime(true); password_hash("test", PASSWORD_BCRYPT, ["cost" => $cost]); $end = microtime(true); } while (($end - $start) < $timeTarget); echo "Appropriate Cost Found: " . $cost; ?> ...but it failed with the warning: Warning: Use of undefined constant PASSWORD_ARGON2I - assumed 'PASSWORD_ARGON2I' (this will throw an Error in a future version of PHP) in /home/gapuz/public_html/jomgapuz.com/public_html/info.php on line 14 Warning: password_hash() expects parameter 2 to be integer, string given in /home/gapuz/public_html/jomgapuz.com/public_html/info.php on line 14
  12. Hello, Thank you for updating! For clarifications, I meant the php lib for mongodb. Not the service itself. :-)
  13. Hi, I have seen that the version in Tommy is RC6. Can we update it to the at least latest and stable release version? Also, can we include mongodb extension? Thank you very much! More sunlight to Helio Networks! :-)
×
×
  • Create New...