You don't have permission to access / on this server.

Alles, was den Apache betrifft, kann hier besprochen werden.

You don't have permission to access / on this server.

Postby uhuwe » 17. November 2009 20:32

Auf http://localhost bekomme ich die It works! Seite und auf http://www.fahnensex.de: (ist nur local auf meinem Rechner.
Forbidden
You don't have permission to access / on this server.
------------------------------------------------------------
Apache/2.2.12 (Ubuntu) Server at http://www.fahnensex.de Port 80


Hier einen Blick auf die Konfigurationsdateien.

Meine hosts sieht so aus:
Code: Select all
127.0.0.1   localhost
127.0.1.1   ugoessner-desktop
127.0.0.1   www.fahnensex.de

# The following lines are desirable for IPv6 capable hosts
::1     localhost ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhosts


meine apache2.conf sieht so aus:
Code: Select all
#
# Based upon the NCSA server configuration files originally by Rob McCool.
#
# This is the main Apache server configuration file.  It contains the
# configuration directives that give the server its instructions.
# See http://httpd.apache.org/docs/2.2/ for detailed information about
# the directives.
#
# Do NOT simply read the instructions in here without understanding
# what they do.  They're here only as hints or reminders.  If you are unsure
# consult the online docs. You have been warned. 
#
# The configuration directives are grouped into three basic sections:
#  1. Directives that control the operation of the Apache server process as a
#     whole (the 'global environment').
#  2. Directives that define the parameters of the 'main' or 'default' server,
#     which responds to requests that aren't handled by a virtual host.
#     These directives also provide default values for the settings
#     of all virtual hosts.
#  3. Settings for virtual hosts, which allow Web requests to be sent to
#     different IP addresses or hostnames and have them handled by the
#     same Apache server process.
#
# Configuration and logfile names: If the filenames you specify for many
# of the server's control files begin with "/" (or "drive:/" for Win32), the
# server will use that explicit path.  If the filenames do *not* begin
# with "/", the value of ServerRoot is prepended -- so "/var/log/apache2/foo.log"
# with ServerRoot set to "" will be interpreted by the
# server as "//var/log/apache2/foo.log".
#

### Section 1: Global Environment
#
# The directives in this section affect the overall operation of Apache,
# such as the number of concurrent requests it can handle or where it
# can find its configuration files.
#

#
# 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://httpd.apache.org/docs-2.1/mod/mpm_common.html#lockfile>);
# you will save yourself a lot of trouble.
#
# Do NOT add a slash at the end of the directory path.
#
ServerRoot "/etc/apache2"

#
# The accept serialization lock file MUST BE STORED ON A LOCAL DISK.
#
#<IfModule !mpm_winnt.c>
#<IfModule !mpm_netware.c>
LockFile /var/lock/apache2/accept.lock
#</IfModule>
#</IfModule>

#
# PidFile: The file in which the server should record its process
# identification number when it starts.
# This needs to be set in /etc/apache2/envvars
#
PidFile ${APACHE_PID_FILE}

#
# 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 mpm_prefork_module>
    StartServers          5
    MinSpareServers       5
    MaxSpareServers      10
    MaxClients          150
    MaxRequestsPerChild   0
</IfModule>

# worker MPM
# StartServers: initial number of server processes to start
# MaxClients: maximum number of simultaneous client connections
# 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 mpm_worker_module>
    StartServers          2
    MinSpareThreads      25
    MaxSpareThreads      75
    ThreadLimit          64
    ThreadsPerChild      25
    MaxClients          150
    MaxRequestsPerChild   0
</IfModule>

# event MPM
# StartServers: initial number of server processes to start
# MaxClients: maximum number of simultaneous client connections
# 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 mpm_event_module>
    StartServers          2
    MaxClients          150
    MinSpareThreads      25
    MaxSpareThreads      75
    ThreadLimit          64
    ThreadsPerChild      25
    MaxRequestsPerChild   0
</IfModule>

# These need to be set in /etc/apache2/envvars
User ${APACHE_RUN_USER}
Group ${APACHE_RUN_GROUP}

#
# AccessFileName: The name of the file to look for in each directory
# for additional configuration directives.  See also the AllowOverride
# directive.
#

#AccessFileName .htaccess

#
# The following lines prevent .htaccess and .htpasswd files from being
# viewed by Web clients.
#
<Files ~ "^\.ht">
    Order allow,deny
    Deny from all
</Files>

#
# DefaultType is the default MIME type the server will use for a document
# if it cannot otherwise determine one, such as from filename extensions.
# If your server contains mostly text or HTML documents, "text/plain" is
# a good value.  If most of your content is binary, such as applications
# or images, you may want to use "application/octet-stream" instead to
# keep browsers from trying to display binary files as though they are
# text.
#
DefaultType text/plain


#
# HostnameLookups: Log the names of clients or just their IP addresses
# e.g., www.apache.org (on) or 204.62.129.132 (off).
# The default is off because it'd be overall better for the net if people
# had to knowingly turn this feature on, since enabling it means that
# each client request will result in AT LEAST one lookup request to the
# nameserver.
#
HostnameLookups Off

# ErrorLog: The location of the error log file.
# If you do not specify an ErrorLog directive within a <VirtualHost>
# container, error messages relating to that virtual host will be
# logged here.  If you *do* define an error logfile for a <VirtualHost>
# container, that host's errors will be logged there and not here.
#
ErrorLog /var/log/apache2/error.log

#
# LogLevel: Control the number of messages logged to the error_log.
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
#
LogLevel warn

# 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

#
# The following directives define some format nicknames for use with
# a CustomLog directive (see below).
# If you are behind a reverse proxy, you might want to change %h into %{X-Forwarded-For}i
#
LogFormat "%v:%p %h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" vhost_combined
LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %O" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent

#
# Define an access log for VirtualHosts that don't define their own logfile
CustomLog /var/log/apache2/other_vhosts_access.log vhost_combined


# Include of directories ignores editors' and dpkg's backup files,
# see README.Debian for details.

# Include generic snippets of statements
Include /etc/apache2/conf.d/

# Include the virtual host configurations:
Include /etc/apache2/sites-enabled/


meine userdir.conf sieht so aus: (eine Linkdatei befindet sich auch in /etc/apache2/mods-enabled und eine Linkdatei zu der dazu gehörigen .load Datei in /etc/apache2/mods-enabled)
Code: Select all
<IfModule mod_userdir.c>
        UserDir public_html
        UserDir disabled root

        <Directory /home/*/public_html>
                AllowOverride FileInfo AuthConfig Limit Indexes
                Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
                <Limit GET POST OPTIONS>
                        Order allow,deny
                        Allow from all
                </Limit>
                <LimitExcept GET POST OPTIONS>
                        Order deny,allow
                        Deny from all
                </LimitExcept>
        </Directory>
  <Directory "/Daten/Homepagefiles">
    Options FollowSymLinks
    AllowOverride None
    Order allow,deny
    Allow from all
  </Directory>
</IfModule>


meine default sieht so aus: (eine Linkdatei befindet sich auch in /etc/apache2/sites-enabled und eine Linkdatei zu der vhost_alias.load in /etc/apache2/mods-enabled)
Code: Select all
<VirtualHost *:80>
   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
   </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

    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>

<VirtualHost *:80>
  ServerAdmin ugoessner@fahnensex.de
  DocumentRoot "/Daten/Homepagefiles"
  ServerName www.fahnensex.de
</VirtualHost>


meine httpd.conf sieht so aus:
Code: Select all
ServerName www.fahnensex.de


und zu guter letzt auch noch die error.log
Code: Select all
[Tue Nov 17 12:21:09 2009] [notice] Apache/2.2.12 (Ubuntu) PHP/5.2.10-2ubuntu6.1 with Suhosin-Patch configured -- resuming normal operations
[Tue Nov 17 12:25:41 2009] [error] [client 127.0.0.1] File does not exist: /var/www/favicon.ico
[Tue Nov 17 14:15:10 2009] [error] [client ::1] File does not exist: /var/www/favicon.ico
[Tue Nov 17 14:15:35 2009] [error] [client 127.0.0.1] File does not exist: /var/www/favicon.ico
[Tue Nov 17 14:23:20 2009] [notice] Graceful restart requested, doing restart
[Tue Nov 17 14:23:20 2009] [notice] Apache/2.2.12 (Ubuntu) PHP/5.2.10-2ubuntu6.1 with Suhosin-Patch configured -- resuming normal operations
[Tue Nov 17 14:23:26 2009] [error] [client 127.0.0.1] File does not exist: /var/www/favicon.ico
[Tue Nov 17 14:35:45 2009] [notice] Graceful restart requested, doing restart
[Tue Nov 17 14:35:45 2009] [notice] Apache/2.2.12 (Ubuntu) PHP/5.2.10-2ubuntu6.1 with Suhosin-Patch configured -- resuming normal operations
[Tue Nov 17 14:35:49 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 14:35:50 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 14:36:02 2009] [crit] [client ::1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 14:36:51 2009] [notice] Graceful restart requested, doing restart
[Tue Nov 17 14:36:51 2009] [notice] Apache/2.2.12 (Ubuntu) PHP/5.2.10-2ubuntu6.1 with Suhosin-Patch configured -- resuming normal operations
[Tue Nov 17 14:36:55 2009] [crit] [client ::1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 14:36:55 2009] [crit] [client ::1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 14:37:19 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 14:37:19 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 14:41:07 2009] [notice] Graceful restart requested, doing restart
[Tue Nov 17 14:41:07 2009] [notice] Apache/2.2.12 (Ubuntu) PHP/5.2.10-2ubuntu6.1 with Suhosin-Patch configured -- resuming normal operations
[Tue Nov 17 14:41:13 2009] [crit] [client ::1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 14:41:14 2009] [crit] [client ::1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 14:43:26 2009] [notice] Graceful restart requested, doing restart
[Tue Nov 17 14:43:26 2009] [notice] Apache/2.2.12 (Ubuntu) PHP/5.2.10-2ubuntu6.1 with Suhosin-Patch configured -- resuming normal operations
[Tue Nov 17 14:43:30 2009] [crit] [client ::1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 14:43:30 2009] [crit] [client ::1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 14:43:36 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 14:43:36 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 14:44:04 2009] [notice] Graceful restart requested, doing restart
[Tue Nov 17 14:44:04 2009] [notice] Apache/2.2.12 (Ubuntu) PHP/5.2.10-2ubuntu6.1 with Suhosin-Patch configured -- resuming normal operations
[Tue Nov 17 14:44:08 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 14:44:08 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 14:52:50 2009] [notice] Graceful restart requested, doing restart
apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
[Tue Nov 17 14:52:50 2009] [notice] Apache/2.2.12 (Ubuntu) PHP/5.2.10-2ubuntu6.1 with Suhosin-Patch configured -- resuming normal operations
[Tue Nov 17 14:53:56 2009] [notice] Graceful restart requested, doing restart
apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
[Tue Nov 17 14:53:56 2009] [notice] Apache/2.2.12 (Ubuntu) PHP/5.2.10-2ubuntu6.1 with Suhosin-Patch configured -- resuming normal operations
[Tue Nov 17 14:55:28 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 14:55:29 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 14:55:37 2009] [error] [client ::1] File does not exist: /var/www/favicon.ico
[Tue Nov 17 14:56:01 2009] [error] [client ::1] File does not exist: /var/www/favicon.ico
[Tue Nov 17 14:56:31 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 14:56:31 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 14:56:33 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 14:58:13 2009] [notice] Graceful restart requested, doing restart
apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
[Tue Nov 17 14:58:13 2009] [notice] Apache/2.2.12 (Ubuntu) PHP/5.2.10-2ubuntu6.1 with Suhosin-Patch configured -- resuming normal operations
[Tue Nov 17 15:04:05 2009] [notice] Graceful restart requested, doing restart
apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
[Tue Nov 17 15:04:05 2009] [notice] Apache/2.2.12 (Ubuntu) PHP/5.2.10-2ubuntu6.1 with Suhosin-Patch configured -- resuming normal operations
[Tue Nov 17 15:06:46 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 15:22:09 2009] [notice] Graceful restart requested, doing restart
apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
[Tue Nov 17 15:22:09 2009] [notice] Apache/2.2.12 (Ubuntu) PHP/5.2.10-2ubuntu6.1 with Suhosin-Patch configured -- resuming normal operations
[Tue Nov 17 15:23:03 2009] [notice] Graceful restart requested, doing restart
apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
[Tue Nov 17 15:23:03 2009] [notice] Apache/2.2.12 (Ubuntu) PHP/5.2.10-2ubuntu6.1 with Suhosin-Patch configured -- resuming normal operations
[Tue Nov 17 15:23:13 2009] [crit] [client 127.0.1.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 15:23:15 2009] [crit] [client 127.0.1.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 15:25:42 2009] [notice] Graceful restart requested, doing restart
apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
[Tue Nov 17 15:25:42 2009] [notice] Apache/2.2.12 (Ubuntu) PHP/5.2.10-2ubuntu6.1 with Suhosin-Patch configured -- resuming normal operations
[Tue Nov 17 15:25:47 2009] [crit] [client 127.0.1.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 15:25:47 2009] [crit] [client 127.0.1.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 15:26:11 2009] [error] [client ::1] File does not exist: /var/www/favicon.ico
[Tue Nov 17 15:27:05 2009] [crit] [client 127.0.1.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 15:27:06 2009] [crit] [client 127.0.1.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 15:27:07 2009] [crit] [client 127.0.1.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 15:31:31 2009] [crit] [client 127.0.1.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 15:31:42 2009] [error] [client 127.0.1.1] File does not exist: /var/www/favicon.ico
[Tue Nov 17 15:31:45 2009] [error] [client 127.0.1.1] File does not exist: /var/www/favicon.ico
[Tue Nov 17 15:37:13 2009] [crit] [client 127.0.1.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 15:55:34 2009] [notice] Graceful restart requested, doing restart
apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
[Tue Nov 17 15:55:34 2009] [notice] Apache/2.2.12 (Ubuntu) PHP/5.2.10-2ubuntu6.1 with Suhosin-Patch configured -- resuming normal operations
[Tue Nov 17 15:55:57 2009] [crit] [client 127.0.1.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 15:55:58 2009] [crit] [client 127.0.1.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 15:56:37 2009] [notice] Graceful restart requested, doing restart
apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
[Tue Nov 17 15:56:37 2009] [notice] Apache/2.2.12 (Ubuntu) PHP/5.2.10-2ubuntu6.1 with Suhosin-Patch configured -- resuming normal operations
[Tue Nov 17 15:56:41 2009] [crit] [client 127.0.1.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 15:56:41 2009] [crit] [client 127.0.1.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 15:57:32 2009] [notice] Graceful restart requested, doing restart
apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
[Tue Nov 17 15:57:32 2009] [notice] Apache/2.2.12 (Ubuntu) PHP/5.2.10-2ubuntu6.1 with Suhosin-Patch configured -- resuming normal operations
[Tue Nov 17 15:59:39 2009] [notice] Graceful restart requested, doing restart
apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
[Tue Nov 17 15:59:39 2009] [notice] Apache/2.2.12 (Ubuntu) PHP/5.2.10-2ubuntu6.1 with Suhosin-Patch configured -- resuming normal operations
[Tue Nov 17 16:00:23 2009] [notice] Graceful restart requested, doing restart
apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
[Tue Nov 17 16:00:23 2009] [notice] Apache/2.2.12 (Ubuntu) PHP/5.2.10-2ubuntu6.1 with Suhosin-Patch configured -- resuming normal operations
[Tue Nov 17 16:03:24 2009] [notice] Graceful restart requested, doing restart
apache2: Could not reliably determine the server's fully qualified domain name, using 80.156.86.78 for ServerName
[Tue Nov 17 16:03:30 2009] [notice] Apache/2.2.12 (Ubuntu) PHP/5.2.10-2ubuntu6.1 with Suhosin-Patch configured -- resuming normal operations
[Tue Nov 17 16:05:16 2009] [notice] Graceful restart requested, doing restart
apache2: Could not reliably determine the server's fully qualified domain name, using 80.156.86.78 for ServerName
[Tue Nov 17 16:05:22 2009] [notice] Apache/2.2.12 (Ubuntu) PHP/5.2.10-2ubuntu6.1 with Suhosin-Patch configured -- resuming normal operations
[Tue Nov 17 16:07:13 2009] [notice] Graceful restart requested, doing restart
apache2: Could not reliably determine the server's fully qualified domain name, using 62.157.140.133 for ServerName
[Tue Nov 17 16:07:18 2009] [notice] Apache/2.2.12 (Ubuntu) PHP/5.2.10-2ubuntu6.1 with Suhosin-Patch configured -- resuming normal operations
[Tue Nov 17 16:08:02 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 16:08:03 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 16:08:05 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 16:08:06 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 16:08:06 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 16:08:06 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 16:08:06 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 16:08:13 2009] [error] [client ::1] File does not exist: /var/www/favicon.ico
[Tue Nov 17 16:08:37 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 16:08:37 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 16:08:40 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 16:08:57 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 16:11:21 2009] [notice] Graceful restart requested, doing restart
apache2: Could not reliably determine the server's fully qualified domain name, using 80.156.86.78 for ServerName
[Tue Nov 17 16:11:27 2009] [notice] Apache/2.2.12 (Ubuntu) PHP/5.2.10-2ubuntu6.1 with Suhosin-Patch configured -- resuming normal operations
[Tue Nov 17 16:12:02 2009] [notice] Graceful restart requested, doing restart
apache2: Could not reliably determine the server's fully qualified domain name, using 80.156.86.78 for ServerName
[Tue Nov 17 16:12:12 2009] [notice] Apache/2.2.12 (Ubuntu) PHP/5.2.10-2ubuntu6.1 with Suhosin-Patch configured -- resuming normal operations
[Tue Nov 17 16:39:29 2009] [notice] Graceful restart requested, doing restart
apache2: Could not reliably determine the server's fully qualified domain name, using 62.157.140.133 for ServerName
[Tue Nov 17 16:39:35 2009] [notice] Apache/2.2.12 (Ubuntu) PHP/5.2.10-2ubuntu6.1 with Suhosin-Patch configured -- resuming normal operations
[Tue Nov 17 16:40:17 2009] [notice] Graceful restart requested, doing restart
apache2: Could not reliably determine the server's fully qualified domain name, using 80.156.86.78 for ServerName
[Tue Nov 17 16:40:22 2009] [notice] Apache/2.2.12 (Ubuntu) PHP/5.2.10-2ubuntu6.1 with Suhosin-Patch configured -- resuming normal operations
[Tue Nov 17 16:40:40 2009] [crit] [client 192.168.0.10] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 16:40:42 2009] [crit] [client 192.168.0.10] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 16:46:30 2009] [crit] [client 192.168.0.10] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 16:46:31 2009] [crit] [client 192.168.0.10] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 17:03:44 2009] [notice] caught SIGTERM, shutting down
[Tue Nov 17 17:04:51 2009] [notice] Apache/2.2.12 (Ubuntu) PHP/5.2.10-2ubuntu6.1 with Suhosin-Patch configured -- resuming normal operations
[Tue Nov 17 17:05:24 2009] [crit] [client 192.168.0.10] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 17:05:26 2009] [crit] [client 192.168.0.10] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 17:07:37 2009] [notice] Apache/2.2.12 (Ubuntu) PHP/5.2.10-2ubuntu6.1 with Suhosin-Patch configured -- resuming normal operations
[Tue Nov 17 17:08:09 2009] [crit] [client 192.168.0.10] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 17:08:10 2009] [crit] [client 192.168.0.10] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 17:11:31 2009] [crit] [client 192.168.0.10] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 17:12:15 2009] [crit] [client 192.168.0.10] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 17:12:17 2009] [crit] [client 192.168.0.10] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 17:14:44 2009] [crit] [client 192.168.0.10] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 17:14:52 2009] [crit] [client 192.168.0.10] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 17:16:17 2009] [crit] [client 192.168.0.10] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 17:16:18 2009] [crit] [client 192.168.0.10] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 18:21:26 2009] [notice] Graceful restart requested, doing restart
apache2: Could not reliably determine the server's fully qualified domain name, using 62.157.140.133 for ServerName
[Tue Nov 17 18:21:31 2009] [notice] Apache/2.2.12 (Ubuntu) PHP/5.2.10-2ubuntu6.1 with Suhosin-Patch configured -- resuming normal operations
[Tue Nov 17 18:29:43 2009] [error] [client ::1] File does not exist: /var/www/favicon.ico
[Tue Nov 17 18:34:28 2009] [notice] Graceful restart requested, doing restart
apache2: Could not reliably determine the server's fully qualified domain name, using 80.156.86.78 for ServerName
[Tue Nov 17 18:34:34 2009] [notice] Apache/2.2.12 (Ubuntu) PHP/5.2.10-2ubuntu6.1 with Suhosin-Patch configured -- resuming normal operations
[Tue Nov 17 18:36:28 2009] [notice] Graceful restart requested, doing restart
apache2: Could not reliably determine the server's fully qualified domain name, using 62.157.140.133 for ServerName
[Tue Nov 17 18:36:35 2009] [notice] Apache/2.2.12 (Ubuntu) PHP/5.2.10-2ubuntu6.1 with Suhosin-Patch configured -- resuming normal operations
[Tue Nov 17 18:36:51 2009] [crit] [client 192.168.0.2] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 18:36:51 2009] [crit] [client 192.168.0.2] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 18:36:56 2009] [notice] Graceful restart requested, doing restart
apache2: Could not reliably determine the server's fully qualified domain name, using 62.157.140.133 for ServerName
[Tue Nov 17 18:37:01 2009] [notice] Apache/2.2.12 (Ubuntu) PHP/5.2.10-2ubuntu6.1 with Suhosin-Patch configured -- resuming normal operations
[Tue Nov 17 18:48:57 2009] [notice] Graceful restart requested, doing restart
apache2: Could not reliably determine the server's fully qualified domain name, using 80.156.86.78 for ServerName
[Tue Nov 17 18:49:02 2009] [notice] Apache/2.2.12 (Ubuntu) PHP/5.2.10-2ubuntu6.1 with Suhosin-Patch configured -- resuming normal operations
[Tue Nov 17 18:51:29 2009] [notice] Graceful restart requested, doing restart
[Tue Nov 17 18:51:29 2009] [notice] Apache/2.2.12 (Ubuntu) PHP/5.2.10-2ubuntu6.1 with Suhosin-Patch configured -- resuming normal operations
[Tue Nov 17 18:51:36 2009] [crit] [client 192.168.0.2] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 18:51:37 2009] [crit] [client 192.168.0.2] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 18:52:21 2009] [notice] Graceful restart requested, doing restart
[Tue Nov 17 18:52:22 2009] [notice] Apache/2.2.12 (Ubuntu) PHP/5.2.10-2ubuntu6.1 with Suhosin-Patch configured -- resuming normal operations
[Tue Nov 17 18:53:38 2009] [notice] Graceful restart requested, doing restart
[Tue Nov 17 18:53:38 2009] [notice] Apache/2.2.12 (Ubuntu) PHP/5.2.10-2ubuntu6.1 with Suhosin-Patch configured -- resuming normal operations
[Tue Nov 17 18:53:49 2009] [notice] Graceful restart requested, doing restart
[Tue Nov 17 18:53:49 2009] [notice] Apache/2.2.12 (Ubuntu) PHP/5.2.10-2ubuntu6.1 with Suhosin-Patch configured -- resuming normal operations
[Tue Nov 17 18:53:54 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 18:53:54 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 18:55:11 2009] [notice] Graceful restart requested, doing restart
[Tue Nov 17 18:55:11 2009] [notice] Apache/2.2.12 (Ubuntu) PHP/5.2.10-2ubuntu6.1 with Suhosin-Patch configured -- resuming normal operations
[Tue Nov 17 18:55:15 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 18:55:15 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 18:56:02 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 18:56:02 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 18:56:11 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 18:56:13 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 18:57:36 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 18:57:37 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 19:01:16 2009] [notice] Graceful restart requested, doing restart
[Tue Nov 17 19:01:17 2009] [notice] Apache/2.2.12 (Ubuntu) PHP/5.2.10-2ubuntu6.1 with Suhosin-Patch configured -- resuming normal operations
[Tue Nov 17 19:01:21 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 19:01:22 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 19:01:27 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 19:01:53 2009] [notice] Graceful restart requested, doing restart
[Tue Nov 17 19:01:53 2009] [notice] Apache/2.2.12 (Ubuntu) PHP/5.2.10-2ubuntu6.1 with Suhosin-Patch configured -- resuming normal operations
[Tue Nov 17 19:01:58 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 19:01:58 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 19:02:07 2009] [error] [client ::1] File does not exist: /var/www/favicon.ico
[Tue Nov 17 19:02:15 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 19:02:17 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 19:06:39 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 19:34:27 2009] [notice] Graceful restart requested, doing restart
[Tue Nov 17 19:34:27 2009] [notice] Apache/2.2.12 (Ubuntu) PHP/5.2.10-2ubuntu6.1 with Suhosin-Patch configured -- resuming normal operations
[Tue Nov 17 19:34:32 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 19:34:33 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 19:34:44 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 19:35:28 2009] [notice] Graceful restart requested, doing restart
[Tue Nov 17 19:35:28 2009] [notice] Apache/2.2.12 (Ubuntu) PHP/5.2.10-2ubuntu6.1 with Suhosin-Patch configured -- resuming normal operations
[Tue Nov 17 19:35:32 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 19:35:32 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 19:35:38 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 19:37:01 2009] [notice] Graceful restart requested, doing restart
[Tue Nov 17 19:37:01 2009] [notice] Apache/2.2.12 (Ubuntu) PHP/5.2.10-2ubuntu6.1 with Suhosin-Patch configured -- resuming normal operations
[Tue Nov 17 19:37:05 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 19:37:05 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 19:37:18 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 19:37:30 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 19:37:38 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 19:37:54 2009] [notice] Graceful restart requested, doing restart
[Tue Nov 17 19:37:54 2009] [notice] Apache/2.2.12 (Ubuntu) PHP/5.2.10-2ubuntu6.1 with Suhosin-Patch configured -- resuming normal operations
[Tue Nov 17 19:37:59 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 19:38:05 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 19:39:20 2009] [notice] Graceful restart requested, doing restart
[Tue Nov 17 19:39:20 2009] [notice] Apache/2.2.12 (Ubuntu) PHP/5.2.10-2ubuntu6.1 with Suhosin-Patch configured -- resuming normal operations
[Tue Nov 17 19:39:24 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 19:39:24 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 19:47:16 2009] [notice] Graceful restart requested, doing restart
[Tue Nov 17 19:47:16 2009] [notice] Apache/2.2.12 (Ubuntu) PHP/5.2.10-2ubuntu6.1 with Suhosin-Patch configured -- resuming normal operations
[Tue Nov 17 19:47:19 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 19:47:19 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 19:47:53 2009] [notice] Graceful restart requested, doing restart
[Tue Nov 17 19:47:53 2009] [notice] Apache/2.2.12 (Ubuntu) PHP/5.2.10-2ubuntu6.1 with Suhosin-Patch configured -- resuming normal operations
[Tue Nov 17 19:47:56 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 19:47:56 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
[Tue Nov 17 19:50:10 2009] [crit] [client 127.0.0.1] (13)Permission denied: /Daten/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable


Das Verzeichnis: /Daten/Homepagefiles hat Vollzugriff (chmod 777).
uhuwe
 
Posts: 17
Joined: 30. January 2005 15:33
Location: Wedemark OT-Mellendorf
XAMPP version: lampp
Operating System: linux mint 17.3

Re: You don't have permission to access / on this server.

Postby Nobbie » 17. November 2009 20:43

Wie wir alle inzwischen aus diesem Thread viewtopic.php?f=4&t=38055 wissen, neigst Du zum fröhlichen Drauflosmurksen.

Ich bin raus, da kannst Du mal selbst mit den vielen wertvollen Hinweise aus o.g. Thread beweisen, dass Du lernfähig bist. Viel Erfolg!
Nobbie
 
Posts: 13165
Joined: 09. March 2008 13:04


Return to Apache

Who is online

Users browsing this forum: No registered users and 222 guests