Kunena 7.0.4 Released

The Kunena team has announce the arrival of Kunena 7.0.4 [K 7.0.4] in stable which is now available for download as a native Joomla extension for J! 5.4.x/6.0.x. This version addresses most of the issues that were discovered in K 6.2 / K 6.3 / K 6.4 and issues discovered during the last development stages of K 7.0

Topics that are moved into this category are generally considered to be closed. Users may want to add additional information but these topics should not be resurrected in order to discuss new problems or unrelated matters.

Solved Remove password change from profile edit

More
13 years 1 month ago #141489 by dfcarter
I am using Extendedreg to ensure registering members use a reasonably strong password. However if the navigate to the forum it is a simple matter to in edit the profile and change the password to anything they choose. As I don't need the password change facility could someone help to remove this from the profile edit.

Thanks

Please Log in or Create an account to join the conversation.

More
13 years 1 month ago #141493 by rich
Welcome to Kunena dfcarter!

Maybe that is something for you (I have not tested it)
joomla-extensions.kubik-rubik.de/fpc-force-password-complexity

Important! Always create a backup before you make any changes to your website!

Please Log in or Create an account to join the conversation.

More
13 years 1 month ago #141519 by dfcarter
Thanks for your comment - I am using the Extendedreg plugin to check the strength of passwords on registration to the site. It is however possible change passwords within Kunena which ignores Extendedreg and allows any password without any checks. Simplest solution for me will be to remove the change password option from Kunena/Profile/edit. I assume this is a change to a PHP file. I just can't find it.

Thanks in advance

Please Log in or Create an account to join the conversation.

More
13 years 1 month ago #141520 by TKtemp

dfcarter wrote: Thanks for your comment - I am using the Extendedreg plugin to check the strength of passwords on registration to the site. It is however possible change passwords within Kunena which ignores Extendedreg and allows any password without any checks. Simplest solution for me will be to remove the change password option from Kunena/Profile/edit. I assume this is a change to a PHP file. I just can't find it.

Thanks in advance


Hi, look in:
components / com_kunena / template / blue_eagle / html / user / edit_user.php
around line 46+

you can just add disabled="disabled" attribute to input fields

Hope this helps

Please Log in or Create an account to join the conversation.

More
13 years 1 month ago - 13 years 1 month ago #141605 by dfcarter
Hi

Thanks for the suggestion. I'm afraid I have no knowledge of PHP. I have tried trial and error but I can not get it to work. Could you provide more detail ?

Thanks in anticipation.
Last edit: 13 years 1 month ago by dfcarter. Reason: typo's

Please Log in or Create an account to join the conversation.

More
13 years 1 month ago - 13 years 1 month ago #141606 by TKtemp
Hi,

line 52
replace this:
Code:
<input class="inputbox validate-password" type="password" id="kpassword" name="password" value="" size="40" />

with this:
Code:
<input class="inputbox validate-password" type="password" id="kpassword" name="password" disabled="disabled" value="" size="40" />

then line 60

replace this:
Code:
<input class="inputbox validate-passverify" type="password" id="kpassword2" name="password2" value="" size="40" />

with this:
Code:
<input class="inputbox validate-passverify" type="password" id="kpassword2" name="password2" disabled="disabled" value="" size="40" />

That's all ;)
Last edit: 13 years 1 month ago by TKtemp.
The following user(s) said Thank You: dfcarter

Please Log in or Create an account to join the conversation.

Time to create page: 0.231 seconds