summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 4cea28e)
raw | patch | inline | side by side (parent: 4cea28e)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Tue, 15 Jul 2003 22:47:09 +0000 (22:47 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Tue, 15 Jul 2003 22:47:09 +0000 (22:47 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1787 57a73879-2fb5-44c3-a270-3262357dd7e2
doc/FAQ.txt | patch | blob | history |
diff --git a/doc/FAQ.txt b/doc/FAQ.txt
index da86570c0c5d5b8f36c067d0bfe4067c3422ff9d..c7de3e11e7228ef35047b0e4cd6bb8b11db76f81 100644 (file)
--- a/doc/FAQ.txt
+++ b/doc/FAQ.txt
Roundup FAQ
===========
-:Version: $Revision: 1.13 $
+:Version: $Revision: 1.14 $
.. contents::
You can now firewall off port 8888 from the rest of the world.
+Roundup runs very slowly on my XP machine when accessed from the Internet
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+The issue is probably related to host name resolution for the client
+performing the request. You can turn off the resolution of the names
+when it's so slow like this. To do so, edit the module
+roundup/scripts/roundup_server.py around line 77 to add the following
+to the RoundupRequestHandler class:
+
+ def address_string(self):
+ return self.client_address[0]
+
+
Templates
---------