1
Hi,
I am useing Xoops 2.3.3b
Last week my Host updated their SQL version (not sure to which one ...)
Since the update I can't upload any Files anymore with the PDdownloads module (1.2). Before the update it worked fine!
I figured out that the error (I believe) is due to this code in PDdownloads/admin/category.php :
(line 283)
{$sql = $sql = "INSERT INTO " . $xoopsDB -> prefix("PDdownloads{$mydirnumber}_cat") . "
( pid, title, imgurl, description, nohtml, nosmiley,
noxcodes, noimages, nobreak, weight, spotlighttop, spotlighthis) VALUES
( $pid, '$title', '$imgurl', '$description', '$nohtml', '$nosmiley',
'$noxcodes', '$noimages', '$nobreak', '$weight', $spotlighttop, $spotlighthis)";
$result = $xoopsDB -> query($sql);
$error = _AM_PDD_DBERROR . ":
" . $sql;
Any suggestions how to solve this issue?