When trying to do any of the CGI stuff in 1.0b4 i get the following. I am able to view all the "top level" CGI pages, but i get this when submitting changes in /admin/ now as well as in /listinfo/:
We're sorry, we hit a bug!
If you would like to help us identify the problem, please email a copy of this page to the webmaster for this site with a description of what happened. Thanks!
Traceback:
Content-type: text/html
We're sorry, we hit a bug!
Mailman experienced a very low level failure and could not even generate a useful traceback. Please report this to the Mailman administrator at this site.
Luke luke@indy.net "Celebrate we will because life is short but sweet for certain"---Two Step
Luke,
Try this:
cd to the Mailman installation directory (which is either /home/mailman if you didn't supply a --prefix option to configure, or the directory you gave to --prefix).
From this directory fire up your Python interpreter from the command line, and execute the following:
import sys print sys.stderr import os print os.pardir from Mailman.Logging.StampedLogger import StampedLogger from Mailman.Logging.MultiLogger import MultiLogger
Please tell us if any of these steps fail, and mail us the traceback if so.
-Barry
Barry-
none of these failed
Luke luke@indy.net "Celebrate we will because life is short but sweet for certain"---Two Step
On Tue, 28 Jul 1998, Barry A. Warsaw wrote:
Luke,
Try this:
cd to the Mailman installation directory (which is either /home/mailman if you didn't supply a --prefix option to configure, or the directory you gave to --prefix).
From this directory fire up your Python interpreter from the command line, and execute the following:
import sys print sys.stderr import os print os.pardir from Mailman.Logging.StampedLogger import StampedLogger from Mailman.Logging.MultiLogger import MultiLogger
Please tell us if any of these steps fail, and mail us the traceback if so.
-Barry
Mailman-Users maillist - Mailman-Users@python.org http://www.python.org/mailman/listinfo/mailman-users
Okay, in the same interpreter session now try:
logger = StampedLogger('error', label='admin', manual_reprime=1, nofail=0) multi = MultiLogger(sys.__stdout__, logger)
if the latter fails, then try
print sys.__stdout__
if that fails, what version of Python are you running?
-Barry
barry-
those don't fail either
Luke luke@indy.net "Celebrate we will because life is short but sweet for certain"---Two Step
On Tue, 28 Jul 1998, Barry A. Warsaw wrote:
Okay, in the same interpreter session now try:
logger = StampedLogger('error', label='admin', manual_reprime=1, nofail=0) multi = MultiLogger(sys.__stdout__, logger)
if the latter fails, then try
print sys.__stdout__
if that fails, what version of Python are you running?
-Barry
participants (2)
-
Barry A. Warsaw
-
Luke