Do your users have proper permissions?
Anonymous user?
--
silk
Are there any exceptions or errors showing up in your trac.log? That's where I'd start looking.
Ben
--
You received this message because you are subscribed to the Google Groups "Trac Users" group.
To post to this group, send email to trac-...@googlegroups.com.
To unsubscribe from this group, send email to trac-users+...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/trac-users?hl=en.
I may be barking up the wrong tree but when Trac runs under apache it is as the apache user and with a minimal environment. When you run trac-admin, you are you with your normal environment. So I suggest you investigate permissions and / or environment settings...
Have you read the mod_wsgi / trac wiki?
http://code.google.com/p/modwsgi/wiki/IntegrationWithTrac
I found that most useful...
~ mark c
Good luck,
~ mark c
Why did you create your own? I just used the one generated by
"trac-admin deploy" and it worked fine. Here is mine for reference:
{{{
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Copyright (C)2008-2009 Edgewall Software
# Copyright (C) 2008 Noah Kantrowitz <no...@coderanger.net>
# All rights reserved.
#
# This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution. The terms
# are also available at http://trac.edgewall.org/wiki/TracLicense.
#
# This software consists of voluntary contributions made by many
# individuals. For the exact contribution history, see the revision
# history and logs, available at http://trac.edgewall.org/log/.
#
# Author: Noah Kantrowitz <no...@coderanger.net>
import os
def application(environ, start_request):
if not 'trac.env_path_parent_dir' in environ:
environ.setdefault('trac.env_path', '/opt/trac/eng')
if 'PYTHON_EGG_CACHE' in environ:
os.environ['PYTHON_EGG_CACHE'] = environ['PYTHON_EGG_CACHE']
elif 'trac.env_path' in environ:
os.environ['PYTHON_EGG_CACHE'] =
os.path.join(environ['trac.env_path'],
'.egg-cache')
elif 'trac.env_path_parent_dir' in environ:
os.environ['PYTHON_EGG_CACHE'] =
os.path.join(environ['trac.env_path_parent_dir'],
'.egg-cache')
from trac.web.main import dispatch_request
return dispatch_request(environ, start_request)
}}}
> Here is a screenshot that should explain the problem that I am facing
> (sorry I need to split the url, otherwise the message cannot be
> posted)
> http://img854 DOT imageshack DOT us/img854/1918/
> bildschirmfoto20120128u.png
Why can't you just post proper links?
--
Matthew Caron
Build Engineer
Sixnet | www.sixnet.com
O +1 518 877 5173 Ext. 138
F +1 518 602 9209
matt....@sixnet.com