I would like to know if its possible to make WSNLinks (very cool, advanced link indexing script) a module of PHPNuke. I know in PHPNuke you can create a new directory under the Modules directory and make an index.php file with this content:
<?php
if (!eregi("modules.php", $PHP_SELF)) {
die ("You can't access this file directly...");
}
$index = 0; // 0 : do not show right blocks - 1:show right blocks
require_once("mainfile.php");
$module_name = basename(dirname(__FILE__));
include("header.php");
OpenTable();
include("URL of content to include in frame");
CloseTable();
include("footer.php");
?>
What this does is put a php or html file in a frame right in the middle of your PHPNuke site.
there are many problems with doing this, though. Conflicting style references, 2 different membership systems, and once you click on any link in the WSNLinks frame, the nuke site and the frame that WSNLinks was in are gone and you are in WSNLinks.
Any suggestions, link to similar topics would be great... thanks in advance
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum