SID-00452: twiki front page doesn't load
| Status: |
Answered |
TWiki version: |
4.3.1 |
Perl version: |
5.8.5 |
| Category: |
CategoryDeployment |
Server OS: |
RedHat Enterprise Linux 4, Kernel 2.6.9-22 |
Last update: |
16 years ago |
After all the installation and stuff, I managed to come to the point where I could 'configure'. However, after configure, I try to got to the twiki front page but it returns an error:
twiki detected an internal error
Can't locate Unicode path in
@INC
(
@INC
contains: path . path-linuxthread-multi path-linuxthread-multi path-linuxthread-multi path-linuxthread-multi........path path path.....)
--
AjaySharma - 2009-08-02
Discussion and Answer
I found the solution from:
SID-00291
Here, I am pasting what
PeterThoeny posted
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
This works!
Thank you very much. Good work there Peter.
--
AjaySharma - 2009-08-02
FYI, the above edits refer to the /lib/TWiki/Render.pm file
--
GregNeugebauer - 2009-09-11
If you answer a question - or someone answered one of your questions - please remember to edit the page and set the status to answered. The status selector is below the edit box.