PDA

View Full Version : Change the Homeurl


Tombstone
06-17-2004, 11:27 AM
I have used the dynamic page settings to put a home/forums link on my page but it is pointing to a different link that what I need it to.

We run this on 'nix box and we use htpasswd files so unless I point them to exact file, the server believes it is a new login and a password box opens up. Users aren't that bright.

This is the code I used in the navbar
<td class="vbmenu_control"><if condition="THIS_SCRIPT == 'adv_index'"><a href="$vboptions[bburl]?$session[sessionurl]"> Forums <else /> <a href="$vboptions[homeurl]?$session[sessionurl]"> Home </if></a></td>

But I need to be able to change the homeurl function.

Any ideas?

Tombstone
06-17-2004, 11:31 AM
I tried hard coding the URL but when I went to the forums and I click on the home button it took me to the hard coded forums index. Any ideas?

Our Sponsors
 

Brian
06-17-2004, 12:04 PM
$vboptions[homeurl]?$session[sessionurl]

Change that to:

/index.php?$session[sessionurl]

;)