MyBB Community Forums

Full Version: Smiles not working
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
My smiles arent working correctly on the site. Ive looked at other threads with same deal but im not sure if theyre having the same problem as me. when i try to use smiles, it just shows the title of which smile it is.
www.carsmeet.net
Test acc:

User:sitetester

Pass:test123
your forum theme is looking for gif files of smilies & post icons and 1.8.x theme uses png images

either you can add gif smilies & icons from earlier 1.6.x version files or fix the issue using SQL queries

UPDATE `mybb_icons` SET  `path`= REPLACE (`path`, '.gif', '.png') WHERE `path` LIKE '%.gif%';
UPDATE `mybb_smilies` SET  `image`= REPLACE (`image`, '.gif', '.png') WHERE `image` LIKE '%.gif%';  

see also common sql queries guidance