Hi, I finished the guide on 11.1 U6 however I cannot add any cameras (nothing happens when I press add button) and I think my javascript isn't loaded correctly. Any ideas?
		
		
	 
i ran into this issue too along with a bunch of others. if you look at the source of the page you will see that the css uri is server.tld/zm/xxx.css
HTTPD.CONF (the first redirect was the cause of most of the issues as the source has some references to full path resources like server.tld/zm/xxxxx, however after going through this tutorial that path dosn't exist, its in the root of the uri)
<VirtualHost *:80>
        ServerName whippet.domain.tld
        ServerAdmin 
email@example.com
        DocumentRoot "/usr/local/www/zoneminder/"
        ScriptAlias /cgi-bin/ /usr/local/www/zoneminder/cgi-bin/
        <Directory "/usr/local/www/zoneminder">
                Options FollowSymLinks
                AllowOverride All
                Require all granted
                RewriteEngine on
                RedirectMatch "^/zm/(.*)" "/$1"
        </Directory>
        <Directory "/usr/local/www/zoneminder/cgi-bin/">
                Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
                #AddHandler test-cgi .cgi .pl .py nph-zms zms
                AllowOverride All
                Require all granted
        </Directory>
        <Directory "/usr/local/www/apache24/cgi-bin/">
                Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
                AllowOverride All
                Require all granted
        </Directory>
        <Directory "/usr/local/www/zoneminder/api">
                RewriteEngine on
                RewriteRule ^$ app/webroot/ [L]
                RewriteRule (.*) app/webroot/$1 [L]
                RewriteBase /api
        </Directory>
        <Directory "/usr/local/www/zoneminder/api/app">
                RewriteEngine on
                RewriteRule ^$ webroot/ [L]
                RewriteRule (.*) webroot/$1 [L]
                RewriteBase /api
        </Directory>
        <Directory "/usr/local/www/zoneminder/api/app/webroot">
                RewriteEngine On
                RewriteCond %{REQUEST_FILENAME} !-d
                RewriteCond %{REQUEST_FILENAME} !-f
                RewriteRule ^ index.php [L]
                RewriteBase /api
        </Directory>
        LogLevel debug
</VirtualHost>