The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
||||
|
||||
![]()
i want to change some smilies 'Text to Replace'
for example old 'Text to Replace' is :lol: new 'Text to Replace' is :-) can :lol: still be showing/redirect to new 'Text to Replace' :-) smilies some way? too bad if old posts that still using 'Text to Replace' :lol: the smilies are not showing again |
#2
|
||||
|
||||
![]()
If you change the replacement text of a Smiley in the Smileys Manager, the old text will not work anymore, and all that will show in old posts is the text. If you don't want that, you can just upload the Smiley under a different file name, and use different text for it. However, the old Smiley will still show in the Smileys List whenever it's opened. You can push it down to the bottom or to another category, if you like.
You could also try using something like Word Replacement to always change the old :lol: to the new text. |
#3
|
||||
|
||||
![]()
Change your smiley settings then...
Just run an MySQL query on your post table... Code:
update `PREFIX_post` set pagetext = replace (pagetext, ':lol:' , ':-)') Replace "PREFIX_" with whatever prefix you set in your config.php file, if any. |
#4
|
||||
|
||||
![]() Quote:
i already checked config.php, which one prefix that you mean actually here is the config.php content $config['Database']['tableprefix'] = ''; $config['Misc']['cookieprefix'] = 'bb'; |
#5
|
||||
|
||||
![]()
table prefix, yours in blank so the query would be:
Code:
update `post` set pagetext = replace (pagetext, ':lol:' , ':-)') |
#6
|
||||
|
||||
![]() Quote:
i have similar problem now my forum url is changed, from with www ( http://www.domain.com ), to without www ( http://domain.com ) i had try this update `post` set pagetext = replace (pagetext, 'www.domain.com', 'domain.com') or update `post` set pagetext = replace (pagetext, 'http://www.domain.com', 'http://domain.com') but its not works, its just says Affected Rows: 0 (3.0977s) please help, how to change it in post table, there are a lot of them in post table |
#7
|
||||
|
||||
![]()
I responded to your vb.com thread.
|
#8
|
|||
|
|||
![]()
open vbulletin option >> site name / url / contact details >> remove www from your 'forum url' and 'homepage url'.
Quote:
|
![]() |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|