Support Forums
Mybb Icon problem. - Printable Version

+- Support Forums (https://www.supportforums.net)
+-- Forum: Categories (https://www.supportforums.net/forumdisplay.php?fid=87)
+--- Forum: Webmaster Support (https://www.supportforums.net/forumdisplay.php?fid=36)
+---- Forum: Forum Software Help (https://www.supportforums.net/forumdisplay.php?fid=49)
+---- Thread: Mybb Icon problem. (/showthread.php?tid=16042)

Pages: 1 2


Mybb Icon problem. - mywhy10 - 02-06-2011

I am a member of HF, and somebody recommended I come here for help.
Anyways, my forum that I recently made has either been showing broken link icons, or "This forum contains no new posts." This is very ugly, and I cannot figure out how to resolve this issue.

In the templates it points to /images/codergreen/on1.gif and off1.gif, etc etc.
My website is http://modcity-forums.tk/

If you are a trusted member, I would be willing to give you an admin account to help fix this.

Thanks in advanced.

(I run the latest mybb.)


RE: Mybb Icon problem. - Fragma - 02-06-2011

I'll have a look for you. If you trust me that is.


RE: Mybb Icon problem. - mywhy10 - 02-06-2011

(02-06-2011, 11:41 AM)Fragma Wrote: I'll have a look for you. If you trust me that is.

You have a lot of posts. I'll pm you.
(02-06-2011, 11:41 AM)Fragma Wrote: I'll have a look for you. If you trust me that is.

I cant PM you. not enough posts.

Just sign up for my website, and ill admin you.



RE: Mybb Icon problem. - Fragma - 02-06-2011

Registered. Username is Fragma.


RE: Mybb Icon problem. - mywhy10 - 02-06-2011

Admin'd



RE: Mybb Icon problem. - Fragma - 02-06-2011

Your icons don't work.

It's trying to pull them from "{$theme['imgdir']}/on1.gif" but there is no image called on1.gif there.

I suggest you re-upload your images to your theme directory. Then you can make sure they're being shown through checking your Index Template.


If you still have further problems once you've done that, then go to http://www.community.mybb.com and ask for support there.

Thanks.


RE: Mybb Icon problem. - AceInfinity - 02-06-2011

You have 12 members registered and 24 forum topics. Remove some for better activity if you are dedicated enough to want a successful forum.

and Fragma is right that you need every icon in certain names before the file extension. Such as the default ones that say postbit______.gif. You wouldn't really even have to reupload them, but it would be suggested since you could take a better look at which image is which once you have a live view out of your cpanel or ftp depending on what you use.


RE: Mybb Icon problem. - mywhy10 - 02-06-2011

So where should I upload them to then?

images/codergreen?


RE: Mybb Icon problem. - Fragma - 02-06-2011

Upload them to where ever you want.

Just make sure the images actually work, and make sure they're properly being displayed by checking your code in the Index Template.


RE: Mybb Icon problem. - mywhy10 - 02-06-2011

(02-06-2011, 01:33 PM)Fragma Wrote: Upload them to where ever you want.

Just make sure the images actually work, and make sure they're properly being displayed by checking your code in the Index Template.

It's not looking in a specific location?

Code:
<dl class="forum_legend smalltext">
    <dt><img src="{$theme['imgdir']}/on1.gif" alt="{$lang->new_posts}" title="{$lang->new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /></dt>
    <dd>{$lang->new_posts}</dd>

    <dt><img src="{$theme['imgdir']}/off1.gif" alt="{$lang->no_new_posts}" title="{$lang->no_new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /></dt>
    <dd>{$lang->no_new_posts}</dd>

    <dt><img src="{$theme['imgdir']}/offlock1.gif" alt="{$lang->forum_locked}" title="{$lang->forum_locked}" style="vertical-align: middle;" /></dt>
    <dd>{$lang->forum_locked}</dd>
</dl>