that fixed the date! thanks
as for the profile when I went through the setup process it said forum folder so i put where the forum address is
Quote:
|
xxxxxxxxxx.com/modules.php?name=Forums&file=index/profile.php?mode=viewprofile&u=2
|
i changed it to the root but it still goes to that 404. that whole front part is the messed up part and i don't know how to get rid of it
Quote:
|
Originally Posted by omegatron Your profile button should work fine as the profile being viewed is that of phpbb if you have things set right
$profilelink = "{$Globals['vbulletin']}/profile.php?mode=viewprofile&u=$tuserid";
As far as your date thing easy enough fix here
in nuke.php
$userprofile[4] = $regdate; // Registered Date
would become
$userprofile[4] = strtotime($regdate); // Registered Date |