Apache2

Hast du noch was anderes laufen was evtl. Port 80 blockt?

Ich hatte mal ein ähnliches Problem mit Skype, das belegt per default auch die 80 und blockt dann den apache.
 
apache2.conf.
Habe nur public_html eingefügt, sonst ist sie orginal.
Code:
# Based upon the NCSA server configuration files originally by Rob McCool.
# Changed extensively for the Debian package by Daniel Stone <daniel@sfarc.net>
# and also by Thom May <thom@debian.org>.

# ServerRoot: The top of the directory tree under which the server's
# configuration, error, and log files are kept.
#
# NOTE!  If you intend to place this on an NFS (or otherwise network)
# mounted filesystem then please read the LockFile documentation
# (available at <URL:http://www.apache.org/docs/mod/core.html#lockfile>);
# you will save yourself a lot of trouble.

ServerRoot "/etc/apache2"

# The LockFile directive sets the path to the lockfile used when Apache
# is compiled with either USE_FCNTL_SERIALIZED_ACCEPT or
# USE_FLOCK_SERIALIZED_ACCEPT. This directive should normally be left at
# its default value. The main reason for changing it is if the logs
# directory is NFS mounted, since the lockfile MUST BE STORED ON A LOCAL
# DISK. The PID of the main server process is automatically appended to
# the filename. 

LockFile /var/lock/apache2/accept.lock

# PidFile: The file in which the server should record its process
# identification number when it starts.

PidFile /var/run/apache2.pid

# Timeout: The number of seconds before receives and sends time out.

Timeout 300

# KeepAlive: Whether or not to allow persistent connections (more than
# one request per connection). Set to "Off" to deactivate.

KeepAlive On

# MaxKeepAliveRequests: The maximum number of requests to allow
# during a persistent connection. Set to 0 to allow an unlimited amount.
# We recommend you leave this number high, for maximum performance.

MaxKeepAliveRequests 100

# KeepAliveTimeout: Number of seconds to wait for the next request from the
# same client on the same connection.

KeepAliveTimeout 15

##
## Server-Pool Size Regulation (MPM specific)
## 

# prefork MPM
# StartServers ......... number of server processes to start
# MinSpareServers ...... minimum number of server processes which are kept spare
# MaxSpareServers ...... maximum number of server processes which are kept spare
# MaxClients ........... maximum number of server processes allowed to start
# MaxRequestsPerChild .. maximum number of requests a server process serves
<IfModule prefork.c>
StartServers         5
MinSpareServers      5
MaxSpareServers     10
MaxClients          20
MaxRequestsPerChild  0
</IfModule>

# pthread MPM
# StartServers ......... initial  number of server processes to start
# MaxClients ........... maximum  number of server processes allowed to start
# MinSpareThreads ...... minimum  number of worker threads which are kept spare
# MaxSpareThreads ...... maximum  number of worker threads which are kept spare
# ThreadsPerChild ...... constant number of worker threads in each server process
# MaxRequestsPerChild .. maximum  number of requests a server process serves
<IfModule worker.c>
StartServers         2
MaxClients         150 
MinSpareThreads     25
MaxSpareThreads     75
ThreadsPerChild     25
MaxRequestsPerChild  0
</IfModule>

# perchild MPM
# NumServers ........... constant number of server processes
# StartThreads ......... initial  number of worker threads in each server process
# MinSpareThreads ...... minimum  number of worker threads which are kept spare
# MaxSpareThreads ...... maximum  number of worker threads which are kept spare
# MaxThreadsPerChild ... maximum  number of worker threads in each server process
# MaxRequestsPerChild .. maximum  number of connections per server process (then it dies)
<IfModule perchild.c>
NumServers           5
StartThreads         5
MinSpareThreads      5
MaxSpareThreads     10
MaxThreadsPerChild  20
MaxRequestsPerChild  0
AcceptMutex fcntl
</IfModule>

User www-data
Group www-data

# The following directives define some format nicknames for use with
# a CustomLog directive (see below).
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent


# Global error log.
ErrorLog /var/log/apache2/error.log

# Include module configuration:
Include /etc/apache2/mods-enabled/*.load
Include /etc/apache2/mods-enabled/*.conf

# Include all the user configurations:
Include /etc/apache2/httpd.conf

# Include ports listing
Include /etc/apache2/ports.conf

# Include generic snippets of statements
Include /etc/apache2/conf.d/[^.#]*

#Let's have some Icons, shall we?
Alias /icons/ "/usr/share/apache2/icons/"
<Directory "/usr/share/apache2/icons">
    Options Indexes MultiViews
    AllowOverride None
    Order allow,deny
    Allow from all
</Directory>

# Set up the default error docs.
#
# Customizable error responses come in three flavors:
# 1) plain text 2) local redirects 3) external redirects
#
# Some examples:
#ErrorDocument 500 "The server made a boo boo."
#ErrorDocument 404 /missing.html
#ErrorDocument 404 "/cgi-bin/missing_handler.pl"
#ErrorDocument 402 http://www.example.com/subscription_info.html
#

#
# Putting this all together, we can Internationalize error responses.
#
# We use Alias to redirect any /error/HTTP_<error>.html.var response to
# our collection of by-error message multi-language collections.  We use 
# includes to substitute the appropriate text.
#
# You can modify the messages' appearance without changing any of the
# default HTTP_<error>.html.var files by adding the line;
#
#   Alias /error/include/ "/your/include/path/"
#
# which allows you to create your own set of files by starting with the
# /usr/local/apache2/error/include/ files and
# copying them to /your/include/path/, even on a per-VirtualHost basis.
#

<IfModule mod_negotiation.c>
<IfModule mod_include.c>
    Alias /error/ "/usr/share/apache2/error/"

    <Directory "/usr/share/apache2/error">
        AllowOverride None
        Options IncludesNoExec
        AddOutputFilter Includes html
        AddHandler type-map var
        Order allow,deny
        Allow from all
        LanguagePriority en es de fr
        ForceLanguagePriority Prefer Fallback
    </Directory>

    ErrorDocument 400 /error/HTTP_BAD_REQUEST.html.var
    ErrorDocument 401 /error/HTTP_UNAUTHORIZED.html.var
    ErrorDocument 403 /error/HTTP_FORBIDDEN.html.var
    ErrorDocument 404 /error/HTTP_NOT_FOUND.html.var
    ErrorDocument 405 /error/HTTP_METHOD_NOT_ALLOWED.html.var
    ErrorDocument 408 /error/HTTP_REQUEST_TIME_OUT.html.var
    ErrorDocument 410 /error/HTTP_GONE.html.var
    ErrorDocument 411 /error/HTTP_LENGTH_REQUIRED.html.var
    ErrorDocument 412 /error/HTTP_PRECONDITION_FAILED.html.var
    ErrorDocument 413 /error/HTTP_REQUEST_ENTITY_TOO_LARGE.html.var
    ErrorDocument 414 /error/HTTP_REQUEST_URI_TOO_LARGE.html.var
    ErrorDocument 415 /error/HTTP_SERVICE_UNAVAILABLE.html.var
    ErrorDocument 500 /error/HTTP_INTERNAL_SERVER_ERROR.html.var
    ErrorDocument 501 /error/HTTP_NOT_IMPLEMENTED.html.var
    ErrorDocument 502 /error/HTTP_BAD_GATEWAY.html.var
    ErrorDocument 503 /error/HTTP_SERVICE_UNAVAILABLE.html.var
    ErrorDocument 506 /error/HTTP_VARIANT_ALSO_VARIES.html.var

</IfModule>
</IfModule>

DirectoryIndex index.html index.cgi index.pl index.php index.xhtml

# UserDir is now a module
UserDir public_html
UserDir disabled root



<Directory /home/*/public_html>
       AllowOverride FileInfo AuthConfig Limit
       Options Indexes SymLinksIfOwnerMatch IncludesNoExec
</Directory>


AccessFileName .htaccess

<Files ~ "^\.ht">
    Order allow,deny
    Deny from all
</Files>

UseCanonicalName Off

TypesConfig /etc/mime.types
DefaultType text/plain

HostnameLookups Off

IndexOptions FancyIndexing VersionSort

AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip

AddIconByType (TXT,/icons/text.gif) text/*
AddIconByType (IMG,/icons/image2.gif) image/*
AddIconByType (SND,/icons/sound2.gif) audio/*
AddIconByType (VID,/icons/movie.gif) video/*

# This really should be .jpg.

AddIcon /icons/binary.gif .bin .exe
AddIcon /icons/binhex.gif .hqx
AddIcon /icons/tar.gif .tar
AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
AddIcon /icons/a.gif .ps .ai .eps
AddIcon /icons/layout.gif .html .shtml .htm .pdf
AddIcon /icons/text.gif .txt
AddIcon /icons/c.gif .c
AddIcon /icons/p.gif .pl .py
AddIcon /icons/f.gif .for
AddIcon /icons/dvi.gif .dvi
AddIcon /icons/uuencoded.gif .uu
AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
AddIcon /icons/tex.gif .tex
AddIcon /icons/bomb.gif core

AddIcon /icons/back.gif ..
AddIcon /icons/hand.right.gif README
AddIcon /icons/folder.gif ^^DIRECTORY^^
AddIcon /icons/blank.gif ^^BLANKICON^^


# This is from Matty J's patch. Anyone want to make the icons?
#AddIcon /icons/dirsymlink.jpg ^^SYMDIR^^
#AddIcon /icons/symlink.jpg ^^SYMLINK^^

DefaultIcon /icons/unknown.gif

ReadmeName README.html
HeaderName HEADER.html

IndexIgnore .??* *~ *# HEADER* RCS CVS *,t

AddEncoding x-compress Z
AddEncoding x-gzip gz tgz

AddLanguage da .dk
AddLanguage nl .nl
AddLanguage en .en
AddLanguage et .et
AddLanguage fr .fr
AddLanguage de .de
AddLanguage el .el
AddLanguage it .it
AddLanguage ja .ja
AddLanguage pl .po
AddLanguage ko .ko
AddLanguage pt .pt
AddLanguage no .no
AddLanguage pt-br .pt-br
AddLanguage ltz .ltz
AddLanguage ca .ca
AddLanguage es .es
AddLanguage sv .se
AddLanguage cz .cz
AddLanguage ru .ru
AddLanguage tw .tw
AddLanguage zh-tw .tw

LanguagePriority en da nl et fr de el it ja ko no pl pt pt-br ltz ca es sv tw


#AddDefaultCharset	ISO-8859-1

AddCharset ISO-8859-1  .iso8859-1  .latin1
AddCharset ISO-8859-2  .iso8859-2  .latin2 .cen
AddCharset ISO-8859-3  .iso8859-3  .latin3
AddCharset ISO-8859-4  .iso8859-4  .latin4
AddCharset ISO-8859-5  .iso8859-5  .latin5 .cyr .iso-ru
AddCharset ISO-8859-6  .iso8859-6  .latin6 .arb
AddCharset ISO-8859-7  .iso8859-7  .latin7 .grk
AddCharset ISO-8859-8  .iso8859-8  .latin8 .heb	
AddCharset ISO-8859-9  .iso8859-9  .latin9 .trk
AddCharset ISO-2022-JP .iso2022-jp .jis
AddCharset ISO-2022-KR .iso2022-kr .kis
AddCharset ISO-2022-CN .iso2022-cn .cis
AddCharset Big5        .Big5       .big5
# For russian, more than one charset is used (depends on client, mostly):
AddCharset WINDOWS-1251 .cp-1251   .win-1251
AddCharset CP866       .cp866
AddCharset KOI8-r      .koi8-r .koi8-ru
AddCharset KOI8-ru     .koi8-uk .ua
AddCharset ISO-10646-UCS-2 .ucs2
AddCharset ISO-10646-UCS-4 .ucs4
AddCharset UTF-8       .utf8

AddCharset GB2312      .gb2312 .gb 
AddCharset utf-7       .utf7
AddCharset utf-8       .utf8
AddCharset big5	       .big5 .b5
AddCharset EUC-TW      .euc-tw	
AddCharset EUC-JP      .euc-jp
AddCharset EUC-KR      .euc-kr
AddCharset shift_jis   .sjis

#AddType application/x-httpd-php .php
#AddType application/x-httpd-php-source .phps

AddType application/x-tar .tgz

# To use CGI scripts outside /cgi-bin/:
#
#AddHandler cgi-script .cgi

# To use server-parsed HTML files
#
<FilesMatch "\.shtml(\..+)?$">
    SetOutputFilter INCLUDES
</FilesMatch>

# If you wish to use server-parsed imagemap files, use
#
#AddHandler imap-file map

BrowserMatch "Mozilla/2" nokeepalive
BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0
BrowserMatch "RealPlayer 4\.0" force-response-1.0
BrowserMatch "Java/1\.0" force-response-1.0
BrowserMatch "JDK/1\.0" force-response-1.0

#
# The following directive disables redirects on non-GET requests for
# a directory that does not include the trailing slash.  This fixes a 
# problem with Microsoft WebFolders which does not appropriately handle 
# redirects for folders with DAV methods.
#

BrowserMatch "Microsoft Data Access Internet Publishing Provider" redirect-carefully
BrowserMatch "^WebDrive" redirect-carefully
BrowserMatch "^gnome-vfs" redirect-carefully 
BrowserMatch "^WebDAVFS/1.[012]" redirect-carefully

# Allow server status reports, with the URL of http://servername/server-status
# Change the ".your_domain.com" to match your domain to enable.
#
#<Location /server-status>
#    SetHandler server-status
#    Order deny,allow
#    Deny from all
#    Allow from .your_domain.com
#</Location>

# Allow remote server configuration reports, with the URL of
#  http://servername/server-info (requires that mod_info.c be loaded).
# Change the ".your_domain.com" to match your domain to enable.
#
#<Location /server-info>
#    SetHandler server-info
#    Order deny,allow
#    Deny from all
#    Allow from .your_domain.com
#</Location>

# Include the virtual host configurations:
Include /etc/apache2/sites-enabled/[^.#]*

access.log. Es hat ca. 2 Stunden funktioniert. Danach nicht mehr.
Code:
127.0.0.1 - - [20/Jun/2006:15:22:01 +0200] "GET / HTTP/1.1" 200 20 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:15:22:02 +0200] "GET /favicon.ico HTTP/1.1" 404 316 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:15:22:36 +0200] "GET / HTTP/1.1" 200 589 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:15:22:36 +0200] "GET /icons/blank.gif HTTP/1.1" 200 148 "http://localhost/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:15:22:36 +0200] "GET /icons/folder.gif HTTP/1.1" 200 225 "http://localhost/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:15:22:37 +0200] "GET /apache2-default/ HTTP/1.1" 200 1457 "http://localhost/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:15:22:37 +0200] "GET /apache2-default/apache_pb.gif HTTP/1.1" 200 2326 "http://localhost/apache2-default/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:15:24:29 +0200] "GET / HTTP/1.1" 200 67 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:15:24:52 +0200] "GET / HTTP/1.1" 200 68 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:15:25:53 +0200] "GET / HTTP/1.1" 200 67 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:15:25:58 +0200] "GET /home/johannes/Privat/PHP/public_html/ HTTP/1.1" 404 342 "http://localhost/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:15:26:24 +0200] "GET / HTTP/1.1" 200 70 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:15:26:29 +0200] "GET /home/johannes/Privat/PHP/public_html/ HTTP/1.1" 404 342 "http://localhost/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:15:39:31 +0200] "GET /~johannes/ HTTP/1.1" 404 338 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:15:39:35 +0200] "GET /~johannes HTTP/1.1" 404 337 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:15:39:37 +0200] "GET /~johannes HTTP/1.1" 404 337 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:15:39:40 +0200] "GET / HTTP/1.1" 304 - "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:15:39:47 +0200] "GET /~johannes HTTP/1.1" 404 337 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:15:40:07 +0200] "GET /~johannes HTTP/1.1" 404 337 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:15:40:12 +0200] "GET / HTTP/1.1" 200 612 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:15:40:12 +0200] "GET /icons/blank.gif HTTP/1.1" 304 - "http://localhost/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:15:40:12 +0200] "GET /icons/folder.gif HTTP/1.1" 304 - "http://localhost/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:15:40:17 +0200] "GET /~johannes HTTP/1.1" 404 337 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:15:40:20 +0200] "GET /~johannes/ HTTP/1.1" 404 338 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:15:45:11 +0200] "GET /~johannes/ HTTP/1.1" 200 729 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:15:45:11 +0200] "GET /icons/blank.gif HTTP/1.1" 304 - "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:15:45:11 +0200] "GET /icons/back.gif HTTP/1.1" 200 216 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:15:45:11 +0200] "GET /icons/unknown.gif HTTP/1.1" 200 245 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:15:45:13 +0200] "GET /~johannes/test.php?=PHPE9568F35-D428-11d2-A769-00AA001ACF42 HTTP/1.1" 200 2146 "http://localhost/~johannes/test.php" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:15:45:13 +0200] "GET /~johannes/test.php?=PHPE9568F34-D428-11d2-A769-00AA001ACF42 HTTP/1.1" 200 2524 "http://localhost/~johannes/test.php" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:15:45:13 +0200] "GET /~johannes/test.php HTTP/1.1" 200 42326 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:15:46:17 +0200] "GET /~johannes/test.php HTTP/1.1" 404 346 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:15:46:27 +0200] "GET /~johannes/test.php HTTP/1.1" 404 346 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:15:46:31 +0200] "GET / HTTP/1.1" 200 612 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:15:46:37 +0200] "GET /~johannes HTTP/1.1" 404 337 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:15:46:54 +0200] "GET /~johannes/Privat/PHP/public_html HTTP/1.1" 404 360 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:15:47:27 +0200] "GET /~johannes/ HTTP/1.1" 404 338 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:15:47:36 +0200] "GET /~johannes/Privat/PHP/ HTTP/1.1" 404 349 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:15:53:13 +0200] "GET /~johannes/Privat/PHP/ HTTP/1.1" 404 349 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:15:53:16 +0200] "GET /~johannes HTTP/1.1" 301 365 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:15:53:16 +0200] "GET /~johannes/ HTTP/1.1" 200 70 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:15:53:18 +0200] "GET /home/johannes/Privat/PHP/public_html/ HTTP/1.1" 404 365 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:15:53:34 +0200] "GET /~johannes/ HTTP/1.1" 200 729 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:15:53:34 +0200] "GET /icons/back.gif HTTP/1.1" 304 - "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:15:53:34 +0200] "GET /icons/unknown.gif HTTP/1.1" 304 - "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:15:53:36 +0200] "GET /~johannes/test.php HTTP/1.1" 200 42326 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:15:53:36 +0200] "GET /~johannes/test.php?=PHPE9568F35-D428-11d2-A769-00AA001ACF42 HTTP/1.1" 200 2146 "http://localhost/~johannes/test.php" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:15:53:36 +0200] "GET /~johannes/test.php?=PHPE9568F34-D428-11d2-A769-00AA001ACF42 HTTP/1.1" 200 2524 "http://localhost/~johannes/test.php" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:15:57:37 +0200] "GET /~johannes/ HTTP/1.1" 200 729 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:05:20 +0200] "GET /~johannes/ HTTP/1.1" 200 729 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:05:20 +0200] "GET /icons/blank.gif HTTP/1.1" 304 - "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:05:20 +0200] "GET /icons/back.gif HTTP/1.1" 304 - "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:05:20 +0200] "GET /icons/unknown.gif HTTP/1.1" 304 - "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:05:22 +0200] "GET /~johannes/ HTTP/1.1" 200 729 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:05:22 +0200] "GET /icons/unknown.gif HTTP/1.1" 304 - "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:05:22 +0200] "GET /icons/blank.gif HTTP/1.1" 304 - "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:05:22 +0200] "GET /icons/back.gif HTTP/1.1" 304 - "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:05:29 +0200] "GET /~johannes/Privat/PHP/ HTTP/1.1" 404 349 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:05:39 +0200] "GET /~johannes/Privat/PHP/public_htlm HTTP/1.1" 404 360 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:05:47 +0200] "GET /~johannes/Privat/PHP/public_html/ HTTP/1.1" 404 361 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:06:19 +0200] "GET /~johannes/Privat/PHP/ HTTP/1.1" 404 349 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:08:27 +0200] "GET /~johannes/Privat/PHP/ HTTP/1.1" 404 349 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:08:30 +0200] "GET /~johannes/ HTTP/1.1" 200 729 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:08:34 +0200] "GET /~johannes/ HTTP/1.1" 200 729 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:08:34 +0200] "GET /icons/blank.gif HTTP/1.1" 304 - "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:08:34 +0200] "GET /icons/back.gif HTTP/1.1" 304 - "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:08:34 +0200] "GET /icons/unknown.gif HTTP/1.1" 304 - "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:08:35 +0200] "GET /~johannes/ HTTP/1.1" 200 729 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:08:35 +0200] "GET /icons/unknown.gif HTTP/1.1" 304 - "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:08:35 +0200] "GET /icons/back.gif HTTP/1.1" 304 - "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:08:35 +0200] "GET /icons/blank.gif HTTP/1.1" 304 - "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:08:48 +0200] "GET /~johannes/ HTTP/1.1" 404 338 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:08:56 +0200] "GET /~johannes/Privat/PHP HTTP/1.1" 404 348 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:09:01 +0200] "GET /~johannes/Privat/PHP/ HTTP/1.1" 404 349 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:09:22 +0200] "GET /~johannes/Privat/PHP/test.php HTTP/1.1" 404 357 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:11:07 +0200] "GET /~johannes/ HTTP/1.1" 404 338 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:11:12 +0200] "GET / HTTP/1.1" 200 612 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:11:22 +0200] "GET /~johannes/Privat/PHP/public_htlm HTTP/1.1" 404 360 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:11:27 +0200] "GET /~johannes/Privat/PHP/public_html HTTP/1.1" 404 360 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:11:31 +0200] "GET /~johannes/Privat/PHP/public_html/ HTTP/1.1" 404 361 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:12:13 +0200] "GET /~johannes/Privat/PHP/public_html/ HTTP/1.1" 404 361 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:12:16 +0200] "GET /~johannes/Privat/PHP/public_html/ HTTP/1.1" 404 361 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:12:22 +0200] "GET /~johannes/ HTTP/1.1" 404 338 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:12:31 +0200] "GET /~johannes/Privat/PHP/ HTTP/1.1" 404 349 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:12:43 +0200] "GET /~johannes/Privat/PHP/public_html/test.php HTTP/1.1" 404 369 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:14:01 +0200] "GET /~johannes/ HTTP/1.1" 200 729 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:14:03 +0200] "GET /~johannes/test.php HTTP/1.1" 200 42326 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:14:03 +0200] "GET /~johannes/test.php?=PHPE9568F34-D428-11d2-A769-00AA001ACF42 HTTP/1.1" 200 2524 "http://localhost/~johannes/test.php" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:14:03 +0200] "GET /~johannes/test.php?=PHPE9568F35-D428-11d2-A769-00AA001ACF42 HTTP/1.1" 200 2146 "http://localhost/~johannes/test.php" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:20:10 +0200] "GET /~johannes/ HTTP/1.1" 200 890 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:20:10 +0200] "GET /favicon.ico HTTP/1.1" 404 339 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:20:57 +0200] "GET /~johannes/ HTTP/1.1" 304 - "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:22:27 +0200] "GET /~johannes/ HTTP/1.1" 200 966 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:24:40 +0200] "GET /~johannes/ HTTP/1.1" 200 92 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:26:30 +0200] "GET /~johannes/ HTTP/1.1" 200 77 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:26:31 +0200] "GET /~johannes/ HTTP/1.1" 304 - "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:28:43 +0200] "GET /~johannes/ HTTP/1.1" 200 106 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:28:44 +0200] "GET /~johannes/ HTTP/1.1" 304 - "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:28:58 +0200] "GET /~johannes/ HTTP/1.1" 200 112 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:31:44 +0200] "GET /~johannes/ HTTP/1.1" 200 88 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:31:45 +0200] "GET /~johannes/ HTTP/1.1" 304 - "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:31:46 +0200] "GET /~johannes/ HTTP/1.1" 304 - "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:32:01 +0200] "GET /~johannes/test.php HTTP/1.1" 200 - "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:32:18 +0200] "GET /~johannes/ HTTP/1.1" 200 847 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:32:18 +0200] "GET /icons/blank.gif HTTP/1.1" 200 148 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:32:18 +0200] "GET /icons/back.gif HTTP/1.1" 200 216 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:32:18 +0200] "GET /icons/unknown.gif HTTP/1.1" 200 245 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:32:18 +0200] "GET /icons/text.gif HTTP/1.1" 200 229 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:32:21 +0200] "GET /~johannes/test.php HTTP/1.1" 200 - "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:33:02 +0200] "GET /~johannes/test.php HTTP/1.1" 200 42562 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:33:03 +0200] "GET /~johannes/test.php?=PHPE9568F34-D428-11d2-A769-00AA001ACF42 HTTP/1.1" 200 2524 "http://localhost/~johannes/test.php" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:33:03 +0200] "GET /~johannes/test.php?=PHPE9568F35-D428-11d2-A769-00AA001ACF42 HTTP/1.1" 200 2146 "http://localhost/~johannes/test.php" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:35:02 +0200] "GET /~johannes/ HTTP/1.1" 200 847 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:35:04 +0200] "GET /~johannes/test.php HTTP/1.1" 200 40 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:35:59 +0200] "GET /~johannes/test.php HTTP/1.1" 200 100 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:38:15 +0200] "GET /~johannes/test.php HTTP/1.1" 200 57 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:39:10 +0200] "GET /~johannes/ HTTP/1.1" 200 179 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:39:15 +0200] "POST /~johannes/test.php HTTP/1.1" 200 57 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:41:22 +0200] "GET /~johannes/ HTTP/1.1" 200 210 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:45:32 +0200] "GET /~johannes/ HTTP/1.1" 200 211 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:46:00 +0200] "GET /~johannes/ HTTP/1.1" 200 169 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:46:40 +0200] "GET /~johannes/ HTTP/1.1" 200 190 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:47:16 +0200] "GET /~johannes/ HTTP/1.1" 200 191 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:47:59 +0200] "GET /~johannes/ HTTP/1.1" 200 273 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:48:18 +0200] "POST /~johannes/test.php HTTP/1.1" 200 29 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:49:35 +0200] "POST /~johannes/test.php HTTP/1.1" 200 180 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:49:38 +0200] "POST /~johannes/test.php HTTP/1.1" 200 180 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:50:01 +0200] "POST /~johannes/test.php HTTP/1.1" 200 45 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:50:45 +0200] "POST /~johannes/test.php HTTP/1.1" 200 45 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:52:00 +0200] "POST /~johannes/test.php HTTP/1.1" 200 45 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:52:09 +0200] "POST /~johannes/test.php HTTP/1.1" 200 45 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:52:56 +0200] "POST /~johannes/test.php HTTP/1.1" 200 1 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:53:27 +0200] "POST /~johannes/test.php HTTP/1.1" 200 126 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:54:22 +0200] "POST /~johannes/test.php HTTP/1.1" 200 148 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:54:25 +0200] "GET /~johannes/ HTTP/1.1" 200 211 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:54:26 +0200] "GET /~johannes/ HTTP/1.1" 304 - "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:54:31 +0200] "POST /~johannes/test.php HTTP/1.1" 200 148 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:55:17 +0200] "POST /~johannes/test.php HTTP/1.1" 200 151 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:56:10 +0200] "POST /~johannes/test.php HTTP/1.1" 200 129 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:57:04 +0200] "POST /~johannes/test.php HTTP/1.1" 200 129 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:57:24 +0200] "POST /~johannes/test.php HTTP/1.1" 200 151 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:57:44 +0200] "POST /~johannes/test.php HTTP/1.1" 200 151 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:58:02 +0200] "POST /~johannes/test.php HTTP/1.1" 200 151 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:58:20 +0200] "POST /~johannes/test.php HTTP/1.1" 200 151 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:58:49 +0200] "POST /~johannes/test.php HTTP/1.1" 200 129 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:59:01 +0200] "POST /~johannes/test.php HTTP/1.1" 200 129 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:59:12 +0200] "POST /~johannes/test.php HTTP/1.1" 200 22 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:16:59:22 +0200] "POST /~johannes/test.php HTTP/1.1" 200 22 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:17:00:15 +0200] "GET /~johannes/ HTTP/1.1" 200 171 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:17:00:16 +0200] "POST /~johannes/test.php HTTP/1.1" 200 8 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:17:00:48 +0200] "GET /~johannes/ HTTP/1.1" 304 - "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:17:00:49 +0200] "POST /~johannes/test.php HTTP/1.1" 200 14 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:17:01:39 +0200] "GET /~johannes/ HTTP/1.1" 200 171 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:17:01:40 +0200] "POST /~johannes/test.php HTTP/1.1" 200 14 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:17:02:19 +0200] "GET /~johannes/ HTTP/1.1" 200 171 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:17:02:23 +0200] "POST /~johannes/test.php HTTP/1.1" 200 14 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:17:03:23 +0200] "GET /~johannes/ HTTP/1.1" 304 - "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:17:03:29 +0200] "POST /~johannes/test.php HTTP/1.1" 200 14 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:17:04:18 +0200] "GET /~johannes/ HTTP/1.1" 200 170 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:17:04:20 +0200] "POST /~johannes/test.php HTTP/1.1" 200 14 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:17:05:12 +0200] "GET /~johannes/ HTTP/1.1" 200 169 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:17:05:13 +0200] "GET /~johannes/ HTTP/1.1" 304 - "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:17:05:13 +0200] "POST /~johannes/test.php HTTP/1.1" 200 14 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:17:05:18 +0200] "POST /~johannes/test.php HTTP/1.1" 200 14 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:17:05:28 +0200] "GET /~johannes/ HTTP/1.1" 304 - "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:17:05:33 +0200] "POST /~johannes/test.php HTTP/1.1" 200 14 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:17:08:12 +0200] "GET /~johannes/ HTTP/1.1" 304 - "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:17:08:13 +0200] "GET /~johannes/ HTTP/1.1" 304 - "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:17:08:16 +0200] "POST /~johannes/test.php HTTP/1.1" 200 42964 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:17:08:16 +0200] "GET /~johannes/test.php?=PHPE9568F34-D428-11d2-A769-00AA001ACF42 HTTP/1.1" 200 2524 "http://localhost/~johannes/test.php" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:17:08:16 +0200] "GET /~johannes/test.php?=PHPE9568F35-D428-11d2-A769-00AA001ACF42 HTTP/1.1" 200 2146 "http://localhost/~johannes/test.php" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:17:08:50 +0200] "GET /~johannes/ HTTP/1.1" 200 173 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:17:08:52 +0200] "POST /~johannes/test.php HTTP/1.1" 200 14 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:17:10:45 +0200] "GET /~johannes/ HTTP/1.1" 200 179 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:17:10:45 +0200] "GET /~johannes/ HTTP/1.1" 304 - "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:17:10:49 +0200] "POST /~johannes/test.php HTTP/1.1" 200 28 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:17:11:33 +0200] "GET /~johannes/ HTTP/1.1" 200 179 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:17:11:33 +0200] "GET /favicon.ico HTTP/1.1" 404 339 "-" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
127.0.0.1 - - [20/Jun/2006:17:11:35 +0200] "POST /~johannes/test.php HTTP/1.1" 200 28 "http://localhost/~johannes/" "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060406 Firefox/1.5.0.4 (Debian-1.5.dfsg+1.5.0.4-1)"
flo
 
Zuletzt bearbeitet:
In /etc/apache2/sites-enabled/ muessten noch Dateien liegen, in der deine VirtualHosts festgelegt sind (mindestens ein 000-default). Diese waere auch relevant. Hat der User www-data die notwendigen Rechte auf die Logdateien, auf das/die DocumentRoot/s und die public_html-Verzeichnisse?
 
cat /etc/apache2/sites-enabled/000-default
Code:
NameVirtualHost *
<VirtualHost *>
        ServerAdmin webmaster@localhost

        DocumentRoot /var/www
        <Directory />
                Options FollowSymLinks
                AllowOverride None
        </Directory>
        <Directory /var/www/>
                Options Indexes FollowSymLinks MultiViews
                AllowOverride None
                Order allow,deny
                allow from all
                # Uncomment this directive is you want to see apache2's
                # default start page (in /apache2-default) when you go to /
                #RedirectMatch ^/$ /apache2-default/
        </Directory>

        ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
        <Directory "/usr/lib/cgi-bin">
                AllowOverride None
                Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
                Order allow,deny
                Allow from all
        </Directory>

        ErrorLog /var/log/apache2/error.log

        # Possible values include: debug, info, notice, warn, error, crit,
        # alert, emerg.
        LogLevel warn

        CustomLog /var/log/apache2/access.log combined
        ServerSignature On

    Alias /doc/ "/usr/share/doc/"
    <Directory "/usr/share/doc/">
        Options Indexes MultiViews FollowSymLinks
        AllowOverride None
        Order deny,allow
        Deny from all
        Allow from 127.0.0.0/255.0.0.0 ::1/128
    </Directory>

</VirtualHost>

Habe als User das Recht auf public_html, auf die Log-Dateien hab ich keine. Dokument Root hab ich auch.
flo
 
Der User www-data hat keine Rechte auf die Logdateien? Dann ist es kein Wunder, dass der nichts loggen kann. Aendere mal die Rechte der Log-Dateien so, dass User und Gruppe 'www-data' darin schreiben und lesen koennen und restarte dann den Webserver. Wenn der Zugriff dann immernoch nicht funzt, duerfte zumindest in der access.log oder der error.log eine Fehlermeldung zu finden sein.
 
Habe immer noch keinen Zugriff. access.log hat sich nicht verändert, error.log auch nicht, es sind keine Fehler enthalten.
Code:
[Sun Jun 18 23:48:51 2006] [notice] Apache/2.0.55 (Debian) configured -- resuming normal operations
[Sun Jun 18 23:48:54 2006] [notice] caught SIGTERM, shutting down
[Sun Jun 18 23:48:56 2006] [notice] Apache/2.0.55 (Debian) PHP/5.1.4-0.1 configured -- resuming normal operations
[Mon Jun 19 00:10:14 2006] [notice] caught SIGTERM, shutting down
[Mon Jun 19 00:10:22 2006] [notice] Apache/2.0.55 (Debian) PHP/5.1.4-0.1 configured -- resuming normal operations
[Mon Jun 19 00:20:32 2006] [notice] caught SIGTERM, shutting down
[Mon Jun 19 09:25:04 2006] [notice] Apache/2.0.55 (Debian) PHP/5.1.4-0.1 configured -- resuming normal operations
[Mon Jun 19 10:25:38 2006] [notice] caught SIGTERM, shutting down
[Mon Jun 19 10:26:30 2006] [notice] Apache/2.0.55 (Debian) PHP/5.1.4-0.1 configured -- resuming normal operations
[Mon Jun 19 10:34:21 2006] [notice] caught SIGTERM, shutting down
[Mon Jun 19 10:45:58 2006] [notice] Apache/2.0.55 (Debian) PHP/5.1.4-0.1 configured -- resuming normal operations
[Mon Jun 19 10:52:54 2006] [notice] caught SIGTERM, shutting down
[Mon Jun 19 10:54:01 2006] [notice] Apache/2.0.55 (Debian) PHP/5.1.4-0.1 configured -- resuming normal operations
[Mon Jun 19 11:10:11 2006] [notice] SIGHUP received.  Attempting to restart
apache2: Could not determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
[Mon Jun 19 11:10:11 2006] [notice] Apache/2.0.55 (Debian) PHP/5.1.4-0.1 configured -- resuming normal operations
[Mon Jun 19 20:42:39 2006] [notice] SIGHUP received.  Attempting to restart
apache2: Could not determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
[Mon Jun 19 20:42:40 2006] [notice] Apache/2.0.55 (Debian) PHP/5.1.4-0.1 configured -- resuming normal operations
[Mon Jun 19 20:53:27 2006] [notice] caught SIGTERM, shutting down
[Mon Jun 19 20:54:42 2006] [notice] Apache/2.0.55 (Debian) PHP/5.1.4-0.1 configured -- resuming normal operations
[Mon Jun 19 21:04:05 2006] [notice] caught SIGTERM, shutting down
[Mon Jun 19 21:04:07 2006] [notice] Apache/2.0.55 (Debian) PHP/5.1.4-0.1 configured -- resuming normal operations
[Mon Jun 19 21:15:48 2006] [notice] caught SIGTERM, shutting down
[Mon Jun 19 21:15:49 2006] [notice] FastCGI: process manager initialized (pid 7688)
[Mon Jun 19 21:15:49 2006] [notice] Apache/2.0.55 (Debian) mod_fastcgi/2.4.2 PHP/5.1.4-0.1 configured -- resuming normal operations
[Mon Jun 19 21:23:07 2006] [notice] caught SIGTERM, shutting down
[Mon Jun 19 21:23:08 2006] [notice] FastCGI: process manager initialized (pid 7808)
[Mon Jun 19 21:23:08 2006] [notice] Apache/2.0.55 (Debian) mod_fastcgi/2.4.2 PHP/5.1.4-0.1 configured -- resuming normal operations
[Mon Jun 19 21:24:29 2006] [notice] caught SIGTERM, shutting down
[Mon Jun 19 21:24:30 2006] [notice] FastCGI: process manager initialized (pid 7879)
[Mon Jun 19 21:24:30 2006] [notice] Apache/2.0.55 (Debian) mod_fastcgi/2.4.2 PHP/5.1.4-0.1 configured -- resuming normal operations
[Mon Jun 19 21:44:39 2006] [notice] caught SIGTERM, shutting down
[Mon Jun 19 21:44:40 2006] [notice] FastCGI: process manager initialized (pid 8040)
[Mon Jun 19 21:44:40 2006] [notice] Apache/2.0.55 (Debian) mod_fastcgi/2.4.2 PHP/5.1.4-0.1 configured -- resuming normal operations
[Mon Jun 19 23:03:30 2006] [notice] caught SIGTERM, shutting down
[Tue Jun 20 10:51:35 2006] [notice] FastCGI: process manager initialized (pid 5536)
[Tue Jun 20 10:51:37 2006] [notice] Apache/2.0.55 (Debian) mod_fastcgi/2.4.2 PHP/5.1.4-0.1 configured -- resuming normal operations
[Tue Jun 20 12:50:12 2006] [notice] caught SIGTERM, shutting down
[Tue Jun 20 12:50:13 2006] [notice] FastCGI: process manager initialized (pid 9553)
[Tue Jun 20 12:50:14 2006] [notice] Apache/2.0.55 (Debian) mod_fastcgi/2.4.2 PHP/5.1.4-0.1 configured -- resuming normal operations
[Tue Jun 20 12:50:42 2006] [notice] caught SIGTERM, shutting down
[Tue Jun 20 12:50:43 2006] [notice] FastCGI: process manager initialized (pid 9624)
[Tue Jun 20 12:50:43 2006] [notice] Apache/2.0.55 (Debian) mod_fastcgi/2.4.2 PHP/5.1.4-0.1 configured -- resuming normal operations
[Tue Jun 20 12:52:59 2006] [notice] caught SIGTERM, shutting down
[Tue Jun 20 12:53:00 2006] [notice] FastCGI: process manager initialized (pid 9896)
[Tue Jun 20 12:53:00 2006] [notice] Apache/2.0.55 (Debian) mod_fastcgi/2.4.2 PHP/5.1.4-0.1 configured -- resuming normal operations
[Tue Jun 20 12:54:51 2006] [notice] caught SIGTERM, shutting down
[Tue Jun 20 12:54:51 2006] [notice] FastCGI: process manager initialized (pid 9964)
[Tue Jun 20 12:54:51 2006] [notice] Apache/2.0.55 (Debian) mod_fastcgi/2.4.2 PHP/5.1.4-0.1 configured -- resuming normal operations
[Tue Jun 20 12:55:11 2006] [notice] caught SIGTERM, shutting down
[Tue Jun 20 12:55:12 2006] [notice] FastCGI: process manager initialized (pid 10036)
[Tue Jun 20 12:55:12 2006] [notice] Apache/2.0.55 (Debian) mod_fastcgi/2.4.2 PHP/5.1.4-0.1 configured -- resuming normal operations
[Tue Jun 20 12:57:23 2006] [notice] caught SIGTERM, shutting down
[Tue Jun 20 12:57:24 2006] [notice] FastCGI: process manager initialized (pid 10237)
[Tue Jun 20 12:57:24 2006] [notice] Apache/2.0.55 (Debian) mod_fastcgi/2.4.2 PHP/5.1.4-0.1 configured -- resuming normal operations
[Tue Jun 20 13:05:39 2006] [notice] caught SIGTERM, shutting down
[Tue Jun 20 13:05:39 2006] [notice] FastCGI: process manager initialized (pid 10373)
[Tue Jun 20 13:05:39 2006] [notice] Apache/2.0.55 (Debian) mod_fastcgi/2.4.2 PHP/5.1.4-0.1 configured -- resuming normal operations
[Tue Jun 20 13:05:56 2006] [notice] caught SIGTERM, shutting down
[Tue Jun 20 13:05:57 2006] [notice] FastCGI: process manager initialized (pid 10442)
[Tue Jun 20 13:05:58 2006] [notice] Apache/2.0.55 (Debian) mod_fastcgi/2.4.2 PHP/5.1.4-0.1 configured -- resuming normal operations
[Tue Jun 20 15:22:02 2006] [error] [client 127.0.0.1] File does not exist: /var/www/favicon.ico
[Tue Jun 20 15:25:58 2006] [error] [client 127.0.0.1] File does not exist: /var/www/home, referer: http://localhost/
[Tue Jun 20 15:26:29 2006] [error] [client 127.0.0.1] File does not exist: /var/www/home, referer: http://localhost/
[Tue Jun 20 15:30:12 2006] [notice] caught SIGTERM, shutting down
[Tue Jun 20 15:38:52 2006] [notice] FastCGI: process manager initialized (pid 11114)
[Tue Jun 20 15:38:52 2006] [notice] Apache/2.0.55 (Debian) mod_fastcgi/2.4.2 mod_ldap_userdir/1.1.8 PHP/5.1.4-0.1 configured -- resuming normal operations
[Tue Jun 20 15:39:18 2006] [notice] caught SIGTERM, shutting down
[Tue Jun 20 15:39:20 2006] [notice] FastCGI: process manager initialized (pid 11219)
[Tue Jun 20 15:39:20 2006] [notice] Apache/2.0.55 (Debian) mod_fastcgi/2.4.2 mod_ldap_userdir/1.1.8 PHP/5.1.4-0.1 configured -- resuming normal operations
[Tue Jun 20 15:39:31 2006] [error] [client 127.0.0.1] File does not exist: /home/johannes/public_html
[Tue Jun 20 15:39:35 2006] [error] [client 127.0.0.1] File does not exist: /home/johannes/public_html
[Tue Jun 20 15:39:37 2006] [error] [client 127.0.0.1] File does not exist: /home/johannes/public_html
[Tue Jun 20 15:39:47 2006] [error] [client 127.0.0.1] File does not exist: /home/johannes/public_html
[Tue Jun 20 15:40:07 2006] [error] [client 127.0.0.1] File does not exist: /home/johannes/public_html
[Tue Jun 20 15:40:17 2006] [error] [client 127.0.0.1] File does not exist: /home/johannes/public_html
[Tue Jun 20 15:40:20 2006] [error] [client 127.0.0.1] File does not exist: /home/johannes/public_html
[Tue Jun 20 15:46:17 2006] [error] [client 127.0.0.1] File does not exist: /home/johannes/public_html, referer: http://localhost/~johannes/
[Tue Jun 20 15:46:24 2006] [notice] caught SIGTERM, shutting down
[Tue Jun 20 15:46:24 2006] [notice] FastCGI: process manager initialized (pid 11352)
[Tue Jun 20 15:46:24 2006] [notice] Apache/2.0.55 (Debian) mod_fastcgi/2.4.2 mod_ldap_userdir/1.1.8 PHP/5.1.4-0.1 configured -- resuming normal operations
[Tue Jun 20 15:46:27 2006] [error] [client 127.0.0.1] File does not exist: /home/johannes/public_html, referer: http://localhost/~johannes/
[Tue Jun 20 15:46:37 2006] [error] [client 127.0.0.1] File does not exist: /home/johannes/public_html
[Tue Jun 20 15:46:54 2006] [error] [client 127.0.0.1] File does not exist: /home/johannes/public_html
[Tue Jun 20 15:47:19 2006] [notice] caught SIGTERM, shutting down
[Tue Jun 20 15:47:20 2006] [notice] FastCGI: process manager initialized (pid 11436)
[Tue Jun 20 15:47:20 2006] [notice] Apache/2.0.55 (Debian) mod_fastcgi/2.4.2 mod_ldap_userdir/1.1.8 PHP/5.1.4-0.1 configured -- resuming normal operations
[Tue Jun 20 15:47:27 2006] [error] [client 127.0.0.1] File does not exist: /home/johannes/public_html
[Tue Jun 20 15:47:36 2006] [error] [client 127.0.0.1] File does not exist: /home/johannes/public_html
[Tue Jun 20 15:53:13 2006] [error] [client 127.0.0.1] File does not exist: /home/johannes/public_html/Privat
[Tue Jun 20 15:53:18 2006] [error] [client 127.0.0.1] File does not exist: /var/www/home, referer: http://localhost/~johannes/
[Tue Jun 20 15:57:25 2006] [notice] caught SIGTERM, shutting down
[Tue Jun 20 15:57:25 2006] [notice] FastCGI: process manager initialized (pid 11536)
[Tue Jun 20 15:57:25 2006] [notice] Apache/2.0.55 (Debian) mod_fastcgi/2.4.2 mod_ldap_userdir/1.1.8 PHP/5.1.4-0.1 configured -- resuming normal operations
[Tue Jun 20 16:05:13 2006] [notice] caught SIGTERM, shutting down
[Tue Jun 20 16:05:14 2006] [notice] FastCGI: process manager initialized (pid 11623)
[Tue Jun 20 16:05:14 2006] [notice] Apache/2.0.55 (Debian) mod_fastcgi/2.4.2 mod_ldap_userdir/1.1.8 PHP/5.1.4-0.1 configured -- resuming normal operations
[Tue Jun 20 16:05:29 2006] [error] [client 127.0.0.1] File does not exist: /home/johannes/public_html/Privat
[Tue Jun 20 16:05:39 2006] [error] [client 127.0.0.1] File does not exist: /home/johannes/public_html/Privat
[Tue Jun 20 16:05:47 2006] [error] [client 127.0.0.1] File does not exist: /home/johannes/public_html/Privat
[Tue Jun 20 16:06:19 2006] [error] [client 127.0.0.1] File does not exist: /home/johannes/public_html/Privat
[Tue Jun 20 16:08:22 2006] [notice] caught SIGTERM, shutting down
[Tue Jun 20 16:08:23 2006] [notice] FastCGI: process manager initialized (pid 11721)
[Tue Jun 20 16:08:23 2006] [notice] Apache/2.0.55 (Debian) mod_fastcgi/2.4.2 mod_ldap_userdir/1.1.8 PHP/5.1.4-0.1 configured -- resuming normal operations
[Tue Jun 20 16:08:27 2006] [error] [client 127.0.0.1] File does not exist: /home/johannes/public_html/Privat
[Tue Jun 20 16:08:48 2006] [error] [client 127.0.0.1] File does not exist: /home/johannes/public_html
[Tue Jun 20 16:08:56 2006] [error] [client 127.0.0.1] File does not exist: /home/johannes/public_html
[Tue Jun 20 16:09:01 2006] [error] [client 127.0.0.1] File does not exist: /home/johannes/public_html
[Tue Jun 20 16:09:22 2006] [error] [client 127.0.0.1] File does not exist: /home/johannes/public_html
[Tue Jun 20 16:10:59 2006] [notice] caught SIGTERM, shutting down
[Tue Jun 20 16:11:00 2006] [notice] FastCGI: process manager initialized (pid 11834)
[Tue Jun 20 16:11:00 2006] [notice] Apache/2.0.55 (Debian) mod_fastcgi/2.4.2 mod_ldap_userdir/1.1.8 PHP/5.1.4-0.1 configured -- resuming normal operations
[Tue Jun 20 16:11:07 2006] [error] [client 127.0.0.1] File does not exist: /home/johannes/public_html
[Tue Jun 20 16:11:22 2006] [error] [client 127.0.0.1] File does not exist: /home/johannes/public_html
[Tue Jun 20 16:11:27 2006] [error] [client 127.0.0.1] File does not exist: /home/johannes/public_html
[Tue Jun 20 16:11:31 2006] [error] [client 127.0.0.1] File does not exist: /home/johannes/public_html
[Tue Jun 20 16:12:08 2006] [notice] caught SIGTERM, shutting down
[Tue Jun 20 16:12:10 2006] [notice] FastCGI: process manager initialized (pid 11915)
[Tue Jun 20 16:12:10 2006] [notice] Apache/2.0.55 (Debian) mod_fastcgi/2.4.2 mod_ldap_userdir/1.1.8 PHP/5.1.4-0.1 configured -- resuming normal operations
[Tue Jun 20 16:12:13 2006] [error] [client 127.0.0.1] File does not exist: /home/johannes/public_html
[Tue Jun 20 16:12:16 2006] [error] [client 127.0.0.1] File does not exist: /home/johannes/public_html
[Tue Jun 20 16:12:22 2006] [error] [client 127.0.0.1] File does not exist: /home/johannes/public_html
[Tue Jun 20 16:12:31 2006] [error] [client 127.0.0.1] File does not exist: /home/johannes/public_html
[Tue Jun 20 16:12:43 2006] [error] [client 127.0.0.1] File does not exist: /home/johannes/public_html
[Tue Jun 20 16:13:39 2006] [notice] caught SIGTERM, shutting down
[Tue Jun 20 16:13:40 2006] [notice] FastCGI: process manager initialized (pid 12000)
[Tue Jun 20 16:13:40 2006] [notice] Apache/2.0.55 (Debian) mod_fastcgi/2.4.2 mod_ldap_userdir/1.1.8 PHP/5.1.4-0.1 configured -- resuming normal operations
[Tue Jun 20 16:20:10 2006] [error] [client 127.0.0.1] File does not exist: /var/www/favicon.ico
[Tue Jun 20 17:11:33 2006] [error] [client 127.0.0.1] File does not exist: /var/www/favicon.ico
[Tue Jun 20 17:12:27 2006] [notice] caught SIGTERM, shutting down
[Tue Jun 20 17:13:30 2006] [notice] FastCGI: process manager initialized (pid 5232)
[Tue Jun 20 17:13:31 2006] [notice] Apache/2.0.55 (Debian) mod_fastcgi/2.4.2 mod_ldap_userdir/1.1.8 PHP/5.1.4-0.1 configured -- resuming normal operations
[Tue Jun 20 17:15:07 2006] [notice] caught SIGTERM, shutting down
[Tue Jun 20 17:15:09 2006] [notice] FastCGI: process manager initialized (pid 6156)
[Tue Jun 20 17:15:09 2006] [notice] Apache/2.0.55 (Debian) mod_fastcgi/2.4.2 mod_ldap_userdir/1.1.8 PHP/5.1.4-0.1 configured -- resuming normal operations
[Tue Jun 20 17:21:00 2006] [notice] caught SIGTERM, shutting down
[Tue Jun 20 17:21:01 2006] [notice] FastCGI: process manager initialized (pid 6311)
[Tue Jun 20 17:21:01 2006] [notice] Apache/2.0.55 (Debian) mod_fastcgi/2.4.2 mod_ldap_userdir/1.1.8 PHP/5.1.4-0.1 configured -- resuming normal operations
[Tue Jun 20 20:05:30 2006] [notice] caught SIGTERM, shutting down
[Tue Jun 20 20:05:31 2006] [notice] FastCGI: process manager initialized (pid 6761)
[Tue Jun 20 20:05:31 2006] [notice] Apache/2.0.55 (Debian) mod_fastcgi/2.4.2 mod_ldap_userdir/1.1.8 PHP/5.1.4-0.1 configured -- resuming normal operations
[Tue Jun 20 20:16:28 2006] [notice] caught SIGTERM, shutting down
[Tue Jun 20 20:17:25 2006] [notice] FastCGI: process manager initialized (pid 5205)
[Tue Jun 20 20:17:26 2006] [notice] Apache/2.0.55 (Debian) mod_fastcgi/2.4.2 mod_ldap_userdir/1.1.8 PHP/5.1.4-0.1 configured -- resuming normal operations
[Tue Jun 20 22:22:13 2006] [notice] caught SIGTERM, shutting down
[Tue Jun 20 22:22:14 2006] [notice] FastCGI: process manager initialized (pid 6412)
[Tue Jun 20 22:22:14 2006] [notice] Apache/2.0.55 (Debian) mod_fastcgi/2.4.2 mod_ldap_userdir/1.1.8 PHP/5.1.4-0.1 configured -- resuming normal operations
access.log siehe vorheriger Thread.
 
also da stimtm doch etwas nicht ... er startet und läuft prtokolliert aber nix. die rechte für das error.log scheinen ja zu reichen. die haben die selben rechte?
poste doch mal die ausgabe von:
ls -la /var/log/apache2/
desweiteren erhöhe auch mal das loglevel in dem du die zeile
auf
änderst.

was passiert wenn du den server mit:
apache2ctl -e debug start
startest?
 
ls -la /var/log/apache2/
drwxrwxrwx 2 root root 4096 2006-06-18 23:48 .
drwxr-xr-x 12 root root 4096 2006-06-20 20:17 ..
-rwxrwxrwx 1 root adm 38433 2006-06-20 17:11 access.log
-rwxrwxrwx 1 root adm 15325 2006-06-20 22:44 error.log

wo muß ich das LogLevel setzen? In /etc/apache2/sites-enabled/000-default?
flo
 
Code:
chown -R www-data:www-data /var/log/apache2
Das LogLevel wuerde ich global in der apache2.conf setzen und natuerlich im VHost erstmal auskommentieren.
 
apache2ctl -e debug start funktioniert nicht
apache2ctl -e debug gibt aus:
Code:
[Tue Jun 20 23:20:05 2006] [debug] /home/adconrad/apache-sec/apache2-2.0.55/build-tree/apache2/modules/mappers/mod_so.c(248): loaded module actions_module
[Tue Jun 20 23:20:05 2006] [debug] /home/adconrad/apache-sec/apache2-2.0.55/build-tree/apache2/modules/mappers/mod_so.c(248): loaded module cgi_module
[Tue Jun 20 23:20:05 2006] [debug] /home/adconrad/apache-sec/apache2-2.0.55/build-tree/apache2/modules/mappers/mod_so.c(248): loaded module fastcgi_module
[Tue Jun 20 23:20:05 2006] [debug] /home/adconrad/apache-sec/apache2-2.0.55/build-tree/apache2/modules/mappers/mod_so.c(248): loaded module ldap_userdir_module
[Tue Jun 20 23:20:05 2006] [debug] /home/adconrad/apache-sec/apache2-2.0.55/build-tree/apache2/modules/mappers/mod_so.c(248): loaded module php5_module
[Tue Jun 20 23:20:05 2006] [debug] /home/adconrad/apache-sec/apache2-2.0.55/build-tree/apache2/modules/mappers/mod_so.c(248): loaded module userdir_module
[Tue Jun 20 23:20:05 2006] [notice] FastCGI: process manager initialized (pid 6007)
[Tue Jun 20 23:20:05 2006] [notice] Apache/2.0.55 (Debian) mod_fastcgi/2.4.2 mod_ldap_userdir/1.1.8 PHP/5.1.4-0.1 configured -- resuming normal operations
[Tue Jun 20 23:20:05 2006] [info] Server built: Jan 16 2006 10:13:41
[Tue Jun 20 23:20:05 2006] [debug] /home/adconrad/apache-sec/apache2-2.0.55/build-tree/apache2/server/mpm/prefork/prefork.c(956): AcceptMutex: sysvsem (default: sysvsem)

Habe in der /etc/hosts alles Unnütze rausgehaut. Funktioniert nun.
flo
 
Zuletzt bearbeitet:

Ähnliche Themen

es kommen abwechselnd neuere Distributionen...

Keine Anmeldung bei phpmyadmin möglich!

Keine grafische Oberfläche (Debian Installation)

Sicherheitsfragen zu PHP-Anwendungen auf der Webseite

Raspberry Libreelec/Kodi TBS5922SE Treiber

Zurück
Oben