php nuke

disturbedart

Member
Messages
474
Reaction score
1
Points
18
phpnuke comes with a forums module (outdated) but the way i did it was add a redirect script to the forums module directory.

Code:
<HTML>
<HEAD>
<TITLE>
Title?
</TITLE>
</HEAD>
<BODY>
<SCRIPT LANGUAGE=javascript>
window.location='page name'
</SCRIPT>
<P>
</BODY>
</HTML>

Then just name the file index.php and it will now go to your forums.
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:

TarinC

New Member
Messages
698
Reaction score
0
Points
0
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...).
PHP:
<?php
if (!defined('MODULE_FILE')) {
 die ("You cannot access this file directly...");
}
 
header("Location: http://www.example.com");
?>

dont forget to fix the link, and that should be it.
 
Last edited:

disturbedart

Member
Messages
474
Reaction score
1
Points
18
yes true and yes tarinC way work for crossplatform browsers.
Javascript is just an easy way out.
Meh php i need to learn more
 
Top