View previous topic :: View next topic |
Author |
Message |
conloos n00b
Joined: 23 Feb 2004 Posts: 54
|
Posted: Mon Nov 29, 2004 6:55 pm Post subject: mod_dav und windows xp |
|
|
Hallo,
ich versuche seit mehreren Tagen apache und mod_dav so zu konfigurieren, das man einen Ordner mit winxp (SP2) per "Netzlaufwerk verbinden" öffnen kann. Ich habe dazu meterweise Seiten gelesenen und google ist meinbester freund .
Ich habe authmsfix und mod_encoding ausprobiert und beide wollen nicht.
Hat jemand eine laufende Version?
con |
|
Back to top |
|
|
schrippe Guru
Joined: 03 Mar 2004 Posts: 556 Location: Mülheim
|
Posted: Mon Nov 29, 2004 8:32 pm Post subject: |
|
|
was willst du machen?
kann man sich dann von windows aus, über den apache, auf ein laufwerk verbinden? _________________ for i in $(seq 1 565); do echo 'A$i: entweder rechts fahren oder rechts überholen dürfen!';done |
|
Back to top |
|
|
@4u Apprentice
Joined: 13 Nov 2004 Posts: 160
|
Posted: Mon Nov 29, 2004 9:37 pm Post subject: |
|
|
In diesem Falle (siehe schrippe) eignet sich ein FTP-Server wohl eher. _________________ Alle Angaben ohne Gewähr - Korrekturen sind gern willkommen |
|
Back to top |
|
|
dakjo Veteran
Joined: 31 Jan 2004 Posts: 1544
|
Posted: Mon Nov 29, 2004 9:54 pm Post subject: |
|
|
Kann es sein, das winxp damit nicht so ganz klar kommt?
Kde und gnome koennen auf jeden damit. _________________ 'Dieselben Naturkräfte, die uns ermöglichen, zu den Sternen zu fliegen, versetzen uns auch in die Lage, unseren Stern zu vernichten.' - Wernher von Braun
http://www.mpsna.de |
|
Back to top |
|
|
conloos n00b
Joined: 23 Feb 2004 Posts: 54
|
Posted: Tue Nov 30, 2004 12:04 am Post subject: |
|
|
Also hier nochmal das Problem "besser" skizziert:
Ich habe einen Server und ja ich kann über sftp auf ihn zugreifen, jedoch möchte ich das überall ohne das ich spezielle Software laden mus. Hierzu hab ich im netz etwas gesucht und dav gefunden.
Meine configs:
Code: |
DavLockDB /var/lib/dav/lockdb
<IfModule !mod_auth_msfix.c>
LoadModule auth_msfix_module modules/mod_auth_msfix.so
</IfModule>
<IfModule mod_alias.c>
Alias /dav/fdo /tmp/fdo
</IfModule>
<Directory /tmp/fdo>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
<IfModule mod_access.c>
Order allow,deny
Allow from all
</IfModule>
RewriteEngine on
RewriteCond %{SERVER_PORT} ^80$
RewriteRule ^(.*) https://url_zum_server/dav/fdo/ [R]
</Directory>
<IfModule mod_dav.c>
<Location /tmp/fdo>
Dav On
# to protect for: PROPFIND requests -> this can be a
# denial-of-service attack
DavDepthInfinity on
# set Timeout to xxx seconds default Windowstimeout is 120s
DavMinTimeout 600
# XP bug
AuthMSFix on
AuthMSFixDebug on
AuthMSFixOnHeader USER-Agent "Microsoft.*WebDAV"
AuthMSFixMatch "^.*\\\\(.*)$" "$1"
AuthMSFixMatch ".*\\\\(.*)" "$1"
AuthMSFixMatch "(.*)@(www\\.)*url_zum_server" "$1"
AuthMSFixMatch "url_zum_server\\\\" "$1"
# Authentification
AuthType Basic
AuthName "fdo's DAV"
AuthUserFile /etc/apache2/db/dav.htaccess
#AuthGroupFile /dev/null
require valid-user
</Location>
</IfModule>
|
den benutzer gibt es in der dav.htaccess als:
fdo
url_zum_server/fdo
url_zum_server\fdo
links:
http://www.luluware.com/index.php?option=com_content&task=view&id=13&Itemid=38
http://www.geocities.com/the_real_sz/misc/mod_auth_msfix.htm |
|
Back to top |
|
|
|