આર્કાઇવ્ઝ

શેરપોઈન્ટ 2010 & ઓફિસ 2010 લોન્ચ

માઈક્રોસોફ્ટ સત્તાવાર રીતે શેરપોઈન્ટ માટે લોન્ચ તારીખ જાહેર 2010 & ઓફિસ 2010 મે 12 પર 11 પોસ્ટેડ EST.

અહીં ઘટનાઓ માટે નોંધણી: http://sharepoint.microsoft.com/businessproductivity/proof/pages/2010-launch-events.aspx

શેરપોઈન્ટ 2007 Config LDF File Grown up like Beast

Today my server started throwing low disk space error in C drive. I had more than 60 GB free space in my drive, No clue what happened. Then I started drilling into my folders to find the issue.

છેલ્લે, I found the SharePoint_Config_Log file size is 52 જીબી. :-O

ઉકેલ:

Right Click the Database

Select Tasks -> Shrink -> Files

Select Release Unused Space and click OK.

If you still couldn’t get much space.

Shrink the log file using script.

USE SharePoint_Config
GO
DBCC SHRINKFILE (SharePoint_Config_Log, 50)
GO

આ ફોર્મ પ્રકાશિત કરો અસમર્થ બ્રાઉઝર સક્ષમ તરીકે

Problem:

While publishing InfoPath Browser Enabled form in SharePoint Site, It shows the warning message “This form template is browser-compatible, but it cannot be browser-enabled on the selected site.”

ઉકેલ:

Make sure “Enterprise Site Collection Feature” is enabled.

બ્રાઉઝર શેરપોઈન્ટ અનેબલ્ડ તરીકે ઈન્ફોપાથ ફોર્મ પ્રકાશિત કરો અસમર્થ 2010 સાઇટ

I tried to publish the InfoPath form to SharePoint 2010 as browser enabled. But it had shown the following error while publishing.

Problem:
This form template is browser-compatible, but it cannot be browser-enabled on the selected site

ઉકેલ:

State Service need to be enabled in Farm. State Service in SharePoint 2010 is used to store the temporary data in HTTP requests on SQL. Enable state Service in Central Admin using Farm Configuration wizard.

યાદી માં વપરાશકર્તા / જૂથ પરવાનગી શોધો કેવી રીતે

ચોક્કસ યાદીમાં વપરાશકર્તા / જૂથ પરવાનગી ચકાસવા માટે,

ક્લિક કરો “યાદી” માં “યાદી સાધનો” રિબન હેઠળ

હવે પસંદ કરો “યાદી પરવાનગીઓ”

પસંદ તપાસ પરવાનગી.

વપરાશકર્તા નામ અથવા જૂથ નામ દાખલ કરો અને ક્લિક કરો “હવે તપાસો”, તમે ચોક્કસ વપરાશકર્તા / જૂથ માટે પરવાનગી યાદી જોઈ શકો છો. એ જ લક્ષણ પણ આઇટમ સ્તરે વાપરી શકાય છે.

શેરપોઈન્ટ માટે પીડીએફ પૂર્ણ લખાણ શોધો રૂપરેખાંકન 2007 x64

  • Download the Filter for x64 from adobe અહીં, if you are using 32 bit it will be installed by default from your adobe installation.

  • Update default value of the following two registry entries with “{E8978DA6-047F-4E3D-9C78-CDBE46041603}”
    • HKEY_LOCAL_MACHINESOFTWAREMicrosoftOffice server12.0SearchSetupContentIndexCommonFiltersExtension.pdf
      {E8978DA6-047F-4E3D-9C78-CDBE46041603}

    • KEY_LOCAL_MACHINESOFTWAREMicrosoftShared ToolsWeb Server Extensions12.0SearchSetupContentIndexCommonFiltersExtension.pdf
      {E8978DA6-047F-4E3D-9C78-CDBE46041603}

  • ઓપન સેન્ટ્રલ એડમિનિસ્ટ્રેશન
    Go to SharedServices
    Click Search Settings
    Select “File types”
    Create new entry with the extension as “pdf”

  • પર જાઓ “Drive:Program FilesCommon FilesMicrosoft SharedWeb server extensions12TemplateImages”
    Place the adobe pdf icon image, you can download it from adobe site.
  • પર જાઓ “Drive:Program FilesCommon FilesMicrosoft SharedWeb server extensions12TemplateXml”
    Open the Docicon.xml
    Add new entry and replace with the icon image filename “<Mapping Key=”pdf” Value=”filename.gif”/>”

  • Finally update the environment variable Path with “adobe installation path in drive”
  • Restart the search service

શેરપોઈન્ટ માં ક્લાઈન્ટ ઓબ્જેક્ટ મોડેલ 2010 - ભાગ 1

શેરપોઈન્ટ માં ક્લાઈન્ટ ઓબ્જેક્ટ મોડેલ 2010 વિકાસકર્તાઓ એક સ્વપ્ન છે. It enables developers to
access the SharePoint data from client, આ કોડ સર્વર પર જમાવટ કરી જરૂર નથી.

ક્લાઈન્ટ ઓબ્જેક્ટ મોડેલ નીચેની ત્રણ રીતે વાપરી શકાય છે.

  • .Net CLR
  • Silverlight Object Model
  • JavaScript

.નેટ CLR ઉદાહરણ:

Create the context to the SharePoint site. No traffic/requests will be made to the server until you call the ExecuteQuery()


try

Source Code

{


ClientContext ctx = નવા
ClientContext(“HTTP://સ્થાનિક યજમાન”);


Web site = ctx.Web;

ctx.Load(site);

ctx.ExecuteQuery();

site.Title = “Update from Client Object Model – Win App”;

site.Update();

ctx.ExecuteQuery();


MessageBox.Show(“Update Succeeded”);

}


કેચ (અપવાદ ex)

{


MessageBox.Show(“Update Failed “ + ex.ToString());

}

Cannot open database requested by the login the login failed

I got into the below issue, when I try to access the site collection search scopes.

Cannot open database “Uday_SharePoint_SSP_Content” requested by the login. The login failed.
Login failed for user ‘UdayUday.Ethirajulu$’. at Microsoft.SharePoint.Portal.Search.Admin.Pages.SearchAdminPageBase.ErrorHandler(Object sender, EventArgs ઈ)
at System.Web.UI.TemplateControl.OnError(EventArgs ઈ)
at System.Web.UI.Page.HandleError(અપવાદ ઈ)
at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
at System.Web.UI.Page.ProcessRequest()
at System.Web.UI.Page.ProcessRequestWithNoAssert(HttpContext context)
at System.Web.UI.Page.ProcessRequest(HttpContext context)
at ASP._layouts_viewscopes_aspx.ProcessRequest(HttpContext context) in c:\WINDOWSMicrosoft.NETFrameworkv2.0.50727Temporary ASP.NET Filesroot889c1c0cc362774fApp_Web_viewscopes.aspx.2a428413.5ohducw0.0.cs:line 0 at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
Troubleshoot issues with Windows SharePoint Services.

ઠરાવ:

Change the application pool identity from “Network Service”.

SQL સર્વર સત્ર ડેટાબેઝનું જોડાણ શબ્દમાળા કનેક્ટ કરવામાં અક્ષમ આ IPartitionResolver પ્રકાર એક ઉદાહરણ દ્વારા પરત કરવામાં આવી હતી

આજે, હું અનામી વપરાશ સાથે સાઇટ સુયોજિત કરવા માટે સત્તાધિકરણ પ્રોવાઇડર્સ સાથે રમી હતી.

અચાનક આ સાઇટ નીચે ભૂલ ફેંકવાની શરૂઆત. હું ડીબી સર્વર પર શું ખોટું છે કોઈ ચાવી હોય, then I restarted the DB Server no luck L

અપવાદ:

અપવાદ પ્રકાર: System.Web.HttpException Exception Message: Unable to connect to SQL Server session database. The connection string (server=’UdaySharepoint’, database=’Uday_Content_DB’) was returned by an instance of the IPartitionResolver type ‘Microsoft.Office.Server.Administration.SqlSessionStateResolver, Microsoft.Office.Server, Version=12.0.0.0, સંસ્કૃતિ = તટસ્થ, PublicKeyToken=71e9bce111e9429c’

ઉકેલ:

It’s pretty simple close all your browsers and clear the browser cache જોહાન

Somehow the session is getting crashed.

Webcast : શેરપોઈન્ટ માં ક્લાઈન્ટ ઓબ્જેક્ટ મોડેલ 2010

હું ડેમો સાથે વેબકાસ્ટ માટે આયોજન છું “શેરપોઈન્ટ 2010 માં ક્લાઈન્ટ ઓબ્જેક્ટ મોડેલ” ફેબ્રુઆરી 9 પર 2010.

Register for the event અહીં