1
I'm having problem with PD-Download but I don't think it is a problem with the module itself. XOOPS acts flaky on my system and it may be something unrelated.
Anyway, after a download is submitted it is supposed to take you back to the file list. Instead, I get a totally blank screen. Now, this did work when I initially installed the module, but now it doesn't.
After some debugging, I have discovered the problem is with line 131 in the submit.php file. Here is the code for line 131 and 132.
$notification_handler->triggerEvent('global', 0, 'new_file', $tags);
$notification_handler->triggerEvent('category', $cid, 'new_file', $tags);
I've tested the code and it works fine up to line 131 and then dies. The file is properly uploaded, but these two notification events hang up. If I comment out these two lines, the module works fine. However, obviously these are two important lines of code.
I can not determine what is causing the problem. I've re-uploaded all the core XOOPS files, a process that has fixed other quirks I've encountered, but that didn't help in this case.
Any ideas?