SID-01413: TwikiDraw Plug-in file save error
| Status: |
Answered |
TWiki version: |
5.1.1 |
Perl version: |
5.10.1 |
| Category: |
TWikiDrawPlugin |
Server OS: |
ubuntu 10.04 lts |
Last update: |
13 years ago |
I am running Twiki 5.1.1 And got this error in my apache logs when trying to save a file
ERROR:
http://w.mysite.com/twiki/bin/view/Sandbox/WebHome
at /var/www/twiki/lib/TWiki.pm line 856.
I tracked down Twiki.pm and line 856 is the 'die' line
sub redirect {
my( $this, $url, $passthru, $action_redirectto ) =
@_
;
my $query = $this->{request};
# if we got here without a query, there's not much more we can do
return unless $query;
# SMELL: if noredirect is set, don't generate the redirect, throw an
# exception instead. This is a HACK used to support
TWikiDrawPlugin.
# It is deprecated and must be replaced by REST handlers in the plugin.
if( $query->param( 'noredirect' )) {
die "ERROR: $url";
return;
}
Any ideas on this?
--
DanielQuach - 2012-02-24
Discussion and Answer
I can confirm the same error message on the twiki.org TWiki when saving a TWiki Draw image. It looks like a hack as indicated in the comment (the plugin would need to be updated). You can ignore the message in the apache error log assuming saving a drawing succeeds.
--
PeterThoeny - 2012-02-24
This is likely cause by a known
TWikibug:Bugs/Item6869
--
PeterThoeny - 2012-07-01
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.