Wedge
Public area => Bug reports => The Pub => Archived fixes => Topic started by: Kian on January 29th, 2015, 08:28 PM
-
Hi again,
On PnR, it's impossible to set a signature in the profile section. Whenever we try to write one, the text disappears as it is written. On the second, dead, forum I host, the signtures work so I guess I may have a specific problem, perhaps coming from my migration.
This issue is more difficult to show as there is no error log for it. You go to the signature section, type in it, and the letters disappear as fast as they appear.
My only current solution, which of course works, is to let the members send me the signature they want and insert it in the SQL database. (and the pre-existent signatures are there)
-
Do users also have issues posting to the forum?
-
Admin->Members->Signatures Check Enable signatures and or Minimum number of posts for signatures to be visible
-
Do users also have issues posting to the forum?
No.Admin->Members->Signatures Check Enable signatures and or Minimum number of posts for signatures to be visible
Everything is set to 0 and checked.
-
Does this happen for all users, on all browsers..? Does the Javascript console show any errors? Would disabling Javascript entirely help? (I guess so... :P)
-
Oh... If maxLength is set to 0, then it might do what it's doing. Try setting the admin > members > member options > signatures > maximum length setting to 5000, instead of 0. I bet it'll fix the problem...! It's probably a bug, I'll have to check.
-
Or try replacing line 2804 in Profile.template.php with:
if (maxLength > 0 && currentSignature.replace(/\r/g, "").length > maxLength)
-
Oh... If maxLength is set to 0, then it might do what it's doing. Try setting the admin > members > member options > signatures > maximum length setting to 5000, instead of 0. I bet it'll fix the problem...! It's probably a bug, I'll have to check.
Thanks :cool:
I should have tried that.
-
Please make sure this is fixed in the latest release..?
-
Please make sure this is fixed in the latest release..?
Testing with maximum length set to 0 : it's fixed, thanks !