MyBB Community Forums

Full Version: error images/icons
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
u have error on browser browser code is
/images/icons/tongue.gif
/images/icons/thumbsdown.gif
/images/icons/star.gif
/images/icons/smile.gif
/images/icons/sad.gif
/images/icons/rainbow.gif
/images/icons/question.gif
/images/icons/photo.gif
/images/icons/music.gif
/images/icons/lightbulb.gif
/images/icons/information.gif
/images/icons/heart.gif
/images/icons/exclamation.gif
/images/icons/bug.gif
/images/icons/brick.gif
/images/icons/biggrin.gif
/images/blackhat/paperclip.png
/images/icons/tongue.gif
/images/icons/thumbsdown.gif
/images/icons/star.gif
/images/icons/smile.gif
/images/icons/sad.gif
/images/icons/rainbow.gif
/images/icons/question.gif
/images/icons/photo.gif
/images/icons/music.gif
/images/icons/lightbulb.gif
/images/icons/information.gif
/images/icons/heart.gif
/images/icons/exclamation.gif
/images/icons/bug.gif
/images/icons/brick.gif
/images/icons/biggrin.gif
there are no .gif extension on server
images/icons
all contain .png exections you can check oput for your self here


http://mybb.knwned.com/index.php
user name 123
password 123456 see fro your self problem is in post thread button

(2015-02-02, 04:53 PM)rocket Wrote: [ -> ]u have error on browser browser code is
/images/icons/tongue.gif
/images/icons/thumbsdown.gif
/images/icons/star.gif
/images/icons/smile.gif
/images/icons/sad.gif
/images/icons/rainbow.gif
/images/icons/question.gif
/images/icons/photo.gif
/images/icons/music.gif
/images/icons/lightbulb.gif
/images/icons/information.gif
/images/icons/heart.gif
/images/icons/exclamation.gif
/images/icons/bug.gif
/images/icons/brick.gif
/images/icons/biggrin.gif
/images/blackhat/paperclip.png
/images/icons/tongue.gif
/images/icons/thumbsdown.gif
/images/icons/star.gif
/images/icons/smile.gif
/images/icons/sad.gif
/images/icons/rainbow.gif
/images/icons/question.gif
/images/icons/photo.gif
/images/icons/music.gif
/images/icons/lightbulb.gif
/images/icons/information.gif
/images/icons/heart.gif
/images/icons/exclamation.gif
/images/icons/bug.gif
/images/icons/brick.gif
/images/icons/biggrin.gif
there are no .gif extension on server
images/icons
contain .png exections you can check oput for your self here


http://mybb.knwned.com/index.php
user name 123
password 123456 see fro your self problem is in post thread button
it needs to be fixed by using SQL queries for the database (common SQL queries guidance)
UPDATE `mybb_icons` SET  `path`= REPLACE (`path`, '.gif', '.png') WHERE `path` LIKE '%.gif%'; 

Edit: for the smilies
UPDATE `mybb_smilies` SET  `image`= REPLACE (`image`, '.gif', '.png') WHERE `image` LIKE '%.gif%';