admin/admin_modules.php
i want to enable new modules but this page never loads and then shows a white screen
everything else is ok


admin/admin_modules.php
i want to enable new modules but this page never loads and then shows a white screen
everything else is ok
Looking into this, another user reported that it was redirecting him to the homepage. That made no sense to me, but a blank page as reported here does give us some more insight into the problem. Hopefully this will be addressed by RC2.
The Facebook Module for Pligg CMS!
Register, Login, and Submit Stories with Facebook. An absolute MUST HAVE for all Pligg sites!
there's another problem too. I upgraded from 9.9.5 to RC1. Despite activating "Profile Extra Fields" & "Anonymous Mode" modules, other modules dependent on them do not respond and I can't enable them.
They fail to activate stating I need to enable these first. If I keep these modules disabled, the other dependent modules recognize these as active.
kanra: try uninstalling then reinstalling the modules and make sure you have the latest versions.
footprint: the issue has to do with your server not allowing fopen as used in the pligg module admin page. Simple fix is provided below. I'll try to issue a fix that will get rid of this problem before 1.0.0 final is out.
Find and remove these lines from /templates/admin/admin_modules_center.tpl.
Code:echo '<td width="15%"><strong>Latest Version: </strong>'; $updateurl = $module_info['update_url']; $fp = fopen($updateurl, 'r'); while (!feof($fp)) { $versionupdate = fgets($fp, 4096); } fclose($fp); echo $versionupdate.'</td>'; } else {
The Facebook Module for Pligg CMS!
Register, Login, and Submit Stories with Facebook. An absolute MUST HAVE for all Pligg sites!