> Code, please. Paste your prod.cfg and post the URL. Also give us some
> more info about your TG project (name, package name, etc)
name = pit1, package name = pit1
(tgenv)andre...@bananabread.net [~/tgenv/lib/python2.4/site-packages/
pit1-1.0-py2.4.egg]# cat config/prod.cfg
[global]
# pit1/config/app.cfg
# DATABASE
sqlobject.dburi="mysql://andrewbn_tgapp:XXXXPASSXXX@localhost:3306/
andrewbn_PitMusician"
# Auto-Reload after code modification
#autoreload.on = True
# SERVER
server.environment="production"
autoreload.package="pit1"
# Sets the number of threads the server uses
# server.thread_pool = 1
# if this is part of a larger site, you can set the path
# to the TurboGears instance here
# server.webpath=""
# LOGGING
# Logging configuration generally follows the style of the standard
# Python logging module configuration. Note that when specifying
# log format messages, you need to use *() for formatting variables.
# Deployment independent log configuration is in pit1/config/log.cfg
[logging]
[[handlers]]
[[[access_out]]]
# set the filename as the first argument below
args="('server.log',)"
class='FileHandler'
level='INFO'
formatter='message_only'
[[loggers]]
[[[pit1]]]
level='ERROR'
qualname='pit1'
handlers=['error_out']
[[[access]]]
level='INFO'
qualname='turbogears.access'
handlers=['access_out']
propagate=0