Agile Development Practices suggest developers keep a solutions log. I think we can all benefit from a combined solutions log. As I encounter errors or problems I intend to record the solutions on this blog. Please feel to leave your comments, solutions and email me with your errors and solutions.
Apr 13, 2010
Solution: Flash movie flickers when using filter effects
I found that if I used the wmode="transparent" attribute when embedding a flash swf and the movie used the filter effects I would see a flicker when mousing over the item using the filter effects. To correct the problem I set the wmode to opaque.
jQuery test whether object exists
In jQuery in order to test whether and object or element (div, span, p, etc.) exists:
if ( $('#myDiv').length ) {
// run some code if myDiv exists
}
if ( $('#myDiv').length ) {
// run some code if myDiv exists
}
Mar 15, 2010
Mar 9, 2010
Feb 18, 2010
Solution: SQL 2000 to SQL 2005 upgrade error -1
I was trying to perform an upgrade at a Microsoft site from SQL 2000 to SQL 2005. I had a pop up window during the upgrade analysis process of SQL 2005 that was blank.
The message I was getting in the WI install log located at C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\LOG\Files\SQLSetup000#_computername_WI.log was Error Code: 0x80077370 (29552)
The Problem is in Upgrade advisor. In my case it was failing because .Net 3.5 SP1 was installed.
The following workaround amazed me and worked perfectly:
"Once SQL installation starts create a subdirectory BPAClientunder C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\BPA directory. And copy BPAClient.dll (from the sibling bin directory) into this directory."
(http://www.tech-archive.net/Archive/SQL-Server/microsoft.public.sqlserver.setup/2008-10/msg00265.html)
The BPAClient.dll file can be found at C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\BPA\bin.
The message I was getting in the WI install log located at C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\LOG\Files\SQLSetup000#_computername_WI.log was Error Code: 0x80077370 (29552)
The Problem is in Upgrade advisor. In my case it was failing because .Net 3.5 SP1 was installed.
The following workaround amazed me and worked perfectly:
"Once SQL installation starts create a subdirectory BPAClientunder C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\BPA directory. And copy BPAClient.dll (from the sibling bin directory) into this directory."
(http://www.tech-archive.net/Archive/SQL-Server/microsoft.public.sqlserver.setup/2008-10/msg00265.html)
The BPAClient.dll file can be found at C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\BPA\bin.
Dec 24, 2009
Charles Web Proxy
Charles is an HTTP proxy / HTTP monitor / Reverse Proxy that enables a developer to view all of the HTTP and SSL / HTTPS traffic between their machine and the Internet. This includes requests, responses and the HTTP headers (which contain the cookies and caching information).
http://www.charlesproxy.com/
http://www.charlesproxy.com/
Dec 11, 2009
Solution: Display issues with Internet Explorer 8
Problem: Internet Explorer 8 displays web pages weird, strange or incorrectly.
Solution1: Change security setting to the default level
Tools -> Internet Options -> Security -> Internet -> Default level
Solution2: Make sure browser compatibility mode is turned off
Tools -> Developer Tools -> Browser Mode
Solution1: Change security setting to the default level
Tools -> Internet Options -> Security -> Internet -> Default level
Solution2: Make sure browser compatibility mode is turned off
Tools -> Developer Tools -> Browser Mode
Dec 1, 2009
Nov 27, 2009
Process Explorer
Process Explorer is a great tool by Micrsoft for tracking down processes that are taking up too much cpu or memory.
Subscribe to:
Posts (Atom)