Twiki安装出错

来源:互联网 发布:技嘉主板 知乎 编辑:程序博客网 时间:2024/04/28 11:15
TWiki detected an internal error - please check your TWiki logs and webserver logs for more information.

Can't locate Unicodepath in @INC (@INC contains: path . path-linux-thread-multi path-linux-thread-multi path-linux-thread-multi path-linux-thread-multi path



解决
twiki/lib/TWiki/Render.pm

1. Remove this line:

use Unicode::String qw(utf8 latin1 utf16be);

2. Replace the following two lines:

my $utf8AnchorName = Unicode::String->new($anchorName);
$anchorName = $utf8AnchorName->substr(0, 32);
with this line:
$anchorName =~ s/^(.{32})(.*)$/$1/; # limit to 32 chars
原创粉丝点击