MyBB Community Forums

Full Version: ???? problem in usercp_nav_pmfolder
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hi guys

please see attachment pic...

i can not slove "???" problem !!

how can i correct it?

thanks
Have you recently changed any of your language files?????
No i just move site to direct admin...
i cant find langauge file for this part for edit.
Those are in global.lang.php

Line 322 onwards.


$l['folder_inbox'] = "Inbox";
$l['folder_sent_items'] = "Sent Items";
$l['folder_drafts'] = "Drafts";
$l['folder_trash'] = "Trash Can";
$l['folder_untitled'] = "Untitled Folder";

You can even check and edit from ACP > Configuration > Languages : Edit language variables > global.lang.php
(2014-01-22, 08:14 PM)effone Wrote: [ -> ]Those are in global.lang.php

Line 322 onwards.


$l['folder_inbox'] = "Inbox";
$l['folder_sent_items'] = "Sent Items";
$l['folder_drafts'] = "Drafts";
$l['folder_trash'] = "Trash Can";
$l['folder_untitled'] = "Untitled Folder";

You can even check and edit from ACP > Configuration > Languages : Edit language variables > global.lang.php

Thanks effone

i find those part , but language is correct !
i edit that but it's not effect any change and again show " ???? " !
can i solve this problem via phpmyadmin
i think problem in database ( Encoding Or ...)
Backup you global.lang.php file and replace it with the original one Smile
(2014-01-22, 08:34 PM)marcus123 Wrote: [ -> ]Backup you global.lang.php file and replace it with the original one Smile

i do ,but not effect
You are not completely wrong, ErrorX.

There is a code in usercp.php that updates the user's PM folders in 'users' table with the default values, if not exists:

if(!$mybb->user['pmfolders'])
{
	$mybb->user['pmfolders'] = "1**".$lang->folder_inbox."$%%$2**".$lang->folder_sent_items."$%%$3**".$lang->folder_drafts."$%%$4**".$lang->folder_trash;
	$db->update_query("users", array('pmfolders' => $mybb->user['pmfolders']), "uid='".$mybb->user['uid']."'");
}

You can check the columns of users in 'users' table through phpmyadmin and if you find those symbols there you have to replace with the default value (or I guess you can blank the value out and it will be regenerated to defaults).

[Image: oSjfGBh.png]
very thanks effone .
sloved ♥