PydioSync でログイン認証に失敗する

PydioSync で Authentication failed: please verify your login and password のメッセージが出てログイン認証に失敗してしまう


pydio 設置ディレクトリ(サーバ側)にある、 .htaccess を開いて
SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1
の行のコメントアウトを外して保存


#Following lines seem to be necessary if PHP is working
#with apache as CGI or FCGI. Just remove the #
#See http://doc.tiki.org/WebDAV#Note_about_Apache_with_PHP_as_fcgi_or_cgi
#RewriteCond %{HTTP:Authorization} ^(.*)
#RewriteRule ^(.*) - [E=HTTP_AUTHORIZATION:%1]
#Following lines may be necessary for a PHP-FPM setup
# to make sure that authorization is transmitted.
# Just remove the # at the beginning of the line
SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1


上記変更でログインできるようになったものの、サーバ側の変更がローカルに反映されないんだけど...
ローカル→サーバはOK

コメント