Adding app_offline.htm to the root of your .net application automatically shuts it down. Very nice for putting up a quick maintenance page.
All the junk I have in my head
Adding app_offline.htm to the root of your .net application automatically shuts it down. Very nice for putting up a quick maintenance page.
“Note: by default, it only displays up to 300 items. This limit can be overridden by adding a ‘maxViewItems’ key and value to your browser’s localStorage.”
To fix the issues above and assuming your still at the KUDU interface.
WordPress was installed on a windows machine and recently started getting this error. Seems that the web.config was modified.
To fix the error above I updated the web.config to look like this and it fixed the problem.
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Main Rule" stopProcessing="true">
<match url=".*" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="/" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
If you get this error:
modprobe: ERROR: could not insert 'ip_tables': Exec format error
iptables v1.6.0: can't initialize iptables table `filter': Table does not exist (do you need to insmod?)
Perhaps iptables or your kernel needs to be upgraded.
Run this:
$ wget http://last.public.ovh.hdaas.snap.mirrors.ovh.net/ubuntu/pool/main/l/linux-modules-armada375/linux-modules-armada375_4.5.2-4_armhf.deb
$ dpkg -i linux-modules-armada375_4.5.2-4_armhf.deb
Found on: https://www.lowendtalk.com/discussion/comment/2806769/#Comment_2806769
Good article on configuring IIS logs to track the IP address of the client rather than the load balancer IP address.
https://www.loadbalancer.org/blog/iis-and-x-forwarded-for-header/
When installing Sharepoint 2013 on a virtual machine running Windows Server 2012 R2 I keep getting a configuration error for the Application Server Role. After reading a bunch of material and trying to install Windows updates I’ve found that the only thing necessary is to make a copy of C:\Windows\System32\ServerManager.exe and rename the copy to C:\Windows\System32\ServerManagerCMD.exe. This seems to fix my installation problems.
Make sure to close the server manager window as well if you have it open. It seems to make the installation hang if its open.
I had a problem with a WordPress website that I recently moved to a new server running PHP 5.4 and IIS. I found that the fix to my problem was in the wp-config.php file. I had to change the hostname of the MySQL db from localhost to 127.0.0.1. Maybe this is an issue with IPv6 being enabled on the server. I’ll try and look at that later.
From…
/** MySQL hostname */ define('DB_HOST', 'localhost');
To…
/** MySQL hostname */ define('DB_HOST', '127.0.0.1');
Just wanted to share information on this hosting provider. I’ve been using Hostigation for a while now for backups, cheap and for the most part pretty stable. Lately they’ve been problems with a spammer, which is not allowed, but they’ve fixed the problem.
The plans just give you 64MB of RAM but that’s because you don’t need RAM if your just doing backups and these plans are just for backups.
You can get up to 300GB for a quarterly payment of $40. That’s less than $15 bucks a month.