ich wollte es möglich machen, dass in den UserDirs php ausgeführt werden kann, habe dabei einige Probleme. Prinzipiell sollte php funktionieren, da
Code: Alles auswählen
LoadModule php4_module /usr/lib/apache/1.3/libphp4.so
<IfModule mod_dir.c>
DirectoryIndex index.html index.php index.htm index.shtml index.cgi
</IfModule>
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps
Meine Problem scheint die Einstellung der UserDir Directories zu sein
Code: Alles auswählen
#
# Control access to UserDir directories. The following is an example
# for a site where these directories are restricted to read-only.
#Options +ExecCGI
<Directory /home/*/public_html>
AllowOverride FileInfo AuthConfig Limit
Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
<Limit GET POST OPTIONS PROPFIND>
Order allow,deny
Allow from all
</Limit>
<Limit PUT DELETE PATCH PROPPATCH MKCOL COPY MOVE LOCK UNLOCK>
Order deny,allow
Deny from all
</Limit>
</Directory>
Danke für die Hilfe,
Tobias