http://www.codeproject.com/Tips/832570/IIS-Performance-Improvement
Author: Andreas Plahn
The Future of .NET in the Server: ASP.NET vNext optimized for Cloud and Server workloads – Cesar de la Torre Microsoft – BLOG – Site Home – MSDN Blogs
The best thing: change some c# code for your website. Wait 2 seconds, see the results for the code change, is it possible? In memory compilation? Sounds great to me.
Optimizing IIS Performance
Releasing the new EPiServer User Guide online
Upgrading EPiServer Commerce R3 to EPiServer 7.5 – upgrade script errors
Here is a little summary of problems and solutions with the Commerce upgrade script.
Run Deployment Center as administrator. The upgrade script upgrades both EPiServer 7.0 and EPiServer Commerce R3 to EPiServer CMS and Commerce 7.5. So the first step is to choose: “Upgrade EPiServer Commerce”
Next step choose the CMS 7 “Commerce enabled” www site to upgrade. (Not the Commerce manager site)
This is the running script:
“C:\Program Files (x86)\EPiServer\CMS\7.5.394.2\Install\Modules\EPiServer Commerce 7.5.394.2\Install\Upgrade EPiServer Commerce.ps1”
This is where you could inspect the log if it fails: (latest modified file)
C:\Program Files (x86)\EPiServer\Shared\Install\Logs
Errors
Could not find file ‘C:\sites\MySite.Web\b\web.config’1.
Solution: Set <appSettings> key “CommerceManagerApplicationName” to the Commerce Managers current IIS ApplicationPool name.
E.g:
<add key="CommerceManagerApplicationName" value="MySiteCommerceManager_v4.0" />
Line 418 fails: Could not find file ‘C:\commerce\MySite.CommerceManager.Web\b\web.config’.
Solution: this line: $commerceManagerPath = $commerceManagerBinPath.trimEnd(“Bin”)
Is hardcoded in the ps1 script. Replace the appsetting “CommerceManagerBinPath” in wwwroot web.config file “bin” in the path to “Bin”. E.g:
<add key="CommerceManagerBinPath" value="C:\Commerce\MySite.CommerceManager.Web\Bin"
“Could not find Tools.zip”
Copy Tools.zip from wwwroot\MediachaseECF\* (from a functioning, or demo, epi7 commerce r3 site) to upgradeprojects\wwwroot\MediachaseECF\*.
This file also seems to be deleted after every upgrade attempt.
Download here: Commerce_Tools.zip_for_r3_and_75
Cannot find package “EPiServer.Business.Commerce.AddOns.Manager” in local repository.
– In your wwwroot\modulesbin folder there should be a EPiServer.Commerce.AddOns.Manager.dll file, the EPiServer.Business.Commerce.AddOns.Manager.dll is EPiServer Commerce R3 specific and should be deleted.
Remove-Item : Cannot find path ‘C:\commerce\MySite.CommerceManager.Web\bin\Mediachase.Cms.Website.dll’ because it does not exist.
At C:\Program Files (x86)\EPiServer\CMS\7.5.394.2\Install\Modules\EPiServer Commerce 7.5.394.2\Install\Upgrade EPiServer Commerce.ps1:378 char:3
Solution: copy the Mediachase.Cms.Website.dll from C:\Program Files (x86)\EPiServer\CMS\7.0.586.1\Install\Modules\EPiServer Commerce 7.0.243.0\ECF\Data\ConsoleSite\bin to manager bin folder.
SSLv3 goes to the dogs; POODLE kills off protocol
Working with Validators and Messages in AngularJS
C# scripting REPL – CShell by ArnovaAssetManagement
“If you just want to test one or two lines of C# code without creating a new console project in Visual Studio just fire up CShell, type the code you wanna test and you immediately can see if it works the way you want.”