<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel xmlns:blog="http://www.dotnetnuke.com/blog/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
    <title>Blogs</title>
    <description>See my "Moment by Moment" blog for personal entries. My "Knowledge Base" blog is the place for "nerd notes".</description>
    <link>http://larrydaniele.com/Blogs/tabid/55/BlogId/1/Default.aspx</link>
    <language>en-US</language>
    <webMaster />
    <pubDate>Fri, 30 Jul 2010 16:41:54 GMT</pubDate>
    <lastBuildDate>Fri, 30 Jul 2010 16:41:54 GMT</lastBuildDate>
    <docs>http://backend.userland.com/rss</docs>
    <generator>Blog RSS Generator Version 4.0.0.0</generator>
    <item>
      <title>Joe stars as Mercutio (Romeo's best friend) in Romeo and Juliet</title>
      <link>http://larrydaniele.com/Home/tabid/36/EntryId/44/Joe-stars-as-Mercutio-Romeos-best-friend-in-Romeo-and-Juliet.aspx</link>
      <description>&lt;div&gt;
&lt;div&gt;Today Libby, Grandma Millie and I went to see Joe play Mercutio (Romeo's best friend) in the Frontier Regional High School production of Romeo and Juliet. Joe was AWESOME - a natural talent with great stage presence. The cast was wonderful and the production was a tasty blend of contemporary music, Shakespearian prose and rhyme with an occasional dance number. Truly entertaining!&lt;/div&gt;
&lt;div style="text-align: center; "&gt;&lt;a href="http://http://larrydaniele.comlarrydaniele.com/Photos/tabid/108/AlbumID/470-63/Default.aspx"&gt;&lt;img alt="Joe as Mercutio" width="300" height="201" src="/Portals/0/Gallery/Album/63/DSC_0027.JPG" /&gt;&lt;/a&gt; &lt;/div&gt;
&lt;div&gt;Here are some more &lt;a href="http://larrydaniele.comlarrydaniele.com/Photos/tabid/108/AlbumID/470-63/Default.aspx"&gt;photos of Joe as Mercutio&lt;/a&gt;.&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;&lt;br /&gt;&lt;a href=http://larrydaniele.com/Home/tabid/36/EntryId/44/Joe-stars-as-Mercutio-Romeos-best-friend-in-Romeo-and-Juliet.aspx&gt;More ...&lt;/a&gt;</description>
      <author />
      <comments>http://larrydaniele.com/Home/tabid/36/EntryId/44/Joe-stars-as-Mercutio-Romeos-best-friend-in-Romeo-and-Juliet.aspx#Comments</comments>
      <slash:comments>0</slash:comments>
      <guid isPermaLink="true">http://larrydaniele.com/Home/tabid/36/EntryId/44/Joe-stars-as-Mercutio-Romeos-best-friend-in-Romeo-and-Juliet.aspx</guid>
      <pubDate>Sun, 07 Feb 2010 02:41:00 GMT</pubDate>
      <trackback:ping>http://larrydaniele.comDesktopModules/BlogTrackback.aspx?id=44</trackback:ping>
    </item>
    <item>
      <title>Stupid DotNetNuke Trick #1: Customizing Search field with disappearing "Search" text</title>
      <link>http://larrydaniele.com/Blogs/tabid/55/EntryId/43/Stupid-DotNetNuke-Trick-1-Customizing-Search-field-with-disappearing-Search-text.aspx</link>
      <description>&lt;p&gt; I am building another DotNetNuke website with the wonderful &lt;a target="_blank" href="http://www.drnuke.co.uk/Products/Flex2/tabid/3363/language/en-US/Default.aspx"&gt;Flex2 skin&lt;/a&gt;. My client asked that the Search field have some sort of label to make it more clear what the function was. I wanted to to do what the "cool kids" do: put the text "Search" in the field when it is "empty" and then automagically remove the text when the user clicks in the box.&lt;/p&gt;
&lt;p&gt;Since this is a DNN 5 site that has jQuery support built in, I could use a slightly modified version of this &lt;a target="_blank" href="http://www.reindel.com/five_javascript_tricks_jquery/"&gt;simple jQuery code from Brian Reindel&lt;/a&gt; (that I tucked into the skin's drnuke-height.js file that is already loaded by the skin):&lt;/p&gt;
&lt;pre style="margin-left:3em;"&gt;
/*
   Doctor the DNN Search field to display the word "Search" when it's "empty"
   and remove this text when the user clicks in the field.
    
   jQuery code compliments of 5 JavaScript Tricks Made Easy with jQuery
   jQuery JavaScript Samples by Brian Reindel
   http://www.reindel.com/five_javascript_tricks_jquery/
*/
$(function() {
    swapValues = [];
    $("#dnn_dnnSEARCH_txtSearch").each(function(i){
        $(this).val("Search");
        swapValues[i] = $(this).val();
        $(this).focus(function(){
            if ($(this).val() == swapValues[i]) {
                $(this).val("");
            }
        }).blur(function(){
            if ($.trim($(this).val()) == "") {
                $(this).val(swapValues[i]);
            }
        });
    });
});
&lt;/pre&gt;
&lt;p&gt; Thanks Brian!&lt;/p&gt;&lt;br /&gt;&lt;a href=http://larrydaniele.com/Blogs/tabid/55/EntryId/43/Stupid-DotNetNuke-Trick-1-Customizing-Search-field-with-disappearing-Search-text.aspx&gt;More ...&lt;/a&gt;</description>
      <author />
      <comments>http://larrydaniele.com/Blogs/tabid/55/EntryId/43/Stupid-DotNetNuke-Trick-1-Customizing-Search-field-with-disappearing-Search-text.aspx#Comments</comments>
      <slash:comments>0</slash:comments>
      <guid isPermaLink="true">http://larrydaniele.com/Blogs/tabid/55/EntryId/43/Stupid-DotNetNuke-Trick-1-Customizing-Search-field-with-disappearing-Search-text.aspx</guid>
      <pubDate>Fri, 05 Feb 2010 03:06:00 GMT</pubDate>
      <trackback:ping>http://larrydaniele.comDesktopModules/BlogTrackback.aspx?id=43</trackback:ping>
    </item>
    <item>
      <title>Lessons Learned Code Signing a Visual Studio 2008 .MSI Setup Project</title>
      <link>http://larrydaniele.com/Blogs/tabid/55/EntryId/42/Lessons-Learned-Code-Signing-a-Visual-Studio-2008-MSI-Setup-Project.aspx</link>
      <description>&lt;p&gt;I thought my mission was an easy one:&lt;/p&gt;
&lt;p style="margin-left: 40px"&gt;Code sign an existing MFC application (Metafile Companion) setup installer&lt;/p&gt;
&lt;p&gt;I should have known better. :-) I was successful and it really isn't that hard once you find out what to do. But there's the rub - the web is full of options that end up being dead ends. Below are some of the lessons I learned.&lt;/p&gt;
&lt;p class="Lesson"&gt;Lesson 1: You really can pay $99 for a one-year signing certificate from &lt;a target="_blank" href="http://ksoftware.net/index.html"&gt;K Software&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;There are other more expensive Certificate Authorities (e.g. VeriSign and Comodo) that charge more than this. But the K Software certificate (issued by Comodo) seems to work just fine. I would recommend using either Firefox or Internet Explorer to place your order and later downloading your certificate so it is added "automagically" to the system certificate store. Also, follow their &lt;a target="_blank" href="http://blog.ksoftware.net/2009/10/exporting-your-code-signing-certificate-to-a-pfx-file/"&gt;export instructions&lt;/a&gt; so you have a backup of your certificate.&lt;/p&gt;
&lt;p class="Lesson"&gt;Lesson 2: To see what certificates are on your system, run "certmgr.msc". &lt;/p&gt;
&lt;p&gt;This is how you can be assured that your certificate was properly stored on your system.&lt;/p&gt;
&lt;p class="Lesson"&gt;Lesson 3: The MSDN article "&lt;a target="_blank" href="http://msdn.microsoft.com/en-us/library/che5h906.aspx"&gt;How to: Sign Application and Deployment Manifests&lt;/a&gt;" doesn't apply to older MFC / VC++ projects.&lt;/p&gt;
&lt;p&gt;While this might work for newer C# projects, for my older MFC / VC++ application in Visual Studio 2008, it doesn't. So don't try to hard to find options that aren't there.&lt;/p&gt;
&lt;p class="Lesson"&gt;Lesson 4: The &lt;a target="_blank" href="http://msdn.microsoft.com/en-us/library/9sh96ycy(VS.80).aspx"&gt;SignCode&lt;/a&gt; utility is "obsolete"; use &lt;a target="_blank" href="http://msdn.microsoft.com/en-us/library/8s9b9yaz(VS.80).aspx"&gt;SignTool&lt;/a&gt; instead.&lt;/p&gt;
&lt;p&gt;SignCode has a nice wizard mode, but it doesn't show you a corresponding command line for the options you choose. SignTool is command line only, but is the current tool.&lt;/p&gt;
&lt;p class="Lesson"&gt;Lesson 5: Add a call to &lt;a href="http://msdn.microsoft.com/en-us/library/8s9b9yaz(VS.80).aspx"&gt;SignTool&lt;/a&gt; as the PostBuildEvent property for the Setup project.&lt;/p&gt;
&lt;p&gt;Once you figure out all the options you need, adding the event is easy. Here's what I used for my project:&lt;/p&gt;
&lt;p style="margin-left: 40px"&gt;signtool sign /a /v /d "Metafile Companion" /du http://www.CompanionSoftware.com/ /t http://timestamp.comodoca.com/authenticode "$(BuiltOuputPath)"&lt;/p&gt;
&lt;p&gt;You can read the documentation for what the various options are. One time-saving thing is the "/a" option which automatically uses the "best" signing certificate it finds in the store. If you only have one, there this works like a charm. A while back, I had added a "self-signed" certificate to play with. I had to remove this (using CertMgr.msc) to get my purchased certificate to be the "best" one.&lt;/p&gt;
&lt;p&gt;I hope these lessons help anyone else that might be trying to do something similar!&lt;/p&gt;&lt;br /&gt;&lt;a href=http://larrydaniele.com/Blogs/tabid/55/EntryId/42/Lessons-Learned-Code-Signing-a-Visual-Studio-2008-MSI-Setup-Project.aspx&gt;More ...&lt;/a&gt;</description>
      <author />
      <comments>http://larrydaniele.com/Blogs/tabid/55/EntryId/42/Lessons-Learned-Code-Signing-a-Visual-Studio-2008-MSI-Setup-Project.aspx#Comments</comments>
      <slash:comments>0</slash:comments>
      <guid isPermaLink="true">http://larrydaniele.com/Blogs/tabid/55/EntryId/42/Lessons-Learned-Code-Signing-a-Visual-Studio-2008-MSI-Setup-Project.aspx</guid>
      <pubDate>Sat, 23 Jan 2010 01:59:00 GMT</pubDate>
      <trackback:ping>http://larrydaniele.comDesktopModules/BlogTrackback.aspx?id=42</trackback:ping>
    </item>
    <item>
      <title>Joe shines in the Frontier Band Winter Concert</title>
      <link>http://larrydaniele.com/Blogs/tabid/55/EntryId/41/Joe-shines-in-the-Frontier-Band-Winter-Concert.aspx</link>
      <description>&lt;p&gt;Last night was the Frontier Regional Winter Concert. Joe was definitely one of the stars of the show. He had a nice solo, was inducted into the prestigious Tri-M Music Honor Society and looked quite dapper in his holiday "chapeau".&lt;/p&gt;
&lt;p style="text-align: center; "&gt;&lt;img alt="Joe and the Frontier Band" width="300" height="200" src="http://larrydaniele.com/Portals/0/Gallery/Album/60/Joe%20Daniele%20and%20the%202009%20Frontier%20Band.JPG" /&gt;&lt;/p&gt;
&lt;p&gt;You can see &lt;a href="http://larrydaniele.com/Photos/tabid/108/AlbumID/470-60/Default.aspx"&gt;more photos of the concert&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;I do admit to feeling a little sad that this might be the last Winter Concert with one of my kids in it.&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&lt;span style="font-size:10.0pt;font-family:Arial"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;br /&gt;&lt;a href=http://larrydaniele.com/Blogs/tabid/55/EntryId/41/Joe-shines-in-the-Frontier-Band-Winter-Concert.aspx&gt;More ...&lt;/a&gt;</description>
      <author />
      <comments>http://larrydaniele.com/Blogs/tabid/55/EntryId/41/Joe-shines-in-the-Frontier-Band-Winter-Concert.aspx#Comments</comments>
      <slash:comments>0</slash:comments>
      <guid isPermaLink="true">http://larrydaniele.com/Blogs/tabid/55/EntryId/41/Joe-shines-in-the-Frontier-Band-Winter-Concert.aspx</guid>
      <pubDate>Fri, 18 Dec 2009 13:45:00 GMT</pubDate>
      <trackback:ping>http://larrydaniele.comDesktopModules/BlogTrackback.aspx?id=41</trackback:ping>
    </item>
    <item>
      <title>"It's NOT a Clunker... It's My New 'Toy'"</title>
      <link>http://larrydaniele.com/Blogs/tabid/55/EntryId/40/-Its-NOT-a-Clunker-Its-My-New-Toy.aspx</link>
      <description>&lt;p&gt;After Laura's boyfriend Jim traded in his "clunker" (a beautiful late-model Mustang) for an even newer Honda Civic, that got me thinking. Would the U.S. Government give me $4500 for my 1995 Mercury Villager with over 148,000 miles on it? Is the "&lt;a href="http://cars.gov/"&gt;Cash for Clunkers&lt;/a&gt;" program (aka the "CARS program") for real?&lt;/p&gt;
&lt;p style="text-align: center; "&gt;&lt;img alt="Larry and his 1995 Mercury Villager" width="400" height="300" src="http://larrydaniele.com/Portals/0/Gallery/Album/56/DSCN0607.JPG" /&gt;&lt;/p&gt;
&lt;p&gt;This answer is a resounding YES. And I have a brand new 2010 Prius III to prove it!&lt;/p&gt;
&lt;p style="text-align: center; "&gt;&lt;img alt="Larry and his new 2010 Prius III in Blue Ribbon" width="400" height="300" src="http://larrydaniele.com/Portals/0/Gallery/Album/56/DSCN0604.JPG" /&gt;&lt;/p&gt;
&lt;p style="text-align: left; "&gt;I do want the world to know, my old Villager was not a clunker! It took me all over this country - even back and forth to Florida just a few weeks ago. I'll miss it (but have a pleasant distraction to ease the "pain").&lt;/p&gt;
&lt;p style="text-align: left; "&gt;You can see &lt;a href="http://larrydaniele.com/Photos/tabid/108/AlbumID/470-56/Default.aspx"&gt;more pictures of my new car&lt;/a&gt;. &lt;/p&gt;&lt;br /&gt;&lt;a href=http://larrydaniele.com/Blogs/tabid/55/EntryId/40/-Its-NOT-a-Clunker-Its-My-New-Toy.aspx&gt;More ...&lt;/a&gt;</description>
      <author />
      <comments>http://larrydaniele.com/Blogs/tabid/55/EntryId/40/-Its-NOT-a-Clunker-Its-My-New-Toy.aspx#Comments</comments>
      <slash:comments>0</slash:comments>
      <guid isPermaLink="true">http://larrydaniele.com/Blogs/tabid/55/EntryId/40/-Its-NOT-a-Clunker-Its-My-New-Toy.aspx</guid>
      <pubDate>Sun, 09 Aug 2009 00:47:00 GMT</pubDate>
      <trackback:ping>http://larrydaniele.comDesktopModules/BlogTrackback.aspx?id=40</trackback:ping>
    </item>
    <item>
      <title>Joe Blows a Mean Sax!</title>
      <link>http://larrydaniele.com/Blogs/tabid/55/EntryId/38/Joe-Blows-a-Mean-Sax.aspx</link>
      <description>&lt;p&gt; Joe has been practicing hard on both the alto and tenor saxophones. He's in the high school band as well as a separate Jazz Band. The day of his Cabaret Night debut this past Thursday, he got a shiny new Keilwerth alto sax from his mom:&lt;/p&gt;
&lt;p style="text-align: center; "&gt;&lt;img alt="Joe and his new Keilwerth alto sax" width="400" height="597" src="/Portals/0/Gallery/Album/46/DSC_0033.JPG" /&gt;&lt;/p&gt;
&lt;p style="text-align: left; "&gt;You can &lt;a href="http://www.youtube.com/watch?v=C7pbMVC6-Z4"&gt;watch Joe perform Take Five at Cabaret night on YouTube&lt;/a&gt;:&lt;/p&gt;
&lt;p style="text-align: center; "&gt;&lt;object width="425" height="344"&gt;
&lt;param name="movie" value="http://www.youtube.com/v/C7pbMVC6-Z4&amp;hl=en&amp;fs=1" /&gt;
&lt;param name="allowFullScreen" value="true" /&gt;
&lt;param name="allowscriptaccess" value="always" /&gt;&lt;embed src="http://www.youtube.com/v/C7pbMVC6-Z4&amp;hl=en&amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;
&lt;p style="text-align: left; "&gt; &lt;/p&gt;&lt;br /&gt;&lt;a href=http://larrydaniele.com/Blogs/tabid/55/EntryId/38/Joe-Blows-a-Mean-Sax.aspx&gt;More ...&lt;/a&gt;</description>
      <author />
      <comments>http://larrydaniele.com/Blogs/tabid/55/EntryId/38/Joe-Blows-a-Mean-Sax.aspx#Comments</comments>
      <slash:comments>0</slash:comments>
      <guid isPermaLink="true">http://larrydaniele.com/Blogs/tabid/55/EntryId/38/Joe-Blows-a-Mean-Sax.aspx</guid>
      <pubDate>Tue, 05 May 2009 16:58:00 GMT</pubDate>
      <trackback:ping>http://larrydaniele.comDesktopModules/BlogTrackback.aspx?id=38</trackback:ping>
    </item>
    <item>
      <title>An Old Friend Returns from the JanSport "Hospital"</title>
      <link>http://larrydaniele.com/Blogs/tabid/55/EntryId/37/An-Old-Friend-Returns-from-the-JanSport-Hospital.aspx</link>
      <description>&lt;p&gt;My &lt;a href="http://JanSport.com/"&gt;JanSport&lt;/a&gt; backpack and I have travelled everywhere together - all across the United States, Germany, Scotland, Italy and right here in lovely Sunderland, Massachusetts. I use it a lot as a ride my bicycle around town to do work and run errands.&lt;/p&gt;
&lt;p&gt;I often throw a laptop, a few folders or some boxes to be mailed into my backpack and pedal wherever I need to in our little town. So I was quite sad when the zipper on the pack started to give way. After a while, it could no longer be trusted to hold everything reliably. What to do?!?&lt;/p&gt;
&lt;p&gt;Go out an buy another JanSport backpack, of course! I loved my old one, so I went online and found a new one similar to it. I couldn't find my favorite burgundy color, so I settled for green (my other favorite). It arrived quickly and looked great. As I was unpacking it, I noticed that the JanSport information said simply that all JanSport backpacks come with a &lt;a href="http://www.jansport.com/js_warranties.php"&gt;lifetime product warranty&lt;/a&gt;. So I figured, why not see if they would fix my old one.&lt;/p&gt;
&lt;p&gt;This is where JanSport really surprised me. Not only did they make it incredibly easy to send back my old backpack (e.g. no receipt required), they also went above and beyond in fixing the pack. I only reported a problem with the zipper. But they noticed that one of the buckles was broken and replaced it. And they put new pull cords on all the zippers. My old friend is as good as new. So now I can choose burgundy or green, depending on my backpack mood. &lt;strong&gt;Thank you, JanSport. You are amazing!&lt;/strong&gt;&lt;/p&gt;
&lt;p style="text-align: center; "&gt;&lt;a href="http://JanSport.com/"&gt;&lt;img alt="Larry and his restored JanSport backpack" width="400" height="268" src="/Portals/0/Gallery/Album/38/DSC_0001.JPG" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;br /&gt;&lt;a href=http://larrydaniele.com/Blogs/tabid/55/EntryId/37/An-Old-Friend-Returns-from-the-JanSport-Hospital.aspx&gt;More ...&lt;/a&gt;</description>
      <author />
      <comments>http://larrydaniele.com/Blogs/tabid/55/EntryId/37/An-Old-Friend-Returns-from-the-JanSport-Hospital.aspx#Comments</comments>
      <slash:comments>0</slash:comments>
      <guid isPermaLink="true">http://larrydaniele.com/Blogs/tabid/55/EntryId/37/An-Old-Friend-Returns-from-the-JanSport-Hospital.aspx</guid>
      <pubDate>Sun, 03 May 2009 18:39:00 GMT</pubDate>
      <trackback:ping>http://larrydaniele.comDesktopModules/BlogTrackback.aspx?id=37</trackback:ping>
    </item>
    <item>
      <title>Oulook 2004 Junk Mail Filter Stopped Working? A Solution!</title>
      <link>http://larrydaniele.com/Home/tabid/36/EntryId/36/Oulook-2004-Junk-Mail-Filter-Stopped-Working-A-Solution.aspx</link>
      <description>&lt;p&gt;I've been using Outlook 2003 for a long time. A couple of days ago, Outlook no longer filtered junk mail into the special Junk Mail folder. All the spam just accumulated in my Inbox. Since I have public email addresses, I get literally hundreds of spam messages an hour. I rely on the Junk Filter working properly.&lt;/p&gt;
&lt;p&gt;I am suspicious that this behavior began right after I installed the trial version of Microsoft Publisher 2007 (so I could view a .pub document someone sent me). I'm my search for a solution to the problem, I did see some other reports of people suspecting Office 2007 (and other Microsoft updates) affecting Outlook.&lt;/p&gt;
&lt;p&gt;I stumbled on the solution that worked for me in a forum article titled "Junk mail filter stopped working". This solution is very simple:&lt;/p&gt;
&lt;ol&gt;
    &lt;li&gt;In Outlook 2003, select Help &gt; Detect and Repair from the menu.&lt;/li&gt;
    &lt;li&gt;Follow the on-screen instructions.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;After this, I restarted Outlook and the Junk Mail filter started working again!&lt;/p&gt;&lt;br /&gt;&lt;a href=http://larrydaniele.com/Home/tabid/36/EntryId/36/Oulook-2004-Junk-Mail-Filter-Stopped-Working-A-Solution.aspx&gt;More ...&lt;/a&gt;</description>
      <author />
      <comments>http://larrydaniele.com/Home/tabid/36/EntryId/36/Oulook-2004-Junk-Mail-Filter-Stopped-Working-A-Solution.aspx#Comments</comments>
      <slash:comments>0</slash:comments>
      <guid isPermaLink="true">http://larrydaniele.com/Home/tabid/36/EntryId/36/Oulook-2004-Junk-Mail-Filter-Stopped-Working-A-Solution.aspx</guid>
      <pubDate>Sun, 03 May 2009 18:31:00 GMT</pubDate>
      <trackback:ping>http://larrydaniele.comDesktopModules/BlogTrackback.aspx?id=36</trackback:ping>
    </item>
    <item>
      <title>Warning: The Plesk database is corrupt. Please launch the Reconfigurator utility to fix it</title>
      <link>http://larrydaniele.com/Blogs/tabid/55/EntryId/34/Warning-The-Plesk-database-is-corrupt-Please-launch-the-Reconfigurator-utility-to-fix-it.aspx</link>
      <description>&lt;div&gt;Here is a problem experienced recently... and a solution!&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;Using Plesk 8.6.0 for Windows, I removed an SSL certificate from a domain and then added a new one back. When I went to Server &gt; IP Addresses &gt; 208.109.105.22, I saw the message:&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div style="margin-left: 40px; "&gt;Warning: The Plesk database is corrupt. Please launch the Reconfigurator utility to fix it&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;I also did NOT see the new certificate I had added in the combobox of certificates.&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;I launched Reconfigurator and ran all the fixes, but the problem still persisted. I rebooted the server a number of times and that did not help.&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;This problem has been reported by three other users in the thread &lt;a href="http://forum.swsoft.com/showthread.php?t=36610"&gt;The Plesk database is corrupt.&lt;/a&gt;&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;There is a Plesk Knowledge Base article about exactly this problem titled &lt;a href="http://kb.parallels.com/en/2005"&gt;[FIX] Plesk database corruption warning on IP address management page&lt;/a&gt;. &lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;However, when I ran the command listed (substituting my Plesk password for "
&lt;plesk_password&gt;", I got the error:&lt;/plesk_password&gt;
&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;   ERROR 2003 (HY000): Can't connect to MySQL server on 'localhost' (10061)&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;So I needed some advice on how to resolve the problem. GoDaddy Support responded:&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div style="margin-left: 40px; "&gt;The instructions provided on the Plesk site are only for use when the Plesk database engine is MySQL. Plesk on a Windows server by default uses an Access database. This can be changed through the Plesk Reconfigurator utility if you wish however I recommend attempting to correct this issue before changing the database engine. Unfortunately we will not be able to remove a database entry for you however you can download an Access viewer/editor that will allow you to view and make changes on the database directly.&lt;/div&gt;
&lt;div&gt; &lt;/div&gt;
&lt;div&gt;So then the search began to find a simple way to edit the Access database file short of installing Access over the net onto my web server. The key find was that Visual Studio's Server Explorer can open and edit Access databases. So here is an outline of how I solved the problem:&lt;/div&gt;
&lt;ol&gt;
    &lt;li&gt;On the web server, navigate to %plesk_dir%\admin\db. There you should find the Microsoft Access database files psa.mdb and psa.ldb. &lt;/li&gt;
    &lt;li&gt;Make a copy of  these files as a backup (Ctrl+C, Ctrl+V).&lt;/li&gt;
    &lt;li&gt;Copy these files to a computer with Visual Studio (or Access) installed.&lt;/li&gt;
    &lt;li&gt;Open the database (in VS, use Server Explorer), open the "repository" and "certificates" tables.&lt;/li&gt;
    &lt;li&gt;Manually implement the SQL statement&lt;br /&gt;
    &lt;br /&gt;
    delete from repository where rep_id=1 and component_id not in (select id from certificates);&lt;br /&gt;
    &lt;br /&gt;
    Note: I found the repository rep_id, component_ids to be:&lt;br /&gt;
    &lt;br /&gt;
    1, 1&lt;br /&gt;
    1, 2&lt;br /&gt;
    1, 3&lt;br /&gt;
    1, 4&lt;br /&gt;
    &lt;br /&gt;
    However, the certificate IDs were 1, 2, 3 and 10. So instead of deleting the row, I modified the value from "4" to "10".&lt;br /&gt;
     &lt;/li&gt;
    &lt;li&gt;Copy the two database files back to the server.&lt;/li&gt;
    &lt;li&gt;Try reproducing the problem in Plesk. The problem went away for me!&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;I hope this works for you as well!&lt;/p&gt;&lt;br /&gt;&lt;a href=http://larrydaniele.com/Blogs/tabid/55/EntryId/34/Warning-The-Plesk-database-is-corrupt-Please-launch-the-Reconfigurator-utility-to-fix-it.aspx&gt;More ...&lt;/a&gt;</description>
      <author />
      <comments>http://larrydaniele.com/Blogs/tabid/55/EntryId/34/Warning-The-Plesk-database-is-corrupt-Please-launch-the-Reconfigurator-utility-to-fix-it.aspx#Comments</comments>
      <slash:comments>0</slash:comments>
      <guid isPermaLink="true">http://larrydaniele.com/Blogs/tabid/55/EntryId/34/Warning-The-Plesk-database-is-corrupt-Please-launch-the-Reconfigurator-utility-to-fix-it.aspx</guid>
      <pubDate>Thu, 08 Jan 2009 18:52:00 GMT</pubDate>
      <trackback:ping>http://larrydaniele.comDesktopModules/BlogTrackback.aspx?id=34</trackback:ping>
    </item>
    <item>
      <title>2008 Christmas Dinner</title>
      <link>http://larrydaniele.com/Home/tabid/36/EntryId/33/2008-Christmas-Dinner.aspx</link>
      <description>&lt;p&gt;&lt;img alt="2008 Christmas Dinner" width="500" height="375" src="/Portals/0/Blog/2008/PC250002.JPG" /&gt;&lt;/p&gt;
&lt;p&gt;Vickie and I had a nice Christmas dinner with Laura and her boyfriend Jim. We feasted on lasagne (both traditional and vegan), sautéed spinach and garlic and a loaf of braided bread (that Laura braided) made with stone-ground wheat flour and topped with sesame seeds. The green casserole dish (for the veggie lasagne) was a Christmas present from Sarah and Jarett that was put to immediate use!&lt;/p&gt;&lt;br /&gt;&lt;a href=http://larrydaniele.com/Home/tabid/36/EntryId/33/2008-Christmas-Dinner.aspx&gt;More ...&lt;/a&gt;</description>
      <author />
      <comments>http://larrydaniele.com/Home/tabid/36/EntryId/33/2008-Christmas-Dinner.aspx#Comments</comments>
      <slash:comments>0</slash:comments>
      <guid isPermaLink="true">http://larrydaniele.com/Home/tabid/36/EntryId/33/2008-Christmas-Dinner.aspx</guid>
      <pubDate>Fri, 26 Dec 2008 21:41:00 GMT</pubDate>
      <trackback:ping>http://larrydaniele.comDesktopModules/BlogTrackback.aspx?id=33</trackback:ping>
    </item>
  </channel>
</rss>