takii3 Posted March 9, 2020 Posted March 9, 2020 Hello there, My account was suspended and I know it's because of the server resource usage. I'm trying my best to reduce the traffic coming in so please assist in clearing up the suspension and I will attempt to make further improvements so it works well when I'm not able to monitor it.. Username: takii3Server: JohnnyHeliohost main domain: takii3.heliohost.org Thanks, Quote
wolstech Posted March 9, 2020 Posted March 9, 2020 It was indeed for excessive resource use. Please fix the issue quickly. Unsuspended. Quote
takii3 Posted March 10, 2020 Author Posted March 10, 2020 Thanks so much! I'm definitely on it! Quote
takii3 Posted March 10, 2020 Author Posted March 10, 2020 Also is there a way to check the server load by PHP? Quote
Byron Posted March 10, 2020 Posted March 10, 2020 You can check the server load this way: <?php $uptime = file_get_contents("/proc/uptime"); $loadavg_array = explode(" ", file_get_contents("/proc/loadavg")); $loadavg = $loadavg_array[2]; echo "<p>[ Current server load: " . $loadavg . " ]</p>"; ?> https://bybyron.net/load.php Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.