diff options
Diffstat (limited to 'CHANGELOG')
-rw-r--r-- | CHANGELOG | 16 |
1 files changed, 15 insertions, 1 deletions
@@ -1,13 +1,27 @@ | |||
1 | $Id: CHANGELOG,v 1.4 2001/12/07 03:52:56 helios Exp $ | 1 | $Id: CHANGELOG,v 1.5 2002/01/15 18:40:14 helios Exp $ |
2 | 2 | ||
3 | 3 | ||
4 | TODO: | 4 | TODO: |
5 | * Full commenting of the code. | 5 | * Full commenting of the code. |
6 | * Rethink documentation flow and rewrite? | 6 | * Rethink documentation flow and rewrite? |
7 | * Message queueing during server downtime? | ||
7 | 8 | ||
8 | 9 | ||
9 | CHANGES: | 10 | CHANGES: |
10 | 11 | ||
12 | 1.13: | ||
13 | |||
14 | * Now use ap_get_server_name() in extract_virtual_host() to fix the | ||
15 | instances where mass-virtual-hosting sites were getting the wrong | ||
16 | server-name written to the log. | ||
17 | * Now use mysql_real_connect() instead of mysql_connect(). The | ||
18 | latter's use was deprecated and did not work in MySQL 4. | ||
19 | * There is now a DEFINE for the socket name. This is used by the | ||
20 | mysql_real_connect() function and is relevant only if the db resides | ||
21 | on localhost. It is irrelevant if the db resides on a networked | ||
22 | machine and is ignored in that case (although it still must be defined | ||
23 | for the connect to work). | ||
24 | |||
11 | 1.12: | 25 | 1.12: |
12 | 26 | ||
13 | * Added a mysql_close() call to get rid of those annoying MySQL | 27 | * Added a mysql_close() call to get rid of those annoying MySQL |