advanced userbar 2.1 - no admincp tab

networker007

New Member
hello brothers,

i use vbulletin 3.7.4 (german) and the userbar doesnt work correctly. the bars are shown - but in the admincp there are no tabs.

i modified my files like the discription and upload the files. whats wrong? can anyone help me?
 
here is a screenshot of my admincp - no admin tab - vbulletin 3.7.4 german

i have modified it like the discription:
Code:
____________________________
OPEN admincp/image.php


(1)
FIND :
-----------
case 'smilie':
	$itemtype = 'smilie';
	$itemtypeplural = 'smilies';
	$catid = 3;
	break;----------
ADD BELOW:
----------
case 'userbar':
	$itemtype = 'userbar';
	$itemtypeplural = 'userbars';
	$catid = 4;
	break;
----------

(2)
FIND:
----------
$tables = array('avatar' => $vbphrase['avatar'], 'icon' => $vbphrase['post_icon'], 'smilie' => $vbphrase['smilie']);
---------
REPLACE WITH:
----------
$tables = array('avatar' => $vbphrase['avatar'], 'icon' => $vbphrase['post_icon'], 'smilie' => $vbphrase['smilie'], 'userbar' => $vbphrase['userbar']);
----------

(3)
FIND:
----------
'avatarid' => TYPE_INT,
'iconid'   => TYPE_INT,
'smilieid' => TYPE_INT,
----------
ADD BELOW:
----------
'userbarid' => TYPE_INT,
----------

(4)
FIND:
----------
if ($vbulletin->GPC['avatarid'])
{
	$id = $vbulletin->GPC['avatarid'];
}
else if ($vbulletin->GPC['iconid'])
{
	$id = $vbulletin->GPC['iconid'];
}
else if ($vbulletin->GPC['smilieid'])
{
	$id = $vbulletin->GPC['smilieid'];
}
----------
ADD BELOW:
----------
else if ($vbulletin->GPC['userbarid'])
{
	$id = $vbulletin->GPC['userbarid'];
}
----------

Save & Close
 
Sollten die tabs überhaupt im adminbereich sein oder stecken die unter den normalen einstellungen? Manchmal musst du zwischendrin schauen die verstecken sich teilweise.

Sicher das du auch wirklich JEDEN schritt gemacht hast?
Wenn ja, kann es an deiner 3.7.4 version liegen.
 
Zipfelklatscher said:
Sicher das du auch wirklich JEDEN schritt gemacht hast?
Wenn ja, kann es an deiner 3.7.4 version liegen.

ich habe wirklich jeden Schritt vollzogen. Habs 3x gecheckt... Schade, wenns an der Version 3.7.4 liegen sollte.

Mit der Userbar 1.0 geht zwar das backend (admincp) jedoch NICHT das Frontend, uaaa
-------------------------------------------------------------
I've really every step. I ve checked this 3 times ... Pity if the version 3.7.4 should lie.

With the 1.0 Userbar goes through the backend (admincp) but not the front end, uaaa
 
Back
Top