Wednesday, October 28, 2009
Tuesday, October 27, 2009
Tuesday, October 13, 2009
A very good link for image search in Sharepoint
http://blogs.catapultsystems.com/matthew/archive/2008/08/28/sharepoint-image-search-part-1.aspx
How to crawl the content in sharepoint search
1. Go to Central Admin--> Shared Services--> Search Settings --> Content sources and crawl schedules
2. Shared Services Administration: SharedServices1 > Search Administration > Content Sources
3. Local Office SharePoint Server sites
4. Start Full Crawl
2. Shared Services Administration: SharedServices1 > Search Administration > Content Sources
3. Local Office SharePoint Server sites
4. Start Full Crawl
Thursday, October 1, 2009
Single Sign On Help
http://www.thorprojects.com/blog/archive/2008/08/02/moss-single-sign-on-setup-step-by-step.aspx
My Site help
http://technet.microsoft.com/en-us/library/cc261864.aspx
Important Paths for Creating custom theme in sharepoint
SpThemes.Xml -- C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\TEMPLATE\LAYOUTS\1033
Theme folders -- C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\TEMPLATE\THEMES
mycustomtheme.gif - C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\TEMPLATE\IMAGES
Theme folders -- C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\TEMPLATE\THEMES
mycustomtheme.gif - C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\TEMPLATE\IMAGES
Tuesday, September 29, 2009
Increase the size of Site Template or List Templates
Run following command to the server:
stsadm -o setproperty -propertyname max-template-document-size -propertyvalue 50000000
stsadm -o setproperty -propertyname max-template-document-size -propertyvalue 50000000
Monday, September 21, 2009
Sharepoint Installation Help
http://technet.microsoft.com/en-us/library/cc263202.aspx
Thursday, September 17, 2009
Download ifilter for Sharepoint PDF Search
http://www.adobe.com/support/downloads/thankyou.jsp?ftpID=2611&fileID=2457
Change default action of the workflow task in Sharepoint
It is good user exeprience if user can directly edit the task instead of going to View the task and then edit. or instead of going to ECB menu and then select edit item.
User should be edit the task using only single click. here are the steps to achieve this thing.:
Step1. Open master page. and put following javaScript code in the head part of the master page.
function GoToLink(elm)
{
try
{
if (elm.href==null)
return;
var ch=elm.href.indexOf("?") >=0 ? "&" : "?";
var srcUrl=GetSource();
if (srcUrl !=null && srcUrl !="")
srcUrl=ch+"Source="+srcUrl;
var editUrl, regExp;
var dispUrl = elm.href ;
regExp = /DispForm.aspx/i;
editUrl = dispUrl.replace(regExp, "EditForm.aspx");
var targetUrl= editUrl + srcUrl;
if (isPortalTemplatePage(targetUrl))
window.top.location=STSPageUrlValidation(targetUrl);
else
window.location=STSPageUrlValidation(targetUrl);
}
catch(e)
{
alert(e.description);
}
}
Step 2. Make Defer="false" in following markup code in the master page.
3. THe default action of task has been changed to edit item.
4, isnt it cool user experience??
User should be edit the task using only single click. here are the steps to achieve this thing.:
Step1. Open master page. and put following javaScript code in the head part of the master page.
function GoToLink(elm)
{
try
{
if (elm.href==null)
return;
var ch=elm.href.indexOf("?") >=0 ? "&" : "?";
var srcUrl=GetSource();
if (srcUrl !=null && srcUrl !="")
srcUrl=ch+"Source="+srcUrl;
var editUrl, regExp;
var dispUrl = elm.href ;
regExp = /DispForm.aspx/i;
editUrl = dispUrl.replace(regExp, "EditForm.aspx");
var targetUrl= editUrl + srcUrl;
if (isPortalTemplatePage(targetUrl))
window.top.location=STSPageUrlValidation(targetUrl);
else
window.location=STSPageUrlValidation(targetUrl);
}
catch(e)
{
alert(e.description);
}
}
Step 2. Make Defer="false" in following markup code in the master page.
3. THe default action of task has been changed to edit item.
4, isnt it cool user experience??
Monday, September 7, 2009
SharePoint Best Practices Conference Notes (London 2009)
Day 1:
http://www.sharepointology.com/general/sharepoint-best-practices-conference-notes-london-2009-day-1/
Day 2:
http://www.sharepointology.com/general/sharepoint-best-practices-conference-notes-london-2009-day-2/
http://www.sharepointology.com/general/sharepoint-best-practices-conference-notes-london-2009-day-1/
Day 2:
http://www.sharepointology.com/general/sharepoint-best-practices-conference-notes-london-2009-day-2/
Wednesday, July 29, 2009
Business Data Catalog Definition Editor
A very good tool for creating Application Defination Xml for both Database and WebServices in BDC
Integrated with SharePoint Server 2007 Software Development Kit (SDK).
After installing SDK you can find it under:
C:\Program Files\2007 Office System Developer Resources\Tools\BDC Definition Editor
Integrated with SharePoint Server 2007 Software Development Kit (SDK).
After installing SDK you can find it under:
C:\Program Files\2007 Office System Developer Resources\Tools\BDC Definition Editor
Must have for MOSS developers
1. SharePoint Server 2007 SDK: Software Development Kit
http://www.microsoft.com/downloads/details.aspx?FamilyId=6D94E307-67D9-41AC-B2D6-0074D6286FA9&displaylang=en
Monday, July 27, 2009
Create a sharepoint webpart
Steps:
1. Create a simple webusercontrol . Put necessary code and controls in it.(For ex, datagrid and code to connect database.) Do not maintain separate code file (ascx.cs) for web user control. Put code in same ascx file only.
2. Put the webusercontrol (.ascx file) in layout folder of sharepoint site where you want to deploy the webpart.
3. Go to VS2008. (Please install VSSWSE.exe before that.)
4. Create new Project -> Select webpart from Visual C# -> sharepoint
5. Add following code :
protected override void CreateChildControls()
{
base.CreateChildControls();
// TODO: add custom rendering code here.
Control objControl = Page.LoadControl("/_layouts/WebUserControl.ascx");
this.Controls.Add(objControl);
}
6. Build and deploy the solution.
7. Go to the sharepoint site -> Site Actions -> EditPage ? Add Web Part.
8. Select your webpart from the list.
1. Create a simple webusercontrol . Put necessary code and controls in it.(For ex, datagrid and code to connect database.) Do not maintain separate code file (ascx.cs) for web user control. Put code in same ascx file only.
2. Put the webusercontrol (.ascx file) in layout folder of sharepoint site where you want to deploy the webpart.
3. Go to VS2008. (Please install VSSWSE.exe before that.)
4. Create new Project -> Select webpart from Visual C# -> sharepoint
5. Add following code :
protected override void CreateChildControls()
{
base.CreateChildControls();
// TODO: add custom rendering code here.
Control objControl = Page.LoadControl("/_layouts/WebUserControl.ascx");
this.Controls.Add(objControl);
}
6. Build and deploy the solution.
7. Go to the sharepoint site -> Site Actions -> EditPage ? Add Web Part.
8. Select your webpart from the list.
Saturday, July 25, 2009
Learning Resources for sharepoint
Learning Resources for sharepoint
1. http://manish-sharepoint.blogspot.com/2009/04/training-material-on-microsoft-office.html
2. http://sharepointdevtest.blogspot.com/
3. http://qmoss.blogspot.com/
1. http://manish-sharepoint.blogspot.com/2009/04/training-material-on-microsoft-office.html
2. http://sharepointdevtest.blogspot.com/
3. http://qmoss.blogspot.com/
Thursday, July 23, 2009
Check "Sign In Automatically" checkbox in Login.aspx of sharepoint
You will required to hide sign in me automatically checkbox.
You will be required to put following java script in the login page.
You will be required to put following java script in the login page.