Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
ef4a1ea5
Commit
ef4a1ea5
authored
Dec 02, 2005
by
Andreas Jung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Deprecated FastCGI
parent
934eca39
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
0 deletions
+8
-0
doc/CHANGES.txt
doc/CHANGES.txt
+2
-0
doc/WEBSERVER.txt
doc/WEBSERVER.txt
+2
-0
lib/python/ZServer/FCGIServer.py
lib/python/ZServer/FCGIServer.py
+4
-0
No files found.
doc/CHANGES.txt
View file @
ef4a1ea5
...
...
@@ -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
...
...
doc/WEBSERVER.txt
View file @
ef4a1ea5
...
...
@@ -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
...
...
lib/python/ZServer/FCGIServer.py
View file @
ef4a1ea5
...
...
@@ -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
()
#----------------------------------------------------------------------
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment