Mindblown: a blog about philosophy.
-
HTTP Error 400.0 – Bad Request ASP.NET detected invalid characters in the URL from ampersand
To resolve the error of HTTP Error 400.0 – Bad Request ASP.NET detected invalid characters in the URL , whether you are using Helicon Ape for url rewrites or not, is to make the following registry additions: Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ASP.NET] “VerificationCompatibility”=dword:00000001 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\HTTP\Parameters] “AllowRestrictedChars”=dword:00000001 This will allow you to continue to use the…
-
RegAsm : error RA0000 : Unable to locate input assembly ‘c:\Windows\System32\Pay flow_dotNET.dll’ or one of its dependencies.
I was getting the error of RegAsm : error RA0000 : Unable to locate input assembly ‘c:\Windows\System32\Pay flow_dotNET.dll’ or one of its dependencies. when following instructions from installing the Payflow_dotNET.dll dll for .NET to use. As I was running this command: C:\Windows\System32>c:\Windows\Microsoft.NET\Framework64\v2.0.50727\RegAsm.exe c:\Windows\System32\Payflow_dotNET.dll There is an issue here, is that the dll, although there, was not…
-
Solved: rsync error: some files/attrs were not transferred (see previous errors) (code 23) at main.c(1039) [sender=3.0.6]
rsync error: some files/attrs were not transferred (see previous errors) (code 23) at main.c(1039) [sender=3.0.6] So, apparently I had not become root just yet. Whoops. Once I had ‘sudo su -‘ed, I could run the command no problem. If this did not solve your problem, please post a comment.
-
Calculating Disk Space in Use by All Databases within a Given MSSQL Instance
If you are trying to calculate total disk space in use by all databases within a given MSSQL instance, you can use the following script to determine this space. SELECT CONVERT(DECIMAL(10,2),(SUM(size * 8.00) / 1024.00 / 1024.00)) As UsedSpace FROM master.sys.master_files It has been said that “Sys.Master_files is a server-wide view that lists every file in…
-
Exception Details: System.Security.SecurityException: Request for the permission of type ‘System.Web.AspNetHostingPermission, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089’ failed. error in DotNetNuke
After fighting with this error for oh, 20 or so minutes, Exception Details: System.Security.SecurityException: Request for the permission of type ‘System.Web.AspNetHostingPermission, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089’ failed. the end result was to go into the ApplicaitonPool Advanced Settings in IIS and set Load User Profile to True from False:
-
WinZip 8 Registry
If you are moving between machines and want your WinZip 8 to go with you, check in ‘My Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Nico Mak Computing\WinZip\WinIni’ or in ‘My Computer\HKEY_CURRENT_USER\SOFTWARE\Nico Mak Computing\WinZip\WinIni’ (Depending on the install method I beleive) and look for two fields to register, the Name field, and the SN field. These are all you will need, besides…
-
Update the Schema on a Stored Procedure
To update the schema of a single stored procedure, once on the database in question, you would need to run the following line: ALTER SCHEMA destinationSchema TRANSFER sourceSchema.storedProcedure;
-
Exception Details: System.Web.HttpException: Request is not available in this context
Exception Details: System.Web.HttpException: Request is not available in this context http://mvolo.com/iis7-integrated-mode-request-is-not-available-in-this-context-exception-in-applicationstart I agree with the options given: Change your application code to not use the request context (recommended). Move the application to Classic mode (NOT recommended). Change your application code to not use the request context (recommended). OR: Move the application to Classic…
-
Parser Error Message: Could not load file or assembly ‘System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35’ or one of its dependencies. The system cannot find the file specified.
You need to install ASP.NET AJAX 1.0 found here: http://www.microsoft.com/en-us/download/details.aspx?id=883
-
SOLVED: ‘regsrv32’ is not recognized as an internal or external command,
I have gotten the error of ‘regsrv32’ is not recognized as an internal or external command, a few times recently, and it turns out, I typo’d the command. I was typing in regsrv32 as aposed to regsvr32, yes, the ‘v’ and the ‘r’ were switched. Gah, stupid muscle memory.
Got any book recommendations?