WebDAV with PhpED

Weppa333

Well-known member
Hello,

I'm trying to set up WebDAV on XF with NuSphere's PhpED.

Problem is, phped want a "directory" as webdav source, not a filename
( eg mysite.com/webdavstuff/ and it does not accept mysite.com/webdav.php )

Did anyone successfully set up PhpED with XF's webdav ? Am I stupid indeed ? :)

thanks for your help
 
Even better, here's my exact PHP Ed Webdav set up:

NGtDYqY.png
 
It absolutely does not work over here :(

Imageddd2.webp

(phpEd 8.1 rev 8111 - maybe it's a bug ?
I did not renew my licence so I'm a bit stuck at this one as I cannot download phped 9.0 :)
And no this is not a pirate copy I swear to god. )
 
Is your XF install in Debug mode?

I seem to recall it working fine for me in PhpEd 8.
 
And it perfectly works in debug mode :)
Chris thank you, you spared me my licence renewal from PhpED :)

The error message from phped made me think this was a directory problem.
 
Just to note for anyone reading this thread in the future, that same error from PhpED can result from using nginx without the following rule:

Code:
rewrite ^/admindav.php /admindav.php;

Do you know if this is the same case for ForkLift and/or Transmit?

I keep on getting 404 error when I use /xenforo/admindav.php or /xenforo/admindav.php/Public_Templates

Also if my xenforo installation is not on root, should it still be the same rewrite or
rewrite ^/admindav.php /xenforo/admindav.php; ?

Thnaks
 
Do you know if this is the same case for ForkLift and/or Transmit?

I keep on getting 404 error when I use /xenforo/admindav.php or /xenforo/admindav.php/Public_Templates

Also if my xenforo installation is not on root, should it still be the same rewrite or
rewrite ^/admindav.php /xenforo/admindav.php; ?

Thnaks

Yes it will be the same for any webdav client

For subfolder 'xenforo', it would be:

rewrite ^/xenforo/admindav.php /xenforo/admindav.php;
 
Top Bottom