From: André Malo Date: Fri, 7 Apr 2006 21:04:03 +0000 (+0000) Subject: update transformation X-Git-Tag: 2.2.2~60 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0c7b6fdb2134d8fb56b0df977a0ee27e2a9b185f;p=thirdparty%2Fapache%2Fhttpd.git update transformation git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@392397 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/howto/access.html.en b/docs/manual/howto/access.html.en index ea1f0882e18..2e0eea1bb5b 100644 --- a/docs/manual/howto/access.html.en +++ b/docs/manual/howto/access.html.en @@ -72,7 +72,7 @@ discussed in this document include

- Deny from 205.252.46.165 + Deny from 10.252.46.165

Visitors coming from that address will not be able to see @@ -87,8 +87,8 @@ discussed in this document include

- Deny from 192.101.205
- Deny from cyberthugs.com moreidiots.com
+ Deny from 192.168.205
+ Deny from phishers.example.com moreidiots.example
Deny from ke

diff --git a/docs/manual/mod/mod_dbd.html.en b/docs/manual/mod/mod_dbd.html.en index ea96a475b9c..cfff92719ae 100644 --- a/docs/manual/mod/mod_dbd.html.en +++ b/docs/manual/mod/mod_dbd.html.en @@ -190,6 +190,19 @@ APR_DECLARE_OPTIONAL_FN(void, ap_dbd_prepare, (server_rec*, const char*, const c

As required by the underlying driver. Typically this will be used to pass whatever cannot be defaulted amongst username, password, database name, hostname and port number for connection.

+

Connection string parameters for current drivers include:

+
+
MySQL
+
host, port, user, pass, dbname, sock
+
Oracle
+
user, pass, dbname, server
+
PostgreSQL
+
The connection string is passed straight through to PQconnectdb
+
SQLite2
+
The connection string is split on a colon, and part1:part2 is used as sqlite_open(part1, atoi(part2), NULL)
+
SQLite3
+
The connection string is passed straight through to sqlite3_open
+
top