Allow from IP without passwd in htaccess

{ Posted on Jun 15 2011 by lucas }
If you want to protect a website from all ips with user/passwd except from one ip, this solves your problem: Order deny,allow Deny from all AuthName "Restricted area" AuthUserFile /home/website/path/.htpasswd AuthType Basic Require valid-user Allow from 172.17.10.1 Satisfy Any Apache power! Read More »

phpmyadmin and memcache

{ Posted on May 13 2011 by lucas }
Comments Off
Tags :
Categories : phpmyadmin
They don't get along :( As far as I know and read, phpmyadmin has to work with sessions in files and it is not developed to work with memcache. So to avoid problems like: Session errors Connection to memcache database user can't autheticate you have to ...Read More »

There is no public key available for the following key IDs:

{ Posted on Dec 05 2009 by lucas }
When you try to update debian and you get this error: There is no public key available for the following key IDs: 9AA38DCD55BE302B there are two ways to solve the issue: gpg --keyserver wwwkeys.eu.pgp.net --recv-keys 9AA38DCD55BE302B;  apt-key add .gnupg/pubring.gpg sudo aptitude install debian-keyring debian-archive-keyring If you ...Read More »