MyBB Community Forums

Full Version: After upgrade from 1.8.7 to 1.8.8 Smilies & PM icons not showing
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3
(2016-10-23, 04:40 PM)StefanT Wrote: [ -> ]
(2016-10-22, 05:03 PM)talkbasket Wrote: [ -> ]In our case all templates have been updated and PM icons still weren't showing.
In this case you have haven't updated the templates properly. It works fine with the default theme (as you can see on community forum) so there is something wrong on your end.

yeah also mine, all [img] not showing after update to 1.8.8
Did you run the upgrade script?
(2016-10-23, 05:12 PM)talkbasket Wrote: [ -> ]
(2016-10-23, 04:40 PM)StefanT Wrote: [ -> ]
(2016-10-22, 05:03 PM)talkbasket Wrote: [ -> ]In our case all templates have been updated and PM icons still weren't showing.
In this case you have haven't updated the templates properly. It works fine with the default theme (as you can see on community forum) so there is something wrong on your end.

The issue took too much time to resolve so we did what user Towers suggested in another thread - made a new install and replaced data in SQL tables to have users, posts etc. It solved all of the problems that we were having.

The only thing that would actually have done is replace the templates with fresh ones, meaning the issue was just down to your templates, templates are the only thing related to this issue that the database has anything to do with.
Please tell me what file control smilie box in new thread posting ?
like Mycode controls >> class_parser.php
WRT to the PM icons not showing the templates to look out for are private_messagebit and private_search_messagebit

<tr>
	<td align="center" class="trow1" width="1%"><img src="{$theme['imgdir']}/{$msgstatus}.png" alt="{$msgalt}" title="{$msgalt}" /></td>
	<td align="center" class="trow2" width="1%">{$icon}</td>
	<td class="trow1" width="35%"><a class="{$msgstatus}" href="private.php?action=read&amp;pmid={$message['pmid']}">{$message['subject']}</a>{$denyreceipt}</td>
	<td align="center" class="trow2">{$tofromusername}</td>
	<td class="trow1" align="right" style="white-space: nowrap"><span class="smalltext">{$senddate}</span></td>
	<td class="trow2" align="center"><input type="checkbox" class="checkbox" name="check[{$message['pmid']}]" value="1" /></td>
</tr>

You can see the differences in the path (first td), also differences in the 3rd <td>
Look man idont know anythign about this editing stuff i know that i installed the 1.8.9 upgrade exactly per the intructions of upgrade here at mybb and my pm icons do not work ..... Please help me fix this

// Determine Folder Icon
        if($message['status'] == 0)
        {
            $msgstatus = 'new_pm';
            $msgalt = $lang->new_pm;
            $msgfolder = 'new_pm.png';
        }
        else if($message['status'] == 1)
        {
            $msgstatus = 'old_pm';
            $msgalt = $lang->old_pm;
            $msgfolder = 'old_pm.png';
        }
        else if($message['status'] == 3)
        {
            $msgstatus = 're_pm';
            $msgalt = $lang->reply_pm;
            $msgfolder = 're_pm.png';
        }
        else if($message['status'] == 4)
        {
            $msgstatus = 'fw_pm';
            $msgalt = $lang->fwd_pm;
            $msgfolder = 'fw_pm.png';
        }

this is my private.php this was already in there and i went there to edit it to change to what was stated earlier in this thread.....


SOmeone please tell me what i need to do i have the revolution theme
You need to search for updated templates.
It's not private.php that's the issue, it's your templates. Go to ACP > Templates & Themes > Templates > Find Updated Templates, these are all templates that have been updated since your templates were created, you need to look at the differences and apply the changes.
I updated from 1.8.7 to 1.8.10 and my images and videos stopped showing. They showed up fine in the editor when creating a post. Also, the settings to show images and videos in the user cp options menu were on.

I was able to fix this by copying the old "class_parser" from 1.8.7 to the new, in /inc folder.

I am using revolution theme. I tried to look at the templates in ACP - Templates & Style - Templates - Find updated templates. All I could see were some files showed and in the options "diff report", "revert to original" and "full edit". I could not find an "apply".

What is the issue? Is the theme no longer entirely compatible with the new mybb?
Because it's a manual action, you need to look at the diff and apply the changes that have been made if there's other customisations you need to keep. We can't apply changes if the template has been edited, so it's something that needs to be added in manually.
Pages: 1 2 3