| Re: Could not register new user. |
| by matangi on 2004/10/9 23:14:05 Quote:
Sorry, I use the multilanguage hack and I forgot a field in the user table, so the register-process never finished. Thanks Matangi |
| Re: Could not register new user. |
| by matangi on 2004/10/1 15:23:50 Thanks again, will try it again, maybe it was too late yesterday. Matangi |
| Re: Could not register new user. |
| by tedsmith on 2004/10/1 8:15:04 If the problem is definately the same as the problem described in the thread above, then try this (as suggested by Dave_L - it worked for me) To disable the HTTP_REFERER check, add the following code lines at the beginning of the function xoops_refcheck in the file : include/functions.php function xoops_refcheck($docheck=1) { return true; // disable HTTP_REFERER check $ref = xoops_getenv('HTTP_REFERER'); if ($docheck == 0) { ... } Save the file, and try again. |
| Re: Could not register new user. |
| by matangi on 2004/9/30 20:30:36 Quote:
Thank for that, tried to change the file >> functions.php << like recommended, just to check out if it helps. But it does not. The request I recieved was from a user that uses an internetcafe in hungary, so technical explanation to her will not help. Is there anything else that I can do to make it run? Beside of that I tried it with and without firewall, but I do not use Norton firewall. No change. If there is something else that I can try I will be happy to hear from Matangi |
| Re: Could not register new user. |
| by tedsmith on 2004/9/30 13:01:26 For full description and explanation of this problem read this post https://xoops.org/modules/newbb/viewtopic.php?topic_id=24566&forum=7#forumpost107356. It is especially prominent with Norton Personnal Firewall. You have to tell the firewall to allow the HTTP referral, i.e. remember where the user came from page by page. To disable the check all together by hard coding, look at Dave_L's posting. Hope this helps. Ted |