1143 comments found.
Awesome! I want too buy but i have not received my “Conformation Email” for the User Sign-Up can you please check on this? My Email is VuduGraphic@yahoo.com
Thank You
Hey, I’m glad you like it and thanks for your comment. Yes, I saw that this is a problem and I wrote an info above the login form. IP of shared hosting provider that I’m using for demo is blocked almost everywhere and that’s why you have not received your confirmation email. It will work when you move it to some other hosting. Of course, if you want, you can do a little editing and send emails using SMTP.
Is there a possibility that you can convert this code into Bootstrap V3 as well as keeping it Bootstrap V2 for those who like the more vibrant look?
Of course there is. Good idea, I will do that in next update.
Unfortunately, just replacing bootstrap css and bootstrap js files won’t do the thing because there are html structure changes in bootstrap 3…
But thanks for your comment, I will add that for sure.
Yah I was gonna do it myself but I saw your other comment and saw you said you were gonna release a V2 of this code. So I thought why not implement V3 Bootstrap with it. But thanks for delivering. Will be sure to check back when V2 comes out.
“512bit password encription with salt” this worries me, so you are using some form of fast hashing algorithm like SHA? There is absolutely no reason to not be using Bcrypt or PBKDF. Missing even this basic level of understanding on security worries me about the rest of your “Advanced Security” code.
Hey, thank you for your comment. Yes, I’m using sha512 (SHA2 family) algorithm with 42 characters long salt (by default) and hashing is done in more than 20000 iterations. Hashing it like this, make normal password strong enough. Just do some research if you don’t belive me.
Hashing password with php crypt function won’t make your whole system secure. If, for example, your session cookie is stolen, your password is useless.
But again, thanks for your comment. I’ll add new option in installation wizard for selecting hash algorithm in next version.