During Installation: "htaccess: deny not allowed here"

Hi,
I have got the following problem during the installation (Piwik 1.10.1): After Piwik create the .htaccess files, i got a 500 Internal Server Error for all css, js and image files.

/var/www/piwik/log/error.log:


[..][alert] [client 127.0.0.1] /var/www/piwik/docs/libs/.htaccess: deny not allowed here, referer: http://xy.xy.com/
[..][alert] [client 127.0.0.1] /var/www/piwik/docs/docs/plugins/.htaccess: deny not allowed here, referer: http://xy.xy.com/
[..][alert] [client 127.0.0.1] /var/www/piwik/docs/docs/themes/.htaccess: deny not allowed here, referer: http://xy.xy.com/

/etc/apache2/sites-available/xy.xy.com:


<VirtualHost *:80>
	ServerAdmin admin@xy.com
	ServerName xy.xy.com
	ServerAlias www.xy.xy.com
	SuexecUserGroup piwik piwik
	AddHandler fcgid-script .php
	DocumentRoot "/var/www/piwik/docs"
	DirectoryIndex index.htm index.html index.php
<Directory />
	Options FollowSymLinks
	AllowOverride None
</Directory>
<Directory "/var/www/piwik/docs">
	Options Indexes MultiViews FollowSymLinks +ExecCGI
	FCGIWrapper /var/www/piwik/php-fcgi/php-fcgi-starter .php
	AllowOverride FileInfo
	Order allow,deny
	allow from all
</Directory>
	ErrorLog /var/www/piwik/logs/error.log
	LogLevel warn
	CustomLog /var/www/piwik/logs/access.log combined
	ServerSignature On
</VirtualHost>

Any Ideas?

Thx
Daniel

Just a quick guess:

I think you need to allow to override Limit, otherwise deny is not possible in .htaccess Files…:
AllowOverride Limit

hth