Re: Seeking PyGreSQL help

Поиск
Список
Период
Сортировка
От D'Arcy J.M. Cain
Тема Re: Seeking PyGreSQL help
Дата
Msg-id 200308050842.32937.darcy@PyGreSQL.org
обсуждение исходный текст
Ответ на Re: Seeking PyGreSQL help  ("Alastair G. Hogge" <agh@tpg.com.au>)
Список pgsql-interfaces
On Tuesday 05 August 2003 06:09, Alastair G. Hogge wrote:
> Thanks for help. The problem was in pgsql/data/postgresql.conf. I needed to
> change "#tcpip_socket = false" to "tcpip_socket = true"
> I know am able to access my database from within Python, hwover when I try
> the python an cgi script I get an internet server error. Is there more
> options I should know about?

I assume that you mean "Internal Server Error" or ISE.  Whenever your web
server gives an ISE there is something in the error log that tells you what
the problem is.  With Python you will get the exact line with the problem.
From there it is simpy a matter of debugging your code.

If you can't get access to the error logs for whatever reason you can add the
following line to your Python script to see the error in your browser.

import sys
sys.stderr = sys.stdout

You may have to view the source to see the error properly as your browser will
try to "format" it for you.

--
D'Arcy J.M. Cain
PyGreSQL Development Group
http://www.PyGreSQL.org


В списке pgsql-interfaces по дате отправления:

Предыдущее
От: "D'Arcy J.M. Cain"
Дата:
Сообщение: Re: Seeking PyGreSQL help
Следующее
От: "Alastair G. Hogge"
Дата:
Сообщение: Re: Seeking PyGreSQL help