dmnk
dmnk
hi, i'm using suse leap with the 4.1.12-1-default kernel and a rtl8723be card. ``` lsmod | grep btusb btusb 45056 0 btbcm 16384 1 btusb btintel 16384 1 btusb bluetooth...
@leon9923 kind of - the hard way: i've bought a intel wifi card. as direct replacement the 3160 or if you take this as a chance to upgrade (2x2 instead...
hi, i think i've traced it down to weave_utils.php, function verify_user($url_user, $db), and the fact that the apache of my web-host seems to strip the Authorization header. it's included in...
http://planetozh.com/blog/2009/04/http-authentication-on-php-as-cgi-like-dreamhost/ nice idea, but requires a working .htaccess ;) .htaccess part: RewriteEngine on RewriteRule .\* - [E=REDIRECT_REMOTE_USER:%{HTTP:Authorization},L] php-part: list($_SERVER['PHP_AUTH_USER'], $_SERVER['PHP_AUTH_PW']) = explode(':' , base64_decode(substr($_SERVER['REDIRECT_REMOTE_USER'], 6)));
right now i'm not that far. at least i discovered that the rewrite rule above doesn't seem to work on my webspace, but RewriteCond %{HTTP:Authorization} !^$ RewriteRule ^index.php$ index.php?HTTP_AUTH=%{HTTP:Authorization} seems...
Since some apache configurations are even more problematic (including the one i have to struggle with), i came up with the following solution: **.htaccess** _RewriteEngine on RewriteCond %{HTTP:Authorization} !^$ RewriteRule...
@lasterra I've included your enhancement in my pull request #11
i'm on it, however i can't give you an estimation when it's fixed. Thanks for the nice test-cases