1
As I can't log behind my firewall (zone Alarm or Norton), I had to write a little hack to do that. When XOOPS tests the $HTTP_REFERER var and find it empty (function myRefererCheck) connection is not allowed.
To avoid that, I have written this little hack:
file html/class/mysql.php, line 147, you have:
...
if (myRefererCheck($errstr)) {
...
REPLACE by:
...
if (myRefererCheck($errstr) || ALLOW_FROM_PROXY)
...
and in include/common.php file, line 40, ADD:
define("ALLOW_FROM_PROXY", TRUE); // Disactivate referercheck for SQL requests
If you want to return back to the normal settings, then just put FALSE instead of TRUE.
Trollix - HQCH (Hope Que Ca Helpe)