Posts

Showing posts from 2015

Claims Walkthrough: Creating Forms-Based Authentication (FBA) for Claims-Based SharePoint 2010 Web Applications Using ASP.NET SQL Membership and Role Providers

Image
Dear All  In last Post I got the solution to make the FBA with AD in this post the we are create FBA authentication with SQL database This is post in which i found the correct solution of FBA with SQL Server  Step 1: Create a Web application with Form Based Authentication  Step 2: Create the SQL database and allow User Persmission Step 3: Update Web.config for Web Application, Central Administration & Security Token Service File Via Tool  Download the Tool from following URL: http://blogs.technet.com/b/speschka/archive/2012/07/28/fba-configuration-manager-for-sharepoint-2013.aspx  Note: Make sure you need follow the instruction as per download file Read Me. txt  Step 4: Create User Under SQL and Define the Permission Group  I use the following command In SQL server instead of running the define PS Script  declare @now datetime set @now= GETDATE() exec aspnet_Membership_CreateUser '/','User Name','password', '

Configure a SharePoint 2013 Web Application with Forms Based Authentication [ FBA ] with a LDAP membership provider

Image
Dear All The below post is a authenticated version of Form Based Authentication (FBA) in SharePoint 2013 Here we  go... This blog article provides a step-by-step guide with screenshots on how to configure a new Web Application with Forms Based Authentication (FBA) using a LDAP membership provider. While the steps are described in TechNet article http://technet.microsoft.com/en-us/library/ee806890%28v=office.15%29.aspx , when it comes to put them in practice you might stumble across difficulties, where this blog comes to your assistance Enjoy! Summary: Create a new user in Active Directory. Create a new Web Application in Central Administration that uses forms-based authentication. Configure the web.config files. Create a new site collection for the new created Web Application and add the FBA user as site collection administrator. Browse to the new created site and test the functionality. 1. Create a new user in Active Directory I named the user ‘fbaadmin’ and pla

SharePoint customer Navigation Control with Term Set

Image
Dear All Thanks for the Blue share I got this solution from the following link http://www.bluesphereinc.com/blog/sharepoint/real-cross-site-collection-navigation-in-sharepoint-using-the-term-store/ Just for my reference i am adding the items here Navigation within SharePoint can often cause confusion and frustration among users and admins. Whether it’s users not understanding where they are, or Admins not knowing how to structure things in a sensible way, Navigation can be challenging. Today we are going to take a look at a fairly common (and frustrating) scenario – cross site collection navigation. By default SharePoint 2010 and 2013 do not allow for cross site collection navigation, meaning the same navigation set or structure isn’t available to an entire web application. One site collection cannot easily link to items in another without using custom, hard coded links. There were hopes that SharePoint 2013 would address this issue, but it has not – not really, anyway.

Infopath unable to connect with SharePoint server

Dear All,  We are facing many time the same issue that infopath is not able to connect with my remote server. I have two development machine where one is connecting with sharepoint correctly while the other one is giving me an unknown error ... Once i drill down i found the one development machine has office 2013 32 bit version that connect with the server with out any problem while the infopath 2013 64 bit giving me the error.. I uninstall 64 bit office and than install 32 bit office on another developer machine and after that it will work I hope it will work with you as well Regards 3art Technology Experts http://www.3art.tech

How to reduce LDF file in sql for sharepoint

Here is the script for job that you need to run for decrease the LDF file /***** Script start*** USE [DB_NAME]; ALTER DATABASE [DB_NAME] SET RECOVERY SIMPLE; CHECKPOINT; DBCC SHRINKFILE ([LOG_FileName], 1); ALTER DATABASE [DB_NAME] SET RECOVERY FULL; /***** Script End*** The above script reduce the log file up to 1,024 KB Note: before doing any activity kindly make the back of each database. Regards 3art Technology Experts http://www.3art.tech

SharePoint calculated column and hyperlink or Link (no workflows or scripts needed)

Image
This is a process how you make the Link column in your sharepoint link original url Create a calculated column which concatenate the url text with an existing column value. This seems to be an easy task, except one thing: SharePoint doest not render hyperlink in calculated column by default. For example, I have a list with 2 columns: Search term and Google Search. Google Search is a calculated column with this formula Now, this is what I will get by default: There are a few ways to fix this problem. Usually people will recommend you to create a Hyperlink column instead and create a workflow to update the Hyperlink value ( http://social.technet.microsoft.com/Forums/ar/sharepoint2010customization/thread/32d32e47-3256-4806-8775-c250b6243038 ) . Or, you can place a script on the page that loop through the HTML nodes and replace the unfriendly html tags with a hyperlink as described here http://practicalsharepoint.blogspot.com/2011/10/dynamic-hyperlinks-in-calculated.html

Downgrade SQL from Enterprise to Standard “Database cannot be started in this edition of SQL server” : Restore failed for Server Error in CRM 2011

Image
Dear All If you want to downgrade your database from the enterprise to standard here is the following solution Reference URL: https://ashwaniashwin.wordpress.com/2013/02/28/database-cannot-be-started-in-this-edition-of-sql-server-restore-failed-for-server-error-in-crm-2011/ Hello Everyone, Today while trying to restore the Org_MSCRM Database from production server to one of my testing server, I came across a new Error:“Database ‘Org_MSCRM’ cannot be started in this edition of SQL Server because it contains a partition function ‘AuditPFN’. Only Enterprise edition of SQL Server supports partitioning. Database ‘Org_MSCRM’ cannot be started because some of the database functionality is not available in the current edition of SQL Server. (Microsoft SQL Server, Error: 905)” The error was very clear indeed as my production server was SQL Server Enterprise Edition and testing server was SQL Server Standard Edition. Basically while installing CRM 2011 in Enterprise edition, a par

How to disable sharepoint mobile website

Dear All If you want to disable SharePoint mobile URL do the add the following code under web.config  <system.web> tag /* code starte */ <browserCaps> <result type="System.Web.Mobile.MobileCapabilities, System.Web.Mobile, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/> <filter>isMobileDevice=false</filter> </browserCaps> /*code end*/ Regards 3art Technology Experts http://www.3art.tech

Create Custom New Edit and Display form for sharepoint list

Image
Reference URL http://blog.karstein-consulting.com/2010/12/29/walkthrough-create-custom-sharepoint-2010-list-form-for-deployment-in-a-visual-studio-2010-project/ Another post http://www.ilikesharepoint.de/2013/11/sharepoint-create-custom-list-forms-with-visual-studio-part-1/ Check out the other solution for 2013  http://www.ilikesharepoint.de/2013/11/sharepoint-create-custom-list-forms-with-visual-studio-part-1/ Walkthrough: Create custom SharePoint 2010 list form for deployment in a Visual Studio 2010 project (This is part 1 of 2. See link below.) Today I want to show you how to create a custom list form for deployment within a custom list template developed in Visual Studio 2010. Download or update or modify my demo code on Codeplex.com: http://spcustomlistformdemo.codeplex.com/ For me I was difficult to figure out this way. I could not find a good documentation about this topic so I’ll write ist – If you found another description please post a link in the comments