after i installed php nuke, how do make a link on the left menu to my forum? my forum adress is www.2046.x10hosting.com/forums
after i installed php nuke, how do make a link on the left menu to my forum? my forum adress is www.2046.x10hosting.com/forums
phpnuke comes with a forums module (outdated) but the way i did it was add a redirect script to the forums module directory.
Then just name the file index.php and it will now go to your forums.Code:<HTML> <HEAD> <TITLE> Title? </TITLE> </HEAD> <BODY> <SCRIPT LANGUAGE=javascript> window.location='page name' </SCRIPT> <P> </BODY> </HTML>
As phpbb-nuke forums are totally different coding to orignal phpbb and cant be updated unless phpbuke brings out a new module.
Also Many of the patchs and cracks dont work well and many dont exist anymore.
Any how keep the orginal index.php on your computer as this maybe need in time if you change back to a new updated version of phpnuke forums (if they ever come out)
Last edited by disturbedart; 08-26-2006 at 06:51 AM.
you can get the latest phpnuke forums... it came out long ago. its not official but its legit. u can find them at http://www.nukeresources.com/
as for ur forums, i see u removed/screwed up :D the forums folder from ur phpnuke. if u want it to redirect to ur real forums then:
you can do what disturbedart said but not all people support javascript. most but not all.
delete ur forums folder(if not done already, located in ur modules folder). recreate it(should be empty..), create a php file with the following source(edit it to ur likings...).
dont forget to fix the link, and that should be it.PHP Code:<?php
if (!defined('MODULE_FILE')) {
die ("You cannot access this file directly...");
}
header("Location: http://www.example.com");
?>
Last edited by TarinC; 08-26-2006 at 11:59 AM.