Kasper
Kayıtlı Üye
- Katılım
- 5 Ağu 2016
- Mesajlar
- 188
- Reaction score
- 87
- Puanları
- 43
- Yaş
- 42
- Web sitesi
- cyber-warriors.net
- PHP Versiyonu
- PHP v7.1.x
- XenForo Versiyonu
- XF 1.5.x
merhaba arkadaşlar bu plugin hakkında yardımınıza ihtiyacım var xenforo ana sitesinde göremedim plugini plugin bana vbulletin 3 deki Şifre Zorluluk Password Strength Check i
hatırlattı yine tabiki ingilizce olduğu için fazla bir şey anlayamadım ama onun gibiyse süper sizden ricam deneyip birde tr yapıp siteye eklerseniz çok memnun
olurum en azından sizin denetiminizdende geçer.
Not: ne yaptıysam dosyaları yükleyemedim siteye hata verdi
bende buraya yükledim isterseniz kendi sitesinden indirin
http://s9.dosya.tc/server/utz5dj/addon-FMS_Password_Strength_Check_v3.zip.html
------------------------------------------------------------
http://forum.fixmystuff.org/resources/check-display-password-strength.1/
This is a very simple add-on to check and display the strength of the password entered by the user during registration/password change. It checks the following conditions to create secure password:
For xenForo 1.2.0 and above: just download and install this add-on.
For xenForo 1.1.5 and below:
If you have TMS installed, just download and install this add-on.
If you don't have TMS installed, you have to make the following template changes manually:
Search for template 'register_form' in AdminCP >> Appearance >> Templates
Find the following code:
Replace with the following code:
This is what happens:
Demo: www.FixMyStuff.In
Hope this was helpful.
You may donate basis your evaluation of the usefulness of the content to you. Donation is not mandatory, however it is greatly appreciated.
hatırlattı yine tabiki ingilizce olduğu için fazla bir şey anlayamadım ama onun gibiyse süper sizden ricam deneyip birde tr yapıp siteye eklerseniz çok memnun
olurum en azından sizin denetiminizdende geçer.
Not: ne yaptıysam dosyaları yükleyemedim siteye hata verdi
bende buraya yükledim isterseniz kendi sitesinden indirin
http://s9.dosya.tc/server/utz5dj/addon-FMS_Password_Strength_Check_v3.zip.html
------------------------------------------------------------
http://forum.fixmystuff.org/resources/check-display-password-strength.1/
This is a very simple add-on to check and display the strength of the password entered by the user during registration/password change. It checks the following conditions to create secure password:
- The password must contain greater than 6 character
- The password must have both lower and uppercase characters
- The password must have at least one number
- The password must have at least one special character
For xenForo 1.2.0 and above: just download and install this add-on.
For xenForo 1.1.5 and below:
If you have TMS installed, just download and install this add-on.
If you don't have TMS installed, you have to make the following template changes manually:
Search for template 'register_form' in AdminCP >> Appearance >> Templates
Find the following code:
Kod:
<dd><input type="password" name="password" class="textCtrl OptOut" id="ctrl_password" autocomplete="off" /></dd>
Kod:
<script language="javascript" type="text/javascript">
function pwdStrength(password)
{
var desc = new Array();
desc[0] = "<font color='red'>Very Weak</font>";
desc[1] = "<font color='red'>Weak</font>";
desc[2] = "<font color='orange'>Better</font>";
desc[3] = "<font color='orange'>Medium</font>";
desc[4] = "<font color='green'>Strong</font>";
desc[5] = "<font color='green'>Strongest</font>";
var score = 0;
//if password bigger than 6 give 1 point
if (password.length > 6) score++;
//if password has both lower and uppercase characters give 1 point
if ( ( password.match(/[a-z]/) ) && ( password.match(/[A-Z]/) ) ) score++;
//if password has at least one number give 1 point
if (password.match(/\d+/)) score++;
//if password has at least one special caracther give 1 point
if ( password.match(/.[!,@,#,$,%,^,&,*,?,_,~,-,(,)]/) ) score++;
//if password bigger than 12 give another 1 point
if (password.length > 12) score++;
document.getElementById("pwdDescription").innerHTML = desc[score];
document.getElementById("pwdStrength").className = "strength" + score;
}
</script>
<dd><input type="password" name="password" class="textCtrl OptOut" id="ctrl_password" autocomplete="off" onkeyup="pwdStrength(this.value)">
<div id="pwdDescription" class="explain" style="color: red""></div></dd>
Demo: www.FixMyStuff.In
Hope this was helpful.
You may donate basis your evaluation of the usefulness of the content to you. Donation is not mandatory, however it is greatly appreciated.