Hello,
i try to install Trac on windows 2000.
here is what i have already installed
- python 2.5.4
- setuptools 0.6.c9 for py2.5
- pysqlite 2.5.5
- genshi 0.5.1
- clearsilver 0.10.4
- trac 0.11.5
- apache 2.2
i have configured apache as follow so i can access the main trac web
page from a remote computer.
<Location /nge>
SetHandler mod_python
PythonInterpreter main_interpreter
PythonHandler trac.web.modpython_frontend
PythonOption TracEnv c:/tracprojects/nge
PythonOption PYTHON_EGG_CACHE c:/tracprojects/nge/egg-cache
PythonDebug off
</Location>
<Location /nge/login>
AuthType Basic
AuthName "NGE Authentification"
AuthUserFile c:/tracprojects/nge/htpasswd
Require valid-user
</Location>
i have created the file c:/tracprojects/nge/htpasswd and filled it
with a pair login:password
When i clic on Login and fill the dialog with the login and password,
the following message appear
Traceback (most recent call last):
File "C:\Python25\Lib\site-packages\trac\web\api.py", line 377, in
send_error
'text/html')
File "C:\Python25\Lib\site-packages\trac\web\chrome.py", line 726,
in render_template
req.session.pop('chrome.%s.%d' % (type_, i)))
File "C:\Python25\Lib\site-packages\trac\web\api.py", line 195, in
__getattr__
value = self.callbacks[name](self)
File "C:\Python25\Lib\site-packages\trac\web\main.py", line 264, in
_get_session
return Session(self.env, req)
File "C:\Python25\lib\site-packages\trac\web\session.py", line 156,
in __init__
self.promote_session(sid)
File "C:\Python25\lib\site-packages\trac\web\session.py", line 233,
in promote_session
(self.req.authname, sid))
File "C:\Python25\Lib\site-packages\trac\db\util.py", line 53, in
execute
return self.cursor.execute(sql_escape_percent(sql), args)
File "C:\Python25\Lib\site-packages\trac\db\sqlite_backend.py", line
58, in execute
args or [])
File "C:\Python25\Lib\site-packages\trac\db\sqlite_backend.py", line
50, in _rollback_on_error
return function(self, *args, **kwargs)
OperationalError: unable to open database file
can somebody help me to find the problem?
thx
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Trac
Users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/trac-users?hl=en
-~----------~----~----~----~------~----~------~--~---