Why doesn't Subversion allow to commit .htaccess files?

后端 未结 6 1257
一向
一向 2021-01-20 19:46

I can\'t commit .htaccess files from my Windows SVN client (TortoiseSVN). The error that is returned is:

Could not read status line: Existing connecti

6条回答
  •  没有蜡笔的小新
    2021-01-20 20:15

    
        Order allow,deny
        Allow from all
        Satisfy All
    
    

    This worked for me too. With a slight complexity I was doing it on a plesk server.

    After adding above lines to my vhost file created in

    /var/www/vhosts/system/[your domain]/conf
    

    I ran following to rebuild the conf files

    /usr/local/psa/admin/sbin/httpdmng  --reconfigure-domain [your domain]
    

    and the comit worked!

    Thanks, hope this helps people using plesk

提交回复
热议问题