Hi there.
I was wondering why my website wasn't getting any new members the past few days then I tried logging in and the Join button doesn't respond.
At first I thought it may be because I was still on 7.0.0, So I've upgraded to 7.0.4 and I still have the same problem.
I check my PHP logs and it says this:
[Wed Dec 15 18:00:28 2010] [error] [client {MY IP}] PHP Fatal error: Call to undefined function DontUsedNickName() in /home/sites/{MYSITE}/public_html/inc/classes/BxDolProfileFields.php(376) : runtime-created function on line 1, referer: http://www.{MYSITE.CO.UK}/join.php
I was wondering if anybody knew the solution?
Thanks
Peter
|
I think it has something to do with the mod you added "DontUsedNickName" Uninstall mod and check. If mod was hardcoded, then remove code and try again. Backup Site First !!!
|
I'll try that and see if it works.
Thanks
Peter
|
I think it has something to do with the mod you added "DontUsedNickName" Uninstall mod and check. If mod was hardcoded, then remove code and try again. Backup Site First !!!
Yes DontUsedNickName it's not default function
PS: If possible do not write me personally, please try to ask on the forum first |
Hi there, I cant find the mod. How can I check if I installed it, cause it may have been a while back.
Thanks
Peter
|
Hi there, I cant find the mod. How can I check if I installed it, cause it may have been a while back.
Thanks
Peter
Did you make some changes with join page? or some modules that make some changes in join process?
PS: If possible do not write me personally, please try to ask on the forum first |
I can't think of any modules that would have efffected the join page.
For D7 Im pretty sure I installed Deanos Tools.
Is there a mod that makes avatars required, if so that could be the culprit?
Thanks
Peter
|
I can't think of any modules that would have efffected the join page.
For D7 Im pretty sure I installed Deanos Tools.
Is there a mod that makes avatars required, if so that could be the culprit?
Thanks
Peter
Peter U think will be batter if you'll make a ticket on our support page!
PS: If possible do not write me personally, please try to ask on the forum first |
I'll back up my website and upload some different files and folders until i find the culprit, then il attempt to fix it that way
If I can't find it Il post a ticket to my agent.
Thanks a lot guys:)
|
check inc/design.inc.php and look for
function DontUsedNickName($NickName)
that's where the DontUsedNickName mod coding was in instructions. If you have the function still in there, delete it.
|
--Delete This if there--
function DontUsedNickName($NickName)
{
$adontused[] = "support"; $adontused[] = "administrator"; $adontused[] = "admin";
/* you can add more values here example : $adontused[] = "<your values>"; */
foreach($adontused as $key => $value) { if ( strpos("ZYX".$NickName,$value) > 0 ) return false; }
return true;
}
|