Commit ef4a1ea5 authored by Andreas Jung's avatar Andreas Jung

Deprecated FastCGI

parent 934eca39
......@@ -26,6 +26,8 @@ Zope Changes
Features added
- Using FastCGI is offically deprecated.
- Improved logging of ConflictErrors. Now a log is made at level
BLATHER with traceback for any conflict retried. In addition, a
log is made at level ERROR for a conflict that can't be retried
......
......@@ -110,6 +110,8 @@ Using Zope in multi-threaded mode with ZServer
FastCGI
FastCGI is deprecated and should not be used anymore.
FastCGI is relatively easy to set up if you have installed an Apache
module before. If you haven't, don't worry, it isn't difficult. It
comes with straightforward instructions. You will need to download
......
......@@ -48,6 +48,10 @@ import socket, string, os, sys, time
import thread
from types import StringTypes
import warnings
warnings.warn("Using FastCGI is deprecated. You should use mod_proxy " +
"to run Zope with Apache", DeprecationWarning)
tz_for_log = compute_timezone_for_log()
#----------------------------------------------------------------------
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment