403 Forbidden *.php

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • 403 Forbidden *.php

    Hallo Leute,

    bin am Ende meiner Nerven. Mein Problem ist, daß ich Apache2.0.49 prework auf mein System -SuSE Linux 8.2 minimales System- mit PHP 4.3.6 installiert habe. Die Installation ist reibunglos von statten gegangen doch leider wird mir immer wieder der Zugriff auf die *.php verwehrt...
    Forbidden

    You don't have permission to access /info.php on this server.
    Woran liegt das?

    Die Konfigurationsoptionen:
    Code:
    --enable-so --enable-auth-digest=shared \
    --disable-actions --enable-ssl --disable-userdir --disable-asis \
    --enable-logio --disable-imap --enable-cgi=shared --disable-negotation \
    --disable-auth-anon  --disable-echo --enable-include --enable-log-config \
    --enable-mime --disable-usertrack --enable-setenvif --disable-proxy \
    --disable-proxy-connect --disable-proxy-ftp --disable-proxy-http \
    --disable-speling  --enable-rewrite \
    --enable-suexec=shared \
            --with-suexec-caller=www-data \
            --with-suexec-docroot=/home \
            --with-suexec-logile=/var/log/suexec.log
    Ein Teil von httpd.conf:
    Code:
    <Directory />
        Options FollowSymLinks
        AllowOverride none
    </Directory>
    <Directory "/usr/local/apache2/htdocs">
        Options Indexes FollowSymLinks
        AllowOverride none
    
        Order allow,deny
        Allow from all
    </Directory>
    Ein Teil von vshost.conf der in httpd.conf includet wird:
    Code:
    <VirtualHost 192.168.1.23:80>
        ServerAdmin [email]ddd-dkdk@dkdk.sd[/email]
        DocumentRoot /home/mediaup.lan/ftp/htdocs
        ServerName mediaup.lan
        ServerAlias [url]www.mediaup.lan[/url]
    
        DirectoryIndex index.php index.php3 index.php4 index.htm index.html index.shtm index.shtml
    
        <directory "/home/mediaup.lan/ftp/htdocs">
            Options +IncludesNoExec
            Options +Indexes
    
            IndexOptions FancyIndexing
            IndexOptions IgnoreCase
            IndexOptions SuppressDescription
            IndexOptions IconWidth=16
            IndexOptions IconHeight=14
    
            IndexIgnore .??* *~
    
            AddIcon /usr/local/apache2/icons/layout.gif .html .htm .pdf
            DefaultIcon /usr/local/apache2/icons/unknown.gif
        </directory>
    
        <directory "/home/mediaup.lan/ftp/htdocs/cgi-bin">
            Options +ExecCGI
            Options +Indexes
        </directory>
    
        ErrorLog logs/mediaup.lan-error_log
        CustomLog logs/mediaup.lan-access_log common
    </VirtualHost>


    cheers
    Nichts auf der Welt ist so gerecht verteilt wie der Verstand. Denn jedermann ist davon überzeugt, dass er genug davon habe – René Descartes
    PHP Sicherheit
    PHPUnit[1-2]
    Professionelle Softwareentwicklung mit PHP 5
    Professionelle PHP 5-Programmierung

  • #2
    darf der Apache die Datei auch lesen ? (chmod)
    TBT

    Die zwei wichtigsten Regeln für eine berufliche Karriere:
    1. Verrate niemals alles was du weißt!


    PHP 2 AllPatrizier II Browsergame

    Kommentar


    • #3
      Die Schreibrechte den Dateien sind auf 0755 gesetzt und laufen auf den jeweiligen Benutzer. Bei mediaup.lan z.B der Benutzer mediaup. Die Dateien sind der Gruppe www zugeteilt. Der Apache hat den User wwwrun und als Gruppe www zugeteilt bekommen. httpd.conf:
      Code:
      User wwwrun
      Group www
      /etc/passwd:
      Code:
      mediaup:x:501:8:Firma Mediaup:/home/mediaup.lan/ftp:/bin/bash
      wwwrun:x:30:8:WWW daemon apache:/var/lib/wwwrun:/bin/bash
      /etc/group:
      Code:
      www:x:8:
      Ich kann es mir leider nicht erklären woran es liegen könnte
      Nichts auf der Welt ist so gerecht verteilt wie der Verstand. Denn jedermann ist davon überzeugt, dass er genug davon habe – René Descartes
      PHP Sicherheit
      PHPUnit[1-2]
      Professionelle Softwareentwicklung mit PHP 5
      Professionelle PHP 5-Programmierung

      Kommentar

      Lädt...
      X