Erro na configuração do Trac

0

Estou tentando configurar um trac, eu digitei as seguintes linhas

<Location /trac/[[:alnum]]+/login">
  AuthType Basic
  AuthName "Subversion Repository"
  AuthUserFile /etc/apache2/dav_svn.passwd
  Require valid-user
</Location>

<Location /trac>
  SetHandler mod_python
  PythonInterpreter main_interpreter
  PythonHandler trac.web.modpython_frontend
  PythonOption TracEnvParentDir /var/www/trac
  PythonOption TracUriRoot /trac
</Location>

neste arquivo,

/etc/apache2/sites-enabled/000-default

mas quando estou tentando reiniciar o servidor apache, recebo o seguinte erro:

Syntax error on line 50 of /etc/apache2/sites-enabled/000-default:
Invalid command 'PythonInterpreter', perhaps misspelled or defined by a module not included in the server configuration
    
por OHLÁLÁ 03.08.2011 / 09:42

1 resposta

1

Talvez você precise instalar o libapache2-mod-python primeiro?

sudo apt-get install libapache2-mod-python
    
por imbaer 03.08.2011 / 10:00