PDA

View Full Version : Help Someone please...


EuroPk
02-18-2007, 05:02 PM
I've recently been learning vbulletin and have purchased it , my inquiry is this , i've got vbadvanced portal installed

pointing to www.europk.net


when my forum is www.europk.net/forum


everything on www.europk.net is thinking that /forum dont exist so its trying to call for instance http://europk.net/usercp.php


it should be saying

http://europk.net/forum/usercp.php


Could someone please help?

perhaps tell me why this is happening?

TTG
02-18-2007, 05:29 PM
You need to tell vbadvanced where your links are located.

Add the code below to the front of all your links in the header and navbar.

$vboptions[bburl]/

So that

<a href="faq.php$session[sessionurl_q]" accesskey="5">$vbphrase[faq]</a>

becomes

<a href="$vboptions[bburl]/faq.php$session[sessionurl_q]" accesskey="5">$vbphrase[faq]</a>

EuroPk
02-18-2007, 05:56 PM
You need to tell vbadvanced where your links are located.

Add the code below to the front of all your links in the header and navbar.

$vboptions[bburl]/

So that

<a href="faq.php$session[sessionurl_q]" accesskey="5">$vbphrase[faq]</a>

becomes

<a href="$vboptions[bburl]/faq.php$session[sessionurl_q]" accesskey="5">$vbphrase[faq]</a>

i dont know where to find this :(