vBulletin Modifications

vB Staff Titles

Welcome to vBHackers.com! - vBHackers Updates:

Go Back   vBulletin Modifications > vBulletin Database System > vBulletin 3.5 / 3.6 Hack Releases

Reply
 
Thread Tools Search this Thread
Download Options
You Must Register First
To Download This Modification

Bugs
No bugs found in the system. If you have found a bug, please report a bug here
Submit A Bug | View All Bugs

Advertisement
  
Supported
[vB 3.5.0] vB Staff Titles (802)
Released: 08-11-2005, 02:59 PM
Modification Information:
Ken Iovino's Avatar Author: Ken Iovino
Last Online: 06-28-2008
Hack Version: 1.0 Installer Included: 1 Additional queries added to database: 1
New Templates: 0 Template Edits: 1 File Edits: 0
New Files: 0 New Phrases: 4 Installation Time (In Minutes): 2

vB Staff Title

vBulletin 3.5.0 RC 2
www.vBHackers.com

What this does
This will give you the option to add an additional title for staff members, or any user you would like to add. This can be done with conditions only, like if userid = X show this. But this will make things much eaiser to edit and manage. And I spend alot of time in the ACP.

New Features Since Last Release
  • Option to turn the staff title on/off per user.
    This is good so if you want to temporarily disable someones staff title, but don't want to lose the settings.
  • HTML Mark Available now
    This will make it more customizable

Show rank in your members profile
To show the rank in your members profile. Please see this post


Note:
This hack will work for vBulletin Version 3.5.0 RC-1 and RC-2 ONLY!
This is a port from my original hack which can be found here. Had a couple of PMs about it so I said why not.

To do list...
  • Time to install: 3 minutes
  • Queries to run: 4
  • File Mods: 0
  • Templates to edit: 1
  • Templates to add: 0
  • New Phrases: 4
  • New Plugins: 2

Please read carefully and make all the necessary changes as stated. This is will work if installed properly.
PLEASE REMEMBER TO BACKUP BEFORE YOU BEGIN! If you like this hack

Help & Support
Before asking for support Please make sure you have done all necessary changes! If you still need support please post a reply here.

Please post bugs and errors here. Hope you like, feedback welcomed.



Screenshots
Screenshots
File Type: gif admincp.gif (11.2 KB, 2187 views)
File Type: gif postbit.gif (32.9 KB, 3795 views)


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Add a Comment!
Old 01-17-2007, 08:26 PM   #61
vB Newbie
Join Date: Oct 2006
Illustrious is on a distinguished road

Default

Quote:
Originally Posted by Crys View Post
Where is the phpmyadmin? I have no such folder or file in the ftp. Closest thing I have would be the admincp which has a user.php file within. If so, where in the file?

I'm honestly not very familiar with all this so if you could show me or attach screen shots, that would make it so much more helpful.

Thanks,

~ Crys ^^
phpmyadmin is usually backend, you can find it in the cpanel if you have it. You have to insert the line into the SQL.




Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored Links
Old 02-04-2007, 12:16 PM   #62
Junior Member
Join Date: Aug 2005
Xplorer4x4 is on a distinguished road

Default

I get the same error mentioned above:
Quote:
Fatal error: Field isstaffrank is not defined in $validfields in class vb_datamanager_user in /includes/class_dm.php on line 485
The think I can't understand is when i go into phpmyadmin all the proper tables exist, and seem to have the proper values(INT(6) UNSIGNED NOT NULL).

I suppose I will try a manual install of the mentioned table, but seeing that it does exist with proper values baffles me as to why the error exists.

Thanks for all your time.




Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-04-2007, 05:27 PM   #63
Michael Biddle
Administrator
Michael Biddle's Avatar
Join Date: Feb 2005
Real Name: Michael Biddle
Location: Anaheim
Michael Biddle is on a distinguished road

Default

enter that into ur sql tab in phpmyadmin

ALTER TABLE user ADD (isstaffrank INT(6) UNSIGNED NOT NULL DEFAULT '')");
__________________
Support will ONLY be offered through forums
Michael Biddle / vBHackers.com
vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations

vBSEO Google Sitemap Generator - Version 2.2 Released Mandatory Upgrade for vBSEO 3.2.0 GOLD

6X Traffic - $1400 in One Day with vBSEO! Imagine What the vBSEO Patent Pending Technology Can Do For You.

Crawlability Network: vBulletin SEO | vBulletin Hackers




Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-05-2007, 01:53 AM   #64
Junior Member
Join Date: Aug 2005
Xplorer4x4 is on a distinguished road

Default

I got this error:
Quote:
There seems to be an error in your SQL query. The MySQL server error output below, if there is any, may also help you in diagnosing the problem

ERROR: Unclosed quote @ 70
STR: "
SQL: ALTER TABLE user ADD (isstaffrank INT(6) UNSIGNED NOT NULL DEFAULT '')")


SQL query:

ALTER TABLE user ADD (isstaffrank INT(6) UNSIGNED NOT NULL DEFAULT '')")

MySQL said: Documentation
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '")' at line 1




Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-05-2007, 01:57 AM   #65
Michael Biddle
Administrator
Michael Biddle's Avatar
Join Date: Feb 2005
Real Name: Michael Biddle
Location: Anaheim
Michael Biddle is on a distinguished road

Default

woops forgot to take off end column, try

ALTER TABLE user ADD (isstaffrank INT(6) UNSIGNED NOT NULL DEFAULT '');
__________________
Support will ONLY be offered through forums
Michael Biddle / vBHackers.com
vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations

vBSEO Google Sitemap Generator - Version 2.2 Released Mandatory Upgrade for vBSEO 3.2.0 GOLD

6X Traffic - $1400 in One Day with vBSEO! Imagine What the vBSEO Patent Pending Technology Can Do For You.

Crawlability Network: vBulletin SEO | vBulletin Hackers




Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-05-2007, 02:06 AM   #66
Junior Member
Join Date: Aug 2005
Xplorer4x4 is on a distinguished road

Default

Ok i ran it and it said table existed. So I dropped the table and run the query, but i still get the same error.
Quote:
Fatal error: Field isstaffrank is not defined in $validfields in class vb_datamanager_user in /includes/class_dm.php on line 485




Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-05-2007, 02:08 AM   #67
Michael Biddle
Administrator
Michael Biddle's Avatar
Join Date: Feb 2005
Real Name: Michael Biddle
Location: Anaheim
Michael Biddle is on a distinguished road

Default

im installing this now, ill try and fix asap
__________________
Support will ONLY be offered through forums
Michael Biddle / vBHackers.com
vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations

vBSEO Google Sitemap Generator - Version 2.2 Released Mandatory Upgrade for vBSEO 3.2.0 GOLD

6X Traffic - $1400 in One Day with vBSEO! Imagine What the vBSEO Patent Pending Technology Can Do For You.

Crawlability Network: vBulletin SEO | vBulletin Hackers




Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-05-2007, 02:11 AM   #68
Junior Member
Join Date: Aug 2005
Xplorer4x4 is on a distinguished road

Default

Thank You




Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-05-2007, 02:13 AM   #69
Michael Biddle
Administrator
Michael Biddle's Avatar
Join Date: Feb 2005
Real Name: Michael Biddle
Location: Anaheim
Michael Biddle is on a distinguished road

Default

ok i just insatlled on 3.6.4 and it ran great, what version are you on?
__________________
Support will ONLY be offered through forums
Michael Biddle / vBHackers.com
vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations

vBSEO Google Sitemap Generator - Version 2.2 Released Mandatory Upgrade for vBSEO 3.2.0 GOLD

6X Traffic - $1400 in One Day with vBSEO! Imagine What the vBSEO Patent Pending Technology Can Do For You.

Crawlability Network: vBulletin SEO | vBulletin Hackers




Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 02-05-2007, 02:25 AM   #70
Junior Member
Join Date: Aug 2005
Xplorer4x4 is on a distinguished road

Default

I am on 3.6.4 as well




Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply



LinkBacks (?)
LinkBack to this Thread: http://www.vbhackers.com/f76/vb-staff-titles-1754/
Posted By For Type Date
3.6.4 - vB Staff Titles - форум vBulletin.net.ru This thread Refback 01-27-2007 03:08 PM
3.6.4 - vB Staff Titles - форум vBulletin.net.ru This thread Refback 01-27-2007 02:41 AM
Mods for ic - Lan1 This thread Refback 12-02-2006 11:29 PM

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Staff Positions Ken Iovino Announcements 0 12-27-2005 04:37 PM
'vB Staff Titles' Martyn vBulletin Modification Requests 0 12-01-2005 10:05 PM
Users Only Allowed to Send PMs to Staff (staff excluded) firas vBulletin Modification Requests 3 09-08-2005 05:04 AM


All times are GMT -3. The time now is 11:44 PM.


SEO by vBSEO 3.2.0 ©2008, Crawlability, Inc. (Patent Pending)