![]() |
Forum Merge And Strong Passwords Help Needed.
Hey Guys i want to Add 1 Subforum to 3 Forums is that possible to add its Posts and Threads in all 3 forums??
If so how can i do that? ---------------------------------------------- I need to force users to Use Password: Upper Case + lower case + numbers + Capital's How can i force users? Ex: Pa$$Word1 Us3r123 or something like that. I want users to use passwords like this, how can i force them?? --------------- Added [DATE]1379964357[/DATE] at [TIME]1379964357[/TIME] --------------- Anyone???? --------------- Added [DATE]1380004591[/DATE] at [TIME]1380004591[/TIME] --------------- Still No One?????? |
Any one can help me?????
|
I don't know about your subforum question. As for the password question, I don't know of any existing mod that does that (but it doesn't mean there isn't one out there somewhere). There's this one: https://vborg.vbsupport.ru/showthread.php?t=264515 but it's for vb4 and only enforces length. I haven't looked in to it, but it could be that the same method could work on vb3, and I'm sure you could add checks to enforce conditions other than length.
|
I have checked that thread and i assume there is not any 3.8 version for this is there???
------------------- About the 2nd one i want to ask if i have a section with like 10,000 threads and 500,000 posts. How can i add one subforum to all 3 and show all the posts and threads in all forum is that possible??? |
Still waiting for some help....
|
Quote:
--------------- Added [DATE]1380589321[/DATE] at [TIME]1380589321[/TIME] --------------- As far as the password validation is concearned, I could give some pointers if you have some PHP knowledge, but otherwise I do not know of a plugin/mod that would do the job. It is not that we are ignoring you. |
okay,
about the passwords i think i should have something custom coded?? |
I think I might take a shot at the password thing. If you can wait a day or two, I'll see what I can get done.
|
I was thinking about this too but I can't build vB3 mods any more as my hosting service no longer supports php4.
But anyway here's a password strength checker (many more available if you search) http://passwordadvisor.com/CodeJavascript.aspx Simple to understand and modify as you wish |
nerbert, if you want to do one let me know, I haven't started yet.
You're right, there's no shortage of javascript password strength checkers out there, so one option would be to just edit the appropriate templates to incorporate one of those (although if someone has js turned off they could bypass it). |
I just can't do it without being able to test it. I researched it a little and in the case of the register page there's a hook location just before you output the template, so you could just build whole new modified template called "register_advanced" and output that instead. As for the html for changing the password you could use "modifypassword_advanced" and call for that in a plugin at "profile_complete" and override the earlier call for "modifypassword". That way there's no hacking up the original templates. As for messing with the JS you would want server confirmation I suppose, just translate the JS rejex test into a PHP rejex test. But another possibility is in the new templates, have the submit buttons disabled and enabled by JS only if the password strength conditions are met.
--------------- Added [DATE]1380656685[/DATE] at [TIME]1380656685[/TIME] --------------- I may be checking for strong passwords in a project I'm planning so this is what I plan on using in the template HTML Code:
<input type="password" id="password" onkeydown="strongPassword.checkPasswords();" /> |
i'm sorry to be a noob but i don't know how can i use it:(
please explain me how can i use it or please make a modification xml so i can use it easily. Thank You All. |
If my old vB3 dev site still worked I'd do it but I think you'll have to talk kh99 into it. I'm just helping out.
|
Well, I'm not much of a JS person. When I talked about doing something for this I was thinking of checking it on the server side and displaying an error if it didn't meet some criteria. But I've thought about it more and I can see how that might be annoying for users.
|
If you do the php and html I'll do the JS. Post the html for the part of the register form containing the password fields and the same for the change password form and I'll paste it in to one of my projects and test my JS. I see I have the id's wrong in my earlier post so be sure the id's match the correct names. I think the <p> needs to be below the password fields so they don't jump when the <p> goes blank.
|
OK, I'll see if I can get a chance to look at it later today.
BTW, you mention not having a vb3 setup - have you considered installing xampp on a local computer and installing it there? That's what I do these days for all my development. (But it is work - maybe it's not worth the effort just to answer a few questions here). |
i can provide you a test board for it bro but i don't understand what you are saying :(
i am super noob i think... |
I'll try to put together a product you can install, but it will just check the password when submitted as opposed to having a fancy javascript control that would tell the user how good the password is as they type it. Then maybe I or someone else can add some javascript later.
|
okay thanks a lot :)
i am waiting.... |
I can help you. Send me a PM. :)
|
jonii it is nice that you want to help, but since you are new, I would suggest posting help in the public, to increase your credibility.
Before giving anyone your information, or committing to a paid / unpaid job, you should read this, Protection Recommendations |
Quote:
|
Quote:
|
1 Attachment(s)
OK juan71287, I'm attaching my first version. It's pretty simple, just import and go to the options to set the length and characters you want to require. Please let me know if you have any suggestions for changes.
|
Did my JS work? Or did you write your own? Looking at it now I see I used "strongPassword" for two entirely different purposes.
|
This version doesn't have any JS, it just does a server side check (as I mentioned a few posts ago). I'll try to add some JS in a future version.
|
First of all I thank you for your work and time.
and now i can see the setting is working fine so as in password changes but when i used password like: asndksd123- it showed me: Quote:
|
Quote:
Anyway, I'll try to fix it shortly. |
Web Server Apache v2.2.25 (cgi-fcgi)
PHP 5.3.27 MySQL Version 5.5.32-cll would be great if its fixed :) |
1 Attachment(s)
Hmm...I don't understand why PHP5 wouldn't have that function, but anyway, uninstall and try the one attached here instead.
ETA: oh, looks like the mb_ functions aren't available unless PHP is configured to support them. |
let me do it again :)
anyways you have any example of what kind of password it gonna accept? --------------- Added [DATE]1381187680[/DATE] at [TIME]1381187680[/TIME] --------------- Here is an example of password i want it to be: "testing123456- testing-123456 user12-3 user-123 etc etc....." |
Sorry, I'm not sure what you're asking. You should be able to configure the length and number of upper case, digits, and other characters you want to require. The configuration value is maybe a little complicated, but having a separate option for each value seemed like overkill.
Eta: the options should be at the bottom in the admincp options list, [kh99] password options. |
The default is a length of at least 8, with at least 1each upper case, digit, and other character. None of your examples have any upper case, so maybe you want to set it to 8,0,1,1
|
1 Attachment(s)
Also, do you see the rules on the password change page? If you have a custom style it might not get inserted automatically. It should look something like this:
|
its working fine :)
Thank you soo much :) Love your work :) |
All times are GMT. The time now is 12:34 AM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|