 |
 |
 |
 |
Registered: 05/23/08
Posts: 10
|
|
|
 |
 |
 |
 |
|
 |
 |
 |
 |
|
Express Hosting
"We are the official hosting company of UBB.threads. Ask us about our free migration services to migrate your UBB.threads installation."
|
|
|
 |
 |
 |
 |
 |
 |
 |
 |
#191018 - 07/13/07 11:24 PM
Re: Custom title..
[Re: SD]
|
journeyman
|
Registered: 05/24/07
Posts: 58
Loc: NB, Canada
|
|
Thnaks, I just tried again but I keep getting this error: REPLACE INTO ubbt_MODERATOR_PERMISSIONS (USER_ID,MODERATOR_CAN_EDIT_USERS,MODERATOR_CAN_APPROVE_POSTS,MODERATOR_CAN_EDIT_POSTS,MODERATOR_CAN_LOCK_POSTS,MODERATOR_CAN_MOVE_POSTS,MODERATOR_CAN_DELETE_POSTS,MODERATOR_CAN_STICK_POSTS) VALUES ( '2474' , '' , '' , '1' , '1' , '1' , '1' , '1' )
Incorrect integer value: '' for column 'MODERATOR_CAN_EDIT_USERS' at row 1 I'm not a programmer, so that's completely Greek to me!
|
|
Top
|
|
|
|
|
 |
 |
 |
 |
 |
 |
 |
 |
#191024 - 07/14/07 01:51 AM
Re: Custom title..
[Re: Gizmo]
|
|
Registered: 11/09/06
Posts: 3384
|
|
Well I think there should probably be 3 separate Title methods. 1. Post Count Title (changes depending on amount of posts) 2. Custom Tilte (user, mod, admin changed or allowed) 3. Administrator Assigned Tilte on a per user basis When #3 is used it disables #1 That would seem to me to appease, handle everyones request as from what I gather more and more users appear to be complaining of how it now works. Best I can suggest is for now to manually go in with like MySQLAdmin or similar and overwrite the Title as often as needed. Here is some basic code that SD and I worked on (mostly by SirDude) DO NOT run it as is. Just posted so you can get an idea of how to modify it by running in Control Panel. If you want to do something like this then modify it to run on only who you want it to run on. You MUST edit - do not run directly or you will modify ALL Moderators. UPDATE ubbt_user_profile as t1, ubbt_users as t2
SET t1.USER_TITLE='Moderator'
WHERE t2.USER_MEMBERSHIP_LEVEL='Moderator'
AND t1.USER_ID=t2.USER_ID Remember this is only an example. I really hope that Rick will at least think of implementing something like I suggested above or similar. .
|
|
Top
|
|
|
|
|
 |
 |
 |
 |
|
|