STATUS=HTTP/1.1 500 Internal Server Error
Verfasst: Montag 10. Oktober 2005, 20:45
Guten Tag!
Da ich noch recht neu in diesem Forum bin, stelle ich meine Frage in der Hoffnung, das mir bald Hilfe zuteil wird. Danke aber schon jetzt dafür.
Folgendes Problem trat auf:
Möchte unter python 2.4 ein MoinMoinWiki installieren. Der Aufruf
127.0.0.1 - - [10/Oct/2005:21:06:47 +0200] "GET /Main?action=test HTTP/1.0" 500 1069 "-" "Lynx/2.8.5rel.2 libwww-FM/2.14 SSL-MM/1.4.1 OpenSSL/0.9.7e"
brachte den Fehler
:
--------------------------------------------------
STATUS=HTTP/1.1 500 Internal Server Error
--------------------------------------------------
[Mon Oct 10 21:17:02 2005] [warn] FastCGI: (dynamic) server "/usr/local/share/moin/main/cgi-bin/moin.cgi" restarted (pid 24431)
Traceback (most recent call last):
File "/usr/local/share/moin/main/cgi-bin/moin.cgi", line 13, in ?
from MoinMoin.request import RequestCGI
File "/usr/local/lib/python2.4/site-packages/MoinMoin/request.py", line 10, in ?
import os, time, sys, cgi
File "/usr/local/lib/python2.4/cgi.py", line 40, in ?
import mimetools
File "/usr/local/lib/python2.4/mimetools.py", line 6, in ?
import tempfile
File "/usr/local/lib/python2.4/tempfile.py", line 33, in ?
from random import Random as _Random
File "/usr/local/lib/python2.4/random.py", line 68, in ?
import _random
ImportError: /usr/local/lib/python2.4/lib-dynload/_random.so: undefined symbol: _PyArg_NoKeywords
[Mon Oct 10 21:17:02 2005] [warn] FastCGI: (dynamic) server "/usr/local/share/moin/main/cgi-bin/moin.cgi" (pid 24431) terminated by calling exit with status '1'
[Mon Oct 10 21:17:02 2005] [warn] FastCGI: (dynamic) server "/usr/local/share/moin/main/cgi-bin/moin.cgi" has failed to remain running for 30 seconds given 3 attempts, its restart interval has been backed off to 600 seconds
--------------------------------------------------
Folgende Aufrufkette:
File "/usr/local/lib/python2.4/tempfile.py", line 33, in ?
from random import Random as _Random
File "/usr/local/lib/python2.4/random.py", line 68, in ?
import _random 
Da ich noch recht neu in diesem Forum bin, stelle ich meine Frage in der Hoffnung, das mir bald Hilfe zuteil wird. Danke aber schon jetzt dafür.
Folgendes Problem trat auf:
Möchte unter python 2.4 ein MoinMoinWiki installieren. Der Aufruf
127.0.0.1 - - [10/Oct/2005:21:06:47 +0200] "GET /Main?action=test HTTP/1.0" 500 1069 "-" "Lynx/2.8.5rel.2 libwww-FM/2.14 SSL-MM/1.4.1 OpenSSL/0.9.7e"
brachte den Fehler
--------------------------------------------------
STATUS=HTTP/1.1 500 Internal Server Error
--------------------------------------------------
[Mon Oct 10 21:17:02 2005] [warn] FastCGI: (dynamic) server "/usr/local/share/moin/main/cgi-bin/moin.cgi" restarted (pid 24431)
Traceback (most recent call last):
File "/usr/local/share/moin/main/cgi-bin/moin.cgi", line 13, in ?
from MoinMoin.request import RequestCGI
File "/usr/local/lib/python2.4/site-packages/MoinMoin/request.py", line 10, in ?
import os, time, sys, cgi
File "/usr/local/lib/python2.4/cgi.py", line 40, in ?
import mimetools
File "/usr/local/lib/python2.4/mimetools.py", line 6, in ?
import tempfile
File "/usr/local/lib/python2.4/tempfile.py", line 33, in ?
from random import Random as _Random
File "/usr/local/lib/python2.4/random.py", line 68, in ?
import _random
ImportError: /usr/local/lib/python2.4/lib-dynload/_random.so: undefined symbol: _PyArg_NoKeywords
[Mon Oct 10 21:17:02 2005] [warn] FastCGI: (dynamic) server "/usr/local/share/moin/main/cgi-bin/moin.cgi" (pid 24431) terminated by calling exit with status '1'
[Mon Oct 10 21:17:02 2005] [warn] FastCGI: (dynamic) server "/usr/local/share/moin/main/cgi-bin/moin.cgi" has failed to remain running for 30 seconds given 3 attempts, its restart interval has been backed off to 600 seconds
--------------------------------------------------
Folgende Aufrufkette:
File "/usr/local/lib/python2.4/tempfile.py", line 33, in ?
from random import Random as _Random
Code: Alles auswählen
# Imports.
import os as _os
import errno as _errno
from random import Random as _Random
import _random
Code: Alles auswählen
# Translated by Guido van Rossum from C source provided by
# Adrian Baddeley. Adapted by Raymond Hettinger for use with
# the Mersenne Twister and os.urandom() core generators.
import _random
class Random(_random.Random):
"""Random number generator base class used by bound module functions.