ALRIGHT
I think I finally got this figured out maybe... That error right there is being caused by the ifinity URL Rewriter (I think I need to upgrade it) according to the forum
http://www.ifinity.com.au/Products/Support_Forums/forumid/8/threadid/2781/scope/posts/threadpage/2
So this error was happening and that section of code I referenced was trying to log the error but it was than causing an error itself when the site was being loaded which was causing a stack over flow exception which meaned the WP crashed
I was able to finally get at the error by changing the code in the CBO.vb file to (at line 336)
Thoughts?
ElseIf objPropertyType.FullName.Equals("System.String") Then
If objDataValue Is Nothing Then
objPropertyInfo.SetValue(objObject, Nothing, Nothing)
Else
objPropertyInfo.SetValue(objObject, objDataValue.ToString(), Nothing)
End If
Else ' try explicit conversion
objPropertyInfo.SetValue(objObject, objDataValue, Nothing)
End If