"failed to resolve handler Apache::Registry" on Apache 2

0

We have 2 twiki site (twiki1 and twiki2) that we use as an internal tool.
tWiki1 works, there's no problem with it. But they want me to fix the twiki2 in case twiki 1 fails.
However, I have this error in the twiki2 apache error log :

failed to resolve handler Apache::Registry

I can connect to the webserver, it asks me to auth myself, but just after it throws me a blank page, whether the auth is correct or not !

Does someone knows something about this handler Apache::Registry error?

I've google it and can't find nothing.

PatrickCUDO

Posted 2012-01-16T11:38:41.307

Reputation: 513

first may i know the os you have used? – Mughil – 2012-01-16T12:46:22.650

It is Debian Lenny (V 5.0.9) – PatrickCUDO – 2012-01-16T12:56:55.780

Answers

1

Apache::Registry error is mainly occurs with the apache server, not capable of loading the perl module.

you can fix it by adding the following line in the virtual host of your site of httpd.conf file.

<Location /path-for-your-cgi-bin>
    SetHandler perl-script
    PerlHandler Apache::Registry
    PerlOptions +ParseHeaders
    Options +ExecCGI
</Location> 

Mughil

Posted 2012-01-16T11:38:41.307

Reputation: 826