7
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.