-
DotNetNuke: Introducing “DNN Dynamic Roles” and “DNN Google Analytics Advanced”
This blog post is about introducing our first professional modules “DNN Dynamic Roles” and “DNN Google Analytics Advanced” for the DNN CMS platform (formerly known as DotNetNuke). Both modules are can be used in the community and the professional version (Evoq Content) of DNN and are compatible to Microsoft’s Azure Cloud Platform. Both modules can […]
-
DotNetNuke: Fix broken DNN installation wizard
Recently, I faced a broken DNN installation wizard which looked like this: In the first moment it seemed, that the web server was very slow and it needed some time to load all JavaScript and CSS files, because the browser’s loading indicator did not stop running. After some research, it turned out that the running […]
-
Ubuntu 14.04 LTS: Install Logitech MediaServer 7.8
Recently I tried to install Logitech MediaServer on my Ubuntu 14.04 LTS “Trusty Tahr” server using the (official) setup steps described in the Squeezebox Wiki (see http://wiki.slimdevices.com/index.php/Debian_Package). Immediately after starting the server the message Logitech Media Server died. Restarting. was written into the log file /var/log/squeezeboxserver/server.log. After some research I found out that Logitech MediaServer […]
-
SVN & IIS HTTPS offloading reverse proxy: Fix “Server sent unexpected return value (502 Bad Gateway) in response to COPY request”
Recently, I faced the problem that a SVN server returned the error Server sent unexpected return value (502 Bad Gateway) in response to COPY request for … when trying to commit a SVN copy command. In the special scenario the SVN server is hidden behind a IIS that acts as HTTPS offloading reverse proxy (using […]
-
.NET 4: Fix “gacutil.exe does nothing” after copying gacutil.exe to another machine/server
If you copy the .NET 4 version of gacutil.exe (located in C:\Program Files (x86)\Microsoft SDKs\Windows\v8.0A\bin\NETFX 4.0 Tools) to another machine/server you might come across the issue, that executing gacutil.exe just seems to do nothing. To fix this problem, you need to copy the files gacutil.exe.config (also from C:\Program Files (x86)\Microsoft SDKs\Windows\v8.0A\bin\NETFX 4.0 Tools) and gacutlrc.dll […]
-
Windows: Command line utility to get a list of all users in an active directory group
You can easily get a list of all users that are member of a specific active directory group with the following command: net group /domain [GROUP-NAME] Hope this helps somebody…