MyBB Community Forums

Full Version: Portal has broken images
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

My portal does not display the little icons on the right of Search, Member List, Calendar and Help.

Anyone know how to fix this?

Link: Click Here
Are you using the .htaccess "DirectoryIndex forums/portal.php" method to redirect to portal?
Yes, I am.
I'm facing the same problem.
i've tried that method yesterday, seem like it does not work when your forum software is not installed in the root folder.
the reason is: your image reference was change to root/image dir instead of root/forum/image dir where the images are.

haytoch is now helping me with this issue. I will try to get back to you when i find a solution. Meanwhile let's hope someone can provide some really good step by step guide here.

You can try this for now, i'm not sure whether it works.
<IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteRule ^$ forum/portal.php [L,QSA]
</IfModule>
(2010-11-11, 07:55 AM)truejeff Wrote: [ -> ]I'm facing the same problem.
i've tried that method yesterday, seem like it does not work when your forum software is not installed in the root folder.
the reason is: your image reference was change to root/image dir instead of root/forum/image dir where the images are.

haytoch is now helping me with this issue. I will try to get back to you when i find a solution. Meanwhile let's hope someone can provide some really good step by step guide here.

You can try this for now, i'm not sure whether it works.
<IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteRule ^$ forum/portal.php [L,QSA]
</IfModule>
Does that go to the .htaccess file?
yes into your .htaccess file in your root..
In the header template, find:
<ul>
					<li><a href="{$mybb->settings['bburl']}/search.php"><img src="{$theme['imgdir']}/toplinks/search.gif" alt="" title="" />{$lang->toplinks_search}</a></li>
					<li><a href="{$mybb->settings['bburl']}/memberlist.php"><img src="{$theme['imgdir']}/toplinks/memberlist.gif" alt="" title="" />{$lang->toplinks_memberlist}</a></li>
					<li><a href="{$mybb->settings['bburl']}/calendar.php"><img src="{$theme['imgdir']}/toplinks/calendar.gif" alt="" title="" />{$lang->toplinks_calendar}</a></li>
					<li><a href="{$mybb->settings['bburl']}/misc.php?action=help"><img src="{$theme['imgdir']}/toplinks/help.gif" alt="" title="" />{$lang->toplinks_help}</a></li>
				</ul>

Replace with:
<ul>
					<li><a href="{$mybb->settings['bburl']}/search.php"><img src="{$mybb->settings['bburl']}/toplinks/search.gif" alt="" title="" />{$lang->toplinks_search}</a></li>
					<li><a href="{$mybb->settings['bburl']}/memberlist.php"><img src="{$mybb->settings['bburl']}/toplinks/memberlist.gif" alt="" title="" />{$lang->toplinks_memberlist}</a></li>
					<li><a href="{$mybb->settings['bburl']}/calendar.php"><img src="{$mybb->settings['bburl']}/toplinks/calendar.gif" alt="" title="" />{$lang->toplinks_calendar}</a></li>
					<li><a href="{$mybb->settings['bburl']}/misc.php?action=help"><img src="{$mybb->settings['bburl']}/toplinks/help.gif" alt="" title="" />{$lang->toplinks_help}</a></li>
				</ul>