I just downloaded your Newsletter Module from your download section and installed the Sql file as well but the problem lm getting is this
Code:
Warning: mysql_fetch_row(): supplied argument is not a valid MySQL result resource in /home/sites/site89/web/modules/Newsletter/index.php on line 48
and when l open index.php and got to line 48 or a few lines above or below it l got this showing
Code:
global $prefix, $user, $modul_name ;
$user2 = base64_decode($user);
$cookie = explode(":", $user2);
if ($cookie[0] > 0) // If logged in as user get the mailaddress
{
$query = "SELECT email, uid FROM ${prefix}_users WHERE uid = '$cookie[0]'";
$result = mysql_query($query);
list($usermail) = mysql_fetch_row($result);
}
so how do l make this go away and fix this error l think it has something to do with PHPNUke 6.7 and the user variables being changed in the new version not sure but looking for any help to get this to work
Thanks in advance XtraX