MineHarvest66 Posted April 10, 2017 Report Posted April 10, 2017 Hello, My provider have "strong" passwords on and I am confused on how to ensure none of my orders that I get fails. Even though I read this thread I still have no idea what I need to do... Quote
0 MineHarvest66 Posted April 11, 2017 Author Report Posted April 11, 2017 With @Licensecart's help here how you ensure that your WHM will auto provision... go to: yourblestainstalldir/components/modules/cpanel/cpanel.php Using the TEXT editor (not the "screw you up" coding editor) Then get to: private function generatePassword($min_length = 10, $max_length = 14) { $pool = 'abcdefghijklmnopqrstuvwxyz0123456789!@#$%^&*()'; $pool_size = strlen($pool); $length = mt_rand(max($min_length, 5), min($max_length, 14)); $password = ''; for ($i=0; $i<$length; $i++) { $password .= substr($pool, mt_rand(0, $pool_size-1), 1); } return $password; } In the bold text areas is where you want to kick up the values. My provider recommends for uninterrupted run a min. of 16 characters should cut the mustard every single time. Insane? Yes but it's works! Beside it will mitigate the claims of "your system's password caused my account to be hacked!'. Being able to prove to such any rude clients like that CHANGING the passwords REGULARLY is a requirement! Paul and Michael 2 Quote
Question
MineHarvest66
Hello,
My provider have "strong" passwords on and I am confused on how to ensure none of my orders that I get fails. Even though I read this thread I still have no idea what I need to do...
1 answer to this question
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.