Eu tentei implantar meu aplicativo Pylons usando as instruções encontradas aqui . Isso simplesmente carrega a página padrão do Pylons quando eu visito a raiz do meu domínio. Quando tento entrar em qualquer caminho, recebo a mensagem
Unhandled Exception
An unhandled exception was thrown by the application.
Quando vejo o log de erros do meu aplicativo e o log de erros do Apache, parece que o Pylons sempre tenta rotear as coisas para o controlador de erros. No entanto, observe que a mensagem acima não é o que o meu controlador de erro deve transmitir.
Alguma sugestão sobre o que verificar? Adoro desenvolver com Pylons, mas esta é minha primeira tentativa de implantação. Eu tentei várias configurações em vários servidores da web diferentes e não tive sorte.
UPDATE: Abaixo está a configuração do meu aplicativo Pylons (comentários removidos para torná-lo um pouco mais curto)
[DEFAULT]
smtp_server = localhost
error_email_from = paste@localhost
[server:main]
use = egg:PasteScript#flup_fcgi_thread
[app:main]
use = egg:linkdb
full_stack = true
static_files = true
cache_dir = %(here)s/data
beaker.session.key = linkdb
beaker.session.secret = b75f1813263ab9a082f67278daa26433
sqlalchemy.url = mysql://cclp:[email protected]/ccorl
authkit.setup.enable = True
authkit.setup.method = form, cookie
authkit.form.authenticate.user.type = linkdb.model.auth:MyUsersFromDatabase
authkit.form.authenticate.user.data = linkdb.model
authkit.cookie.secret = c2b47614b6eb46c4bd7842cae10f27e4
authkit.cookie.signoutpath = /users/logout
authkit.form.template.obj = linkdb.model.auth:make_template
set debug = false
[loggers]
keys = root, routes, linkdb, sqlalchemy
[handlers]
keys = console
[formatters]
keys = generic
[logger_root]
level = INFO
handlers = console
[logger_routes]
level = INFO
handlers =
qualname = routes.middleware
[logger_linkdb]
level = DEBUG
handlers =
qualname = linkdb
[logger_sqlalchemy]
level = WARN
handlers =
qualname = sqlalchemy.engine
[handler_console]
class = StreamHandler
args = (sys.stderr,)
level = NOTSET
formatter = generic
[formatter_generic]
format = %(asctime)s,%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s
datefmt = %H:%M:%S
UPDATE : E aqui está o log de erros produzido pelo aplicativo (eu sou paranóico, então eu estrelou os endereços IP)
DEBUG:authkit.authenticate.cookie:These cookies were found: []
DEBUG:authkit.authenticate.cookie:Our cookie 'authkit' value is therefore ''
DEBUG:authkit.authenticate.cookie:Remote addr '***.***.***.***', value '', include_ip True
DEBUG:pylons.wsgiapp:Setting up Pylons stacked object globals
DEBUG:pylons.wsgiapp:No controller found, returning 404 HTTP Not Found
DEBUG:authkit.authenticate.multi:Status: '404 Not Found', Headers: [('Content-Type', 'text/html; charset=UTF-8'), ('Content-Length', '154')]
DEBUG:authkit.authenticate.multi:Status checker recieved status '404 Not Found', headers [('Content-Type', 'text/html; charset=UTF-8'), ('Content-Length', '154')], intecept ['401']
DEBUG:authkit.authenticate.multi:Status checker returns False
DEBUG:authkit.authenticate.multi:Multi: No binding was found for the check
DEBUG:authkit.authenticate.cookie:These cookies were found: []
DEBUG:authkit.authenticate.cookie:Our cookie 'authkit' value is therefore ''
DEBUG:authkit.authenticate.cookie:Remote addr '***.***.***.***', value '', include_ip True
DEBUG:pylons.wsgiapp:Setting up Pylons stacked object globals
DEBUG:pylons.wsgiapp:Resolved URL to controller: u'error'
DEBUG:pylons.wsgiapp:Found controller, module: 'linkdb.controllers.error', class: 'ErrorController'
DEBUG:pylons.wsgiapp:Controller appears to be a class, instantiating
DEBUG:pylons.wsgiapp:Calling controller class with WSGI interface
UPDATE : Este é o script fcgi que meu aplicativo está usando
#!/usr/bin/env python
import logging
# Load the WSGI application from the config file
from paste.deploy import loadapp
wsgi_app = loadapp('config:/var/www/linkdb/production.ini')
# Deploy it using FastCGI
if __name__ == '__main__':
logging.basicConfig(filename='/var/www/linkdb/error.log', level=logging.DEBUG)
from flup.server.fcgi import WSGIServer
WSGIServer(wsgi_app).run()