Sunday, June 21, 2009
DNN upgrade error BC30560: 'RewriterRuleCollection' is ambiguous in the namespace 'DotNetNuke.HttpModules.Config'
Thursday, June 11, 2009
Monday, June 1, 2009
DotNetNuke Upgrade failed - The type initializer for 'DotNetNuke.Security.Membership.Data.DataProvider' threw an exception
Delete the following files from the \bin folder:
DotNetNuke.Authentication.ADSI.dll
DotNetNuke.Authentication.ADSIProvider.dll
DotNetNuke.DNNScheduler.SqlDataProvider.dll
DotNetNuke.HttpModules.Authentication.dll
DotNetNuke.Provider.DBLoggingProvider.SqlDataProvider.dll
DotNetNuke.Provider.Membership.SqlDataProvider.dll
DotNetNuke.Provider.SQLMembershipProvider.dll
DotNetNuke.Provider.SQLProfileProvider.dll
DotNetNuke.Provider.SQLRoleProvider.dll
Wednesday, May 6, 2009
Uninstall MS SQL Server Embedded Edition
2. In the left pane, click each GUID. For each GUID that you click, look for a display name in the right pane that matches “Microsoft SQL 2005 Embedded Edition…”.
3. When you see a display name that matches the name, copy the value of the Key named “UninstallString”
4. Open a Command-Window (Start->run->cmd)
5. Paste the Copied string. It should be something like this: MsiExec.exe /X{BDD79957-5801-4A2D-B09E-852E7FA64D01}
6. Append “ CALLERID=OCSETUP.EXE” at the end of the MsiExec.exe eg “MsiExec.exe /X{BDD79957-5801-4A2D-B09E-852E7FA64D01} CALLERID=OCSETUP.EXE”
7. Run the command. This will go through the process of uninstalling SQL Server 2005 Embedded Edition
8. Reboot.
Wednesday, April 29, 2009
"Make files available offline" missing
- Double-click My Computer.
- On the Tools menu, press Folder Options.
- Select the Offline Files tab.
- Check the Enable Offline Files box.
- Press Apply and OK.
Thursday, April 2, 2009
MS SQL Server Error: The backup set holds a backup of a database other than the existing database.
Friday, February 20, 2009
Tuesday, February 17, 2009
Running UBUNTU in under Microsoft Virtual Server
- Boot from Ubuntu’s install CD
- Then press F6, and at the end of the line add this: text vga=791 noreplace-paravirt
Monday, February 9, 2009
Drobo Review

I bought one of these when they first appeared on the promise that they are expandable without down time. Filled it with 2x500GB Samsung drives and it performed admirably, if a tad slow. I used it to back up machines and the backup files got fairly big and soon it filled up. I added 2 more 500GB drives and was pleasantly surprised when the extra capacity appeared within a few minutes without much fuss. The backup files got bigger ( >60GB each ) and then the problems started: It would start hanging from time to time and needed a power cycle each time to revive. One each power restart, the lights on all the drives would flash amber for several hours, with the warning message that the files are not protected. The problem grew slightly worse as the files got bigger and soon it had reach capacity. I started replacing the 500GB with 1 TB drives, and this was an ardously long process. The drives can only be replaced one at the time and each time, it flashed amber for several days before another drive can be replaced. Eventually all 4 drives were replaced and the backing up restarted in earnest and was met with a resounding failure. The backup files have now reach >100GB and not a single backup session was successful. Each time it would hang after several hours of copying, and after each power cycle, it would flash amber for a couple of days before turning green again. Tech support's only suggestions were always to either reformat the drive or update the firmware which were done every time to no avail. By now the drive was out of warranty, and stupidly, I bought a second one to see if the first one was unique. Sadly, the second one is exactly the same. Thus, the conclusion is to avoid it like the plague if you are intending to fill it with terabyte drives and copy very large files. I now have a proper NAS device with 4 TB drives for a little more money and it works like a dream. The only down side is that I can't upgrade the space without downtime like the Drobo promised.
Wednesday, January 21, 2009
Sharepoint 3 and IE7 pop up name.dll problem
function ProcessImn() { }
Wednesday, January 7, 2009
Windows Vista VPN Problem: "This connection requires an active internet connection"
Friday, December 19, 2008
FTP server not working on Windows 2003
- Configure your firewall. Use the script from here: http://clintm.esria.com/2006/11/20/configuring-windows-2003-firewall-and-iis-6-for-pasv-ftp-port-range/
- Make sure your anti-virus/anti-malware isn't blocking inbound FTP requests.
Friday, November 21, 2008
How to replace a broken default.master in SharePoint 3.0
Thursday, November 20, 2008
Displaying record ID in Sharepoint 2003
Put the following javascript in the Dispform.aspx and Editform.aspx:
function urlparm( name ){ name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\< /a>]"); var regexS = "[\\?&]"+name+"=([^&#]*)"; var regex = new RegExp( regexS ); var results = regex.exec( window.location.href ); if( results == null ) return ""; else return results[1];}
onetidPageTitle.innerHTML=' <h2 class="ms-pagetitle">ID: '+urlparm("ID")+'</h2>';


