Something I could share at some point of time...
SP2010 V4.master page changes results into "/rcconsole.aspx. Code blocks are not allowed in this file."
While making UI - Colors & Logo changes for a Record Center Template of a SP2010 site this particular file - rcconsole.aspx got mesed up. I made some changes to V4.master pages and it was working fine for all other site pages excewpt the one. The resolution I got is - Do not make inline or markup changes in any master pages related to CSS. All CSS chagnes should go in corresponding .CSS file.
One of the interesting feature I come to know about SharePoint todat is - it will not crawl any file more then 16 MB unless to told it to go and crawl larger files size. This is besically a setting in a registry under the location (HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office Server\14.0\Search\Applications\<guid>-crawl-#\Gathering Manager) with the name - MaxDownloadSize. By default it will have 16 go ahead and change it to any larger number then think. Not sure what max you can put.
After compiling my .NET 3.5 application warning messages suggested me to use ConfigurationManager instead of ConfigurationSetting of System.Configuration class. But I was not able to use it for sometime. Then after googling I found that you need to add a explicit reference to System.Configuration for your project.
Though the above mentioned problem can be caused by so many other things but one of the probable cause in mentioned in the solution section.
--------------------------------------------------------------------------
Problem:
I have 2 site collection within a web application.
http://server:9999/sites/1
http://server:9999/sites/2
Crawler is able to crawel Site Collection 1 whereas not site collection 2 and giving following error. Errorinfo is "Error from SharePoint site: Data is Null. This method or property cannot be called on Null values."
-------------------------------------------
Solution: (Groups means SiteGroup)
We have got solution to his problem (along with MS Premier Support Team).
THere was a probem with Description field value of Groups. While creating a Groups in SharePoint 2010 - using SP2010 Object model we were supplying NULL as description but SharePoint 2010 Search Crawler DO NOT LIKE IT. Groups must have some description attached to it.
But the amazing thing is while creating a group with NULL as description it will get created. So at first GROUPS should not have created.
Once we got the source of issue we created a small app to update the description of Group and Crawl was back to normal.