Skip to main content

Posts

A very Good Video About SharePoint Desginer

Dear All I hope the below video is really helping you for the SharePoint designer 2013 hidden features Regards 3art Technology Experts http://www.3art.tech

Update sharepoint user email by PS (SharePoint Power Shell Command)

Dear All, If you want to update the sharepoint register user email or any profile property please use the below command 1) Open the SharePoint Power shell command (Run as Administrator) 2) Place the below command and change the parameters  $web = get-spweb "SiteCollection URL" $user = $web.EnsureUser("domain\username") echo $user Set-SPUser -Identity $user -Email "email@yourdomain.com" -Web $web Same like that you can update any profile property if you like  3) Check your sharepoint profile now  if you want to learn more here is the reference URL http://alstechtips.blogspot.com/2015/09/sharepoint-2013-tip-edit-user-profile.html Regards 3art Technology Experts http://www.3art.tech

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

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','passw...

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

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...

SharePoint customer Navigation Control with Term Set

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