• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Quick Apache question

But it might be if someone typo's a link or something and you have to figure out what's wrong, just use grep to filter them out when you look at the logs if you're not interested.
 
If you really want to, you could use a pipe for your log (CustomLog "|grep -v 404" mylog) but that's probably a bad idea for numerous reasons.

I log into a PostgreSQL database... if you're interested, here's how I do it (I used to log to a mysql database using a very similar method):

LogFormat "INSERT INTO access_log (remote_ip,remote_logname,servername,remote_user,date_time,status,bytes_sent,co
tent_type,url_requested,referer,user_agent) VALUES(%h %l %v %u %{%Y-%m-%d %H:%M:%S}t %>s %B %{Content-Type}i %U %{Referer}i %{User-Agent}i);" pgsql
CustomLog "|d:/cygwin/bin/perl.exe bin/dbinsert.pl" pgsql

dbinsert.pl:
#!perl

use strict;

my $prog = "|C:/PROGRA~1/PostgreSQL/8.1/bin/psql.exe databasename username";
my $pid = open OUTFILE, $prog;
print OUTFILE "password\n";

my $line;
while ($line = <>) {
$line =~ s/\'/\'\'/g;
$line =~ s/\t/','/g;
$line =~ s/VALUES\(/VALUES\('/;
$line =~ s/\);/\'\);/;
print OUTFILE $line;
}

close OUTFILE;
 
Back
Top