PDA

View Full Version : admin cp / navbar link


cheechfxsti
10-30-2008, 02:08 PM
When I select the AdminCP link from the navbar on the CMPS page it just reloads the CMPS page again. I looked at my Navbar Replacements and this is what I got......

memberlist.php
usercp.php
register.php
faq.php
calendar.php
search.php
login.php
forumdisplay.php
profile.php
private.php
subscription.php
member.php
online.php
chatroom.php
arcade.php
vbookie.php
group.php

Am I missing the link to the adminCP, and thats why its not working? This is the only link on the navbar that doesn't work, unless you are on the forumhome page and then it works fine. :confused:

Brian
10-31-2008, 10:38 AM
Sounds like you'll need to edit your navbar template and add "$vboptions[bburl]/" in front of the link to your admincp folder.

Our Sponsors
 

cheechfxsti
10-31-2008, 12:19 PM
Like this Brian?


<td class="vbmenu_control"><a href="$vboptions[bburl]/$admincpdir/index.php$session[sessionurl_q]">AdminCP</a></td>

I did it this way and it just leads me back to the forumhome page, not the admincp.

Brian
10-31-2008, 03:11 PM
That should do the trick... The only other thing I can suggest would be to hard-code the link.

<td class="vbmenu_control"><a href="http://yoursite.com/admincp/index.php$session[sessionurl_q]">AdminCP</a></td>

Our Sponsors
 

cheechfxsti
10-31-2008, 04:14 PM
And thats what I did. Thanx for your help sir.