中文命名的文档,上传是乱码 -- 显示的
打开后, 中文部分是乱码
Comment 1 by project member ffdixon, Nov 08, 2010

Translation "Chinese name of the document, the upload is garbled - show opens, the Chinese part is garbled"

Do you have a sample Chinese document that you can attach to this bug and give us steps to reproduce? - 你有一个示例中的文件,您可以连接到这个错误,给我们的步骤来重现?

Also, could you try uploading a PDF version of the document and let us know if you still see the same problems. 此外,你能尝试上传一个文件的PDF版本,让我们知道,如果你仍然可以看到同样的问题。
Summary: Chinese document is garbled - 中文文档是乱码
Comment 3 by pieafriend, Nov 13 (4 days ago)

Hi,

It should not be a bug of BBB, but linux doesn't have the Chinese fonts of the uploaded documents. What you need to do is to add the appropriate Chinese fonts to linux and then you will fix this issue.

In short, you can fix it in the following steps:

1.copy all Chinese fonts from Windows OS to the appropriate folder in Ubuntu.

cd /usr/shar/fonts

sudo mkdir 11

sudo chmod 755 11

cp "the fonts" /usr/share/fonts/11

2. Build fonts cache,

sudo mkfontscale

sudo mkfontdir

sudo fc-cache –fv

Then reload the system.

Now you fix it!

The following are the Chinese guide for your easy reference. Hope you fix it:

1:复制中文字体,比如win下的所有到对应的位置

cd /usr/shar/fonts

sudo mkdir 11

sudo chmod 755 11

cp /下载后文件路径/11.ttf /usr/shar/fonts/11

2:建立字体缓存

sudo mkfontscale

sudo mkfontdir

sudo fc-cache –fv
重启,即可识别中文字体。
Comment 4 by project member ffdixon, Nov 13 (4 days ago)

Hi,

I agree that this isn't a bug for BigBlueButton.  While we can't advocate that you copy the fonts from a windows machine (as there is probably a license associated with them), another option is to always upload a PDF document to BigBlueButton.

Using PDF the document converts directly to SWF and there is no need for font substitution on the BigBlueButton server.

In short, whenever possible, use PDF.

修改bigbluebutton白板上传中文乱码的更多相关文章

  1. ueditor 1.4.3 gbk asp 上传中文乱码 终极解决方法 ie6 ie8 也适用

    [摘要:百度编纂器1.43 gbk asp 题目 1.firefox3.0下 单图上传 面没有了 面多图上传 中央的蓝色按钮(即 面击挑选图片)没有表现(附件上传出那个题目) 没有晓得我的水狐吃翔了 ...

  2. Android 关于HttpClient上传中文乱码的解决办法

    使用过HttpClient的人都知道可以通过addTextBody方法来添加要上传的文本信息,但是,如果要上传中文的话,或还有中文名称的文件会出现乱码的问题,解决办法其实很简单: 第一步:设置Mult ...

  3. 关于HttpClient上传中文乱码的解决办法

    使用过HttpClient的人都知道可以通过addTextBody方法来添加要上传的文本信息,但是,如果要上传中文的话,或还有中文名称的文件会出现乱码的问题,解决办法其实很简单: 第一步:设置Mult ...

  4. PHP 中move_uploaded_file 上传中文文件名失败

    项目需要上传文件名保持不变,发现上传中文失败:错误如下: move_uploaded_file(public/upload/files//-/\开密二次开发.rar): failed to open ...

  5. Java中FTPClient上传中文目录、中文文件名乱码问题解决方法【好用】

    转: Java中FTPClient上传中文目录.中文文件名乱码问题解决方法 问题描述: 使用org.apache.commons.net.ftp.FTPClient创建中文目录.上传中文文件名时,目录 ...

  6. php上传中文文件文件名乱码问题

    php上传文件是最最基础的一个技术点,但是深入进去也有不少问题需要解决,这不,上传中文文件后,文件名变成了乱码. 下面是问题代码,很简单: 1.问题代码 html部分: <html> &l ...

  7. 完美解决ExtJs6上传中文文件名乱码,后端SpringMVC

    ExtJs上传中文文件名乱码,观察请求. ExtJs6上传乱码从后台无法解决,因为文件名请求里面就已经乱码了,后台无法解码. 除非请求参数正确没有乱码,后台因为编码设置不一样,可以通过后台处理乱码 这 ...

  8. wordpress 支持上传中文名称文件

    添加文章难免要传个图.文件啥的,可是呢,上传中文名称的文件竟然不行,找了半天,中文乱码,脑残了,竟然忘了这个事,哎 修改其实很简单,只需要两步 1./wp-admin/includes/file.ph ...

  9. ruby -- 进阶学习(四)paperclip上传中文命名图片

         Paperclip -- 上传中文命名图片 使用Paperclip和ImageMagick插件来处理图片的时候,上传非中文命名的图片时,只要把配置写好就没问题 if you need to ...

随机推荐

  1. java数据结构和算法------合并排序

      package iYou.neugle.sort; public class Merge_sort { public static void MergeSort(double[] array, i ...

  2. 从JetBrains公司产品给我的商业模式启示

    JetBrains是捷克一家公司,专门从事IDE工具的开发,运营的产品有十几个.我因为使用JavaScript IDE工具而了解了WebStorm.进而了解了开发WebStorm的公司JetBrian ...

  3. ImportError: No module named _winreg

    在Flask项目部署到linux上时出现了一个问题,但是在windows上是好的,没有问题.以下是bug Traceback (most recent call last): File "f ...

  4. NEST.net Client For Elasticsearch简单应用

    NEST.net Client For Elasticsearch简单应用 由于最近的一个项目中的搜索部分要用到 Elasticsearch 来实现搜索功能,苦于英文差及该方面的系统性资料不好找,在实 ...

  5. AlarmManager使用注意事项

    在使用AlarmManager实现闹钟需要注意的是,intent和pendingintend的context如果是activity,那么当activity回收之后,context对象则不能被Alarm ...

  6. 6、android 普通日志输出到SD卡

    这是本人见过写博文最负责的一个人: http://www.crifan.com/android_try_use_android_logging_log4j_to_output_log_to_sd_ca ...

  7. Entity Framework技术导游系列开篇与热身

    在微软平台写程序有年头了,随着微软数据存取技术的持续演化,我在程序中先后使用过ODBC.DAO.ADO.ADO.NET.LINQ to SQL. Entity Framework这些技术. 近几年来, ...

  8. BZOJ 4443: [Scoi2015]小凸玩矩阵 二分图最大匹配+二分

    题目链接: http://www.lydsy.com/JudgeOnline/problem.php?id=4443 题解: 二分答案,判断最大匹配是否>=n-k+1: #include< ...

  9. WebServices中使用Session

    默认情况下,Asp.net使用cookie来管理会话状态.因此,Asp.net假设客户端存储了会话cookie并将它与每一个请求一并发回给客户端. /// <summary> /// Su ...

  10. jquery如何删除一个元素后面的所有元素

    $("div>span:first").nextAll().remove()