No more Dashboard after upgrade to3.0

Hello,

after automatic update in web browser there is only the top menu bar displayed but no more content.
Any ideas?

Thanks
Walter

Hi all,

it helped to
"# Options -Indexes" in the plugin folder.

cheers and thanks for the update
Walter

Same problem here. The line in the “.htaccess” file in the plugin folder caused this error in the server’s log file:

Options not allowed here, referer: <URL>

The problem also applies to Piwik’s “libs” folder.

Is commenting out Options -Indexes safe?

Hallo,
I had the same problem, thank you for the tips, after commenting out Options -Indexes in both folders it seems to work. But as codifex already asked: Is it safe?

Armin

hi guys,
I have the same problem - no dashboard after update.
But there is no htaccess either… and if I download the new piwik 3.0 package, there is no htaccess too.
So… where do you have this htaccess? Is it in another folder? I looked into root folder…

it is in the plugin folder.

thank you portwally for your reply.
Now I found the htaccess, but in this htaccess there are no entries with “Options -Indexes”.
this is my htaccess code:
# This file is auto generated by Piwik, do not edit directly
# Please report any issue or improvement directly to the Piwik team.

# First, deny access to all files in this directory
<Files "*">
<IfModule mod_version.c>
	<IfVersion < 2.4>
		Order Deny,Allow
		Deny from All
	</IfVersion>
	<IfVersion >= 2.4>
		Require all denied
	</IfVersion>
</IfModule>
<IfModule !mod_version.c>
	<IfModule !mod_authz_core.c>
		Order Deny,Allow
		Deny from All
	</IfModule>
	<IfModule mod_authz_core.c>
		Require all denied
	</IfModule>
</IfModule>
</Files>
# Serve HTML files as text/html mime type - Note: requires mod_mime apache module!
<IfModule mod_mime.c>
   AddHandler text/html .html
   AddHandler text/html .htm
</IfModule>

# Allow to serve static files which are safe
<Files ~ "\.(gif|ico|jpg|png|svg|js|css|htm|html|swf|mp3|mp4|wav|ogg|avi|ttf|eot)$">
<IfModule mod_version.c>
	<IfVersion < 2.4>
		Order Allow,Deny
		Allow from All
	</IfVersion>
	<IfVersion >= 2.4>
		Require all granted
	</IfVersion>
</IfModule>
<IfModule !mod_version.c>
	<IfModule !mod_authz_core.c>
		Order Allow,Deny
		Allow from All
	</IfModule>
	<IfModule mod_authz_core.c>
		Require all granted
	</IfModule>
</IfModule>
</Files>