Quote:
okay
in headinclude search for <script type="text/javascript" src="
in each instance you need to put http://www.yourdomain.com/forums/ after the scr=" and before the text that is already there
eg: clientscript/vbulletin_global.js would be http://www.yourdomain.com/forums/cl...letin_global.js
in navbar search for href=" and following the " in every instance, you want to insert http://www.yourdomain.com/forums
eg: <!--<td class="vbmenu_control"><a href="$vboptions[forumhome].php?$session[sessionurl]">Home</a></td>--> would be
<!--<td class="vbmenu_control"><a href="http://www.yourdomain.com/forums/$vboptions[forumhome].php?$session[sessionurl]">Home</a></td>-->
you also need to follow the same steps for each instance of script type="text/javascript" src="
in pm_popup search for window.open"/private.php? and after the " insert the url
window.open("http://www.yourdomain.com/forums/private.php?
hopefully i didn't miss anything and this will make it clearer
cheers!
|
I did this, but nothing seems to take effects, is there a difference if I put in $vboptions[bburl]/ in stead of
http://www.yourdomain.com/forums ?