I have one site collection and there is one subsite having approx. 60GB and would like to move this to the new site collection.
Can any one suggest me the best approach and How to move it to seperate site collection?
Regards,
Kumar
I'm redesigning a page for my team's Sharepoint site. However, I am not able to check out the page for some reason. I have Full Control permissions for the site and thought that would be enough, but that does not seem to be true.
Normally the Check Out button is right next to the Edit Page button, but in this case it is missing. What permissions should I request so that I can check out the page and check it back in when I am done with my changes?
I am using Sharepoint Server 2013. Thanks in advance for any help.
Hi,
We have SharePoint 2010 sites that are migrated to SharePoint Online environment and these both are in different domains. Some of these 2010 sites have InfoPath form libraries configured to be opened in InfoPath Filler. Post migration, while most users are able to connect to site with Filler (InfoPath Filler 2013) when they open an item, some users are getting below error message. we checked the Network Adapter Setting (including RegEdit settings for EnableActiveProbing) and they are fine. We also checked the issue with other Office (Office 2016) products and they work fine.
We are unable to connect right now. Please check your network and try again later.
Please help us in resolving the issue
Thanks,
M. Gubendra Raj
Hi All,
I need to read the files from SharePoint folder (not from the list) and load that into Data Base.
If there is a workaround we can download those files into local machine using C#.
Thanks
Pankaj
SharePoint 2013 on-premises fully patched on Server 2008 R2
Three different users with Office 2016 (1807 10325.20082) on Windows 10 1709
When users log into SharePoint through IE, Edge, or Chrome, they go to a document library, click on a Word document, Word starts to open, but just spins and they never get a login prompt to open the document. Download the Word document and open
it locally, no issue. Open SharePoint library in Explorer and open the document, no issue. It is only Word documents though the SharePoint site; PowerPoint, Excel, etc are just fine. This happens on domain and non-domain joined machines either on the same
network or outside the office.
Dear Team,
In SharePoint 2013 could you please advice how to download files from Document Library par selected view OR selected Item.
If I open the document library in explorer from SharePoint ribbion it will take all the files from document library however i need to download only my selected files. Please advice
Is it possible to migrate WebLogic Application to SharePoint Online?
I have created asharepoint page and added a number of promoted links, however when I view the page in chrome where I have the grammarly extension added the promoted links spin around the grammarly logo in the top left of the screen. If I uninstalled the grammerly ext, the links are displayed but when hovering over the links a tooltip is displayed saying ' protected by grammarly'.
How to I stop the spinning of the links while the Grammarly ext is installed?
Anupam soni
Hi,
Can we migrate document libraries from sharepoint on prem to onedrive using Sharepoint migration tool, where the condition is to migrate content before a mentioned specific date.
I am currently using sharepoint services 3.0. I am wanting to go to sharepoint foundations 2013. Is there a way to migrate everything from sharepoint services 3.0 to sharepoint foundations 2013? Any suggestions would be helpful.
Thanks
Gerald
Hi Folks Advance Thanks,
Currently we are using TFS-2013 update 5 and integrated with SharePoint 2013.We are planing to upgrade TFS 2013 to TFS 2018.
I am worrying about SP2013, which it is not supported in TFS 2018.Please recommend what i have to do for using SP2013 with TFS2018.
Please provide step by steps to do.
Hi, getting the following event id 1.
The backing-file for the real-time session "WSSUSAGESESSION15" has reached its maximum size. As a result, new events will not be logged to this session until space becomes available. This error is often caused by starting a trace session in real-time mode without having any real-time consumers.
Does someone have an explanation on what it is and how to stop it?
Thank you
I have a Sharepoint list that tracks the progress of all of our jobs (Job Track). I then have a document set which holds all the documents associated with the job (Job Docs). The Job# is the common denominator between the 2. I want to be able to access the Job Docs from the Job Track list by clicking on something. I tried creating a calculated column, but then found out that it no longer supported.
The url to the Job Docs is: https://company.sharepoint.com/JobDocs/[Job #]
The Job Track url is: https://company.sharepoint.com/Jobs/Tracking
Thanks in advance for any help.
Hi
I have a list that contain attachment field. User will attach pdf, and I want it when he attach, directly this attachment sent to an email. I have an event receiver code that will take a ready attachment from a site and will send it to the email. It should take the attachment from sharepoint list and send it to an email. How should I do it? please tell me.
base.ItemUpdated(properties);
SPListItemlistItem = properties.ListItem;
StringOS = properties.AfterProperties["OrderStatus"].ToString();
StringEmail = listItem["EmailAddress"].ToString();
//Get the Sharepoint SMTP information from the SPAdministrationWebApplication
stringsmtpServer = SPAdministrationWebApplication.Local.OutboundMailServiceInstance.Server.Address;
stringsmtpFrom = SPAdministrationWebApplication.Local.OutboundMailSenderAddress;
//Create the mail message and supply it with from and to info
//****it will be change****
MailMessagemailMessage = newMailMessage(smtpFrom,Email);
if(OS == "completed")
{
//Set the subject and body of the message
mailMessage.Subject =" ";
mailMessage.IsBodyHtml =true;
mailMessage.Body ="Your order is ready, come and take it";
mailMessage.To.Add(newMailAddress(Email));
mailMessage.From =newMailAddress(smtpFrom);
if(listItem.Attachments.Count != 0)
{
}
//Download the content of the file with a WebClient
WebClientwebClient = newWebClient();
//Supply the WebClient with the network credentials of our user
webClient.Credentials =CredentialCache.DefaultNetworkCredentials;
//Download the byte array of the file
byte[] data = webClient.DownloadData("http://store1.up-00.com/2017-08/150357134445511.png");
//Dump the byte array in a memory stream because
//we can write it to our attachment
MemoryStreammemoryStreamOfFile = newMemoryStream(data);
//Add the attachment
mailMessage.Attachments.Add(newSystem.Net.Mail.Attachment(memoryStreamOfFile,"LPO","Image/png"));
//Create the SMTP client object and send the message
SmtpClientsmtpClient = newSmtpClient(smtpServer);
smtpClient.Send(mailMessage);
Here's the case: Using SharePoint 2013 with no 3rd party add-ons (not allowed at my org). I made a new custom list form with 3 forms. Columns use OOTB column validation (meaning, required fields validation) . OOTB validation is firing correctly, however, 2 of the 3 forms have a problem that the OOTB red font validation message does not display "You must specify a value for this required field". Also,2 of the 3 forms does not display the red asterisk that indicates a required field. I am attaching screen shot with "inspect element" results of a required column that DOES display the OOTB validation message versus another required column that DOES NOT display (but should).
Not sure if this matters, the one form (of the 3) that has validation messages working properly uses "parent" of "item". The other 2 forms that do not display the validation messages have same "parent" as "child". If this is the root cause, it sounds like bad news for me since the parent value cannot be edited. And if it is the root cause, I don't understand why that impacts the validation message.
SharePoint 2013. We noticed that Person A checked out a bunch of documents and made them obsolete. However, Person B can see them, but Person A cannot any longer. It is not a View issue, they both use the same one (they don't have permissions to change the View). It does not appear to be permissions related, in fact Person A has more permissions than Person B. I've found a bunch a articles that talk about the reverse of this issue (only the person who checks out a documents can see it). Please let me know if you've run into this.
Jason