Skip to main content

Sharepoint server configuration on live website

Well again another success on new stuff, well this is share point server configuration. Well if you are new in sharepoint then this article really helps you alot

Well first you download the sharepoint from microsoft website, once you get the setup you will just execute it.

Prerequest Installation
1) For installing the sharepoint you must install the min windows 2003 on your machine

2) Check out the active directory because sharepoint check the user right and permission from the active directory (Note if you did not know about active directory then you will search it on google you will easily find the tutorial about the active directory very easily )

3) You need a setup of sharepoint which is easily avaialble on the microsoft website

Well what i assume that you have already configure the windows 2003 and active directory now just execute the setup and then follow the instruction once the setup has done then you will do the following steps

Steps for configuration the website
1) Open the sharepoint central administration panel ( you will access this via Start > Program > Administrative tool > Share point Administrative panel

2) Once you click on it, the administration panel will display in the browser this is a main key section of the sharepoint you will handle all the sharepoint website through this panel

3) Click on the "Application Management" tab

4) Click on the "Create and extended web application"

5) Click on the "Create new web application"

6) Fill up the New IIS WEB name

7) Host Header (Put your website address) like http://www.bestvisualization.com

8) port of the website "better if you set the port to 80" because i have test with this

9) Authentication Select "Negotiate (Kerberos) "

10) Allow Anonymous: true

11) Set the application pool name any thing that you want (For Example: best visualization - 80)

12) Configurable (Put your machine login info) like User name Administarator and Password bestvisualization

13) Reistart IIS Automatically (if this section is disable then restart you IIS manually )

14) Select the windows authentication

15) click on the button ok

16) Wait until the screen will appear

17) Restart your IIS (click on start > run > iisreset /noforce) iisreset /noforce is a command for restarting the IIS

18) create site collection by the given link in the page

19) select the tempalte

20) Again select the administrator name in both section for administration and authentication

21) Click ok

22) Congrate your website will be configure successfully

For allow all visitor you must login in to the sharepoint webiste and then adjust the authentication

I hope this article will help you for setting up the sharepoint on the live server



Regards
3ART Technologies

www.3art.tech

Comments

Popular posts from this blog

Content Query Webpart Template In SharePoint 2013 and add new column in it

Dear All, Here is the easiest way to make add custom column under your content query web part and then you can format it as you want. Step 1:  Open Sharepoint design Step 2:  Open site for sharepoint parent site collection Step 3:  Locate the following folder Style Library > XLS Style Sheets Step 4:  Open "ItemStyle.xsl"  file Add the custom style sheet as you want <xsl:template name="[Your Style Name]" match="Row[@Style='[Your Style Name]']" mode="itemstyle">                                                   <xsl:param name="CurPos" />                                                     <xsl:variable name="SafeLinkUrl">                                                       <xsl:call-template name="OuterTemplate.GetSafeLink">                                                         <xsl:with-param name="UrlColumnName" select="'LinkU

SharePoint: A Complete Guide to Getting and Setting Fields using C#

Original article https://social.technet.microsoft.com/wiki/contents/articles/21801.sharepoint-a-complete-guide-to-getting-and-setting-fields-using-c.aspx Introduction This article demonstrates how to set and get the various SPField types for a SharePoint list using C#. The examples demonstrated set and get fields from an item that belongs to a custom list. The custom list contains a number of fields, and all the fields are named based on the type of field they are. For example, there is a Text field, which has been named, textfield. This is depicted in the following picture:   Applies To The examples demonstrated below are tested with and apply to the following versions of SharePoint: SharePoint 2010 SharePoint 2013 Get the List, and the first SPListItem This is the basic code for getting an item. If the list has at least one item, the first item is retrieved, otherwise a new item is created. var web = SPContext.Current.Site.RootWeb; var list = web.Lists.Try

Updatepanel or Enable Ajax in SharePoint webpart

Dear All It is really giving me a hard to get this techniques if you want to run the update panel in sharepoint 2013 webpart then you need to initialize the script manage by code   protected override void OnInit(EventArgs e)         {             base.OnInit(e);             InitializeControl();             // Register the ScriptManager             ScriptManager scriptManager = ScriptManager.GetCurrent(this.Page);             if (scriptManager == null)             {                 scriptManager = new ScriptManager();                 scriptManager.ID = "ScriptManager1";                 scriptManager.EnablePartialRendering = true;                 Controls.AddAt(0, scriptManager);             }         } In ascx page you need to add the following  <asp:UpdateProgress ID="UpdateProgress1" runat="server">     <ProgressTemplate>         <h1>Your progress value</h1>     </ProgressTemplate> </asp:U