Re: [us...@httpd] Re: .htaccess restricts write permission from webdav

2009-12-07 Thread J. Bakshi
LuKreme wrote: > On 6-Dec-2009, at 20:15, J. Bakshi wrote: > >> RewriteRule ^typo3$ - [L] >> RewriteRule ^typo3/.*$ - [L] >> ` ` ` >> >> and now webdav has no problem with create/delete operation >> > > > One other thing, if you duplicate the RewriteCond above these rules, they > should wo

[us...@httpd] Re: .htaccess restricts write permission from webdav

2009-12-07 Thread LuKreme
On 6-Dec-2009, at 20:15, J. Bakshi wrote: > RewriteRule ^typo3$ - [L] > RewriteRule ^typo3/.*$ - [L] > ` ` ` > > and now webdav has no problem with create/delete operation One other thing, if you duplicate the RewriteCond above these rules, they should work as well. something like: Options +F

[us...@httpd] Re: .htaccess restricts write permission from webdav

2009-12-07 Thread LuKreme
On 6-Dec-2009, at 20:15, J. Bakshi wrote: > Though I have fond that creating a .htaccess or deleting it through webdav is > not possible. Usually apache is setup to refuse to serve .ht* files for security reasons. If this is not the case, there's no reason the htaccess file should not be avail

Re: [us...@httpd] Re: .htaccess restricts write permission from webdav

2009-12-06 Thread J. Bakshi
LuKreme wrote: > On 3-Dec-2009, at 22:22, J. Bakshi wrote: > > >> Options +FollowSymLinks >> >> RewriteEngine On >> RewriteRule ^typo3$ - [L] >> RewriteRule ^typo3/.*$ - [L] >> >> RewriteCond %{REQUEST_FILENAME} !-f >> RewriteCond %{REQUEST_FILENAME} !-d >> RewriteCond %{REQUEST_FILENAME} !-l >>

[us...@httpd] Re: .htaccess restricts write permission from webdav

2009-12-04 Thread LuKreme
On 3-Dec-2009, at 22:22, J. Bakshi wrote: > Options +FollowSymLinks > > RewriteEngine On > RewriteRule ^typo3$ - [L] > RewriteRule ^typo3/.*$ - [L] > > RewriteCond %{REQUEST_FILENAME} !-f > RewriteCond %{REQUEST_FILENAME} !-d > RewriteCond %{REQUEST_FILENAME} !-l > > RewriteCond %{REQUEST_URI}

Re: [us...@httpd] Re: .htaccess restricts write permission from webdav

2009-12-03 Thread J. Bakshi
LuKreme wrote: > On Dec 3, 2009, at 20:13, "J. Bakshi" wrote: > >> RewriteCond %{REQUEST_URI} !^webdav > > That's wrong. > > !^/webdav > > The / is part of the uri Sorry for the mistake. I have corrected it but no luck :-( Here is my complete .htacess once again ` ` ` Options +FollowSymLinks R

[us...@httpd] Re: .htaccess restricts write permission from webdav

2009-12-03 Thread LuKreme
On Dec 3, 2009, at 20:13, "J. Bakshi" wrote: RewriteCond %{REQUEST_URI} !^webdav That's wrong. !^/webdav The / is part of the uri - The official User-To-User support forum of the Apache HTTP Server Project. See http://http

Re: [us...@httpd] Re: .htaccess restricts write permission from webdav

2009-12-03 Thread J. Bakshi
LuKreme wrote: > On 2-Dec-2009, at 22:36, J. Bakshi wrote: > >> RewriteEngine On >> RewriteRule ^typo3$ - [L] >> RewriteRule ^typo3/.*$ - [L] >> > > > I just went through this with wordpress. You have to exempt webdav from all > the rewrites. > > On 25-Nov-2009, at 11:15, LuKreme wrote: >

[us...@httpd] Re: .htaccess restricts write permission from webdav

2009-12-03 Thread LuKreme
On 2-Dec-2009, at 22:36, J. Bakshi wrote: > RewriteEngine On > RewriteRule ^typo3$ - [L] > RewriteRule ^typo3/.*$ - [L] I just went through this with wordpress. You have to exempt webdav from all the rewrites. On 25-Nov-2009, at 11:15, LuKreme wrote: > I modified the htaccess file hoping I coul