For some reason the site does not allow any user to log in to the site or sign up for a new account. Please advise on what I need to do to fix this issue. Only the admin account is active and useable.
For some reason the site does not allow any user to log in to the site or sign up for a new account. Please advise on what I need to do to fix this issue. Only the admin account is active and useable. |
I have already fixed the issue with other members being able to log in. All that is left is to figure out why the submit button on the join page would stop working. What are some reasons a submit button would stop working? This is a very serious issue as I can no longer get new members. |
please pm me the url to your site ... this could be a java script error
all the best nazzal if i did help you .. it wont hurt to go to my profile and add a recommendation for me ;) |
please pm me the url to your site ... this could be a java script error
all the best nazzal |
just edit the post before some spammer see the link .. lol if i did help you .. it wont hurt to go to my profile and add a recommendation for me ;) |
well here is what the problem is you have this massage
which means that you have an undefined function called
which you might have been used to restrict some email providers it's in the
if you dont know how to edit it to remove the function then just attach the file, but i'll remove the function which means that this modification wont work no more , other than that you have to contact the vendor
if i did help you .. it wont hurt to go to my profile and add a recommendation for me ;) |
also you have some other errors which are template related 404 Not Found - http://taboomuseum.com/community/templates/tmpl_tmd062/images/bg-headline.jpg" 404 Not Found - http://taboomuseum.com/community/templates/tmpl_tmd062/images/bg-box-content1.png" check the images and put them in the right directory or edit the links for them they are at the general.css file search for the image names and replace them with the correct ones ... all the best nazzal if i did help you .. it wont hurt to go to my profile and add a recommendation for me ;) |
How can I send you the file? The only place i had a ForbiddenEmailProvider was in the /inc/ design.inc.php and has since been removed. |
I looked all through the BxDolProfileFields.php and could not find any code that says that. As in last post the only place I had that code was in the design.inc.php file |
You edit this also, so you need to edit it back to default code in administration / builders / profile fields (join form) edit the email field click on advanced and replace return (bool) preg_match('/^([a-z0-9\+\_\-\.]+)@([a-z0-9\+\_\-\.]+)$/i', $arg0); WITH THIS return ( ForbidenEmailProvider($arg0) and preg_match('/^([a-z0-9\+\_\-\.]+)@([a-z0-9\+\_\-\.]+)$/i', $arg0) ); |
You edit this also, so you need to edit it back to default code in administration / builders / profile fields (join form) edit the email field click on advanced and replace return (bool) preg_match('/^([a-z0-9\+\_\-\.]+)@([a-z0-9\+\_\-\.]+)$/i', $arg0); WITH THIS return ( ForbidenEmailProvider($arg0) and preg_match('/^([a-z0-9\+\_\-\.]+)@([a-z0-9\+\_\-\.]+)$/i', $arg0) ); I checked it and it was already set to return ( ForbidenEmailProvider($arg0) and preg_match('/^([a-z0-9\+\_\-\.]+)@([a-z0-9\+\_\-\.]+)$/i', $arg0) ); so I changed it back to this return (bool) preg_match('/^([a-z0-9\+\_\-\.]+)@([a-z0-9\+\_\-\.]+)$/i', $arg0); and it works again. Thank you for your input it has helped me immensely. |