Reputation:
I use a list in sharepoint. sometimes when i try to insert or edit a list item, sharepoint give this error in red color:
sharepoint the server was unable to save the form at this time. please try again
When i restart the iis, the error will gone but i can not restart iis repeatedly. How can i resolve this error.
Upvotes: 1
Views: 23115
Reputation: 822
In case of you got “The server was unable to save the form at this time. Please try again.” for all users.
In case of you got “The server was unable to save the form at this time. Please try again.” for a specific user.
For more details, please check The server was unable to save the form at this time. Please try again in SharePoint 2013
Upvotes: 1
Reputation: 1
There was one script running on server, which was consuming lots of memory. Killed it and nailed it!
Clearly RAM issue.
Upvotes: 0
Reputation: 195
This issue can also occur with low server memory. So just close the unwanted applications running to clear out the memory and try.
see the link for details: http://www.c-sharpcorner.com/blogs/sharepoint-2013-error-the-server-was-unable-to-save-the-form-at-this-time-please-try-again
Upvotes: 0
Reputation: 1
I had to remove the following line from the ServiceModel in web.config in order for this error to disappear:
multipleSiteBindingsEnabled="true"
Originally I applied this one to fix another error as suggested in this article: WCF service startup error "This collection already contains an address with scheme http"
Upvotes: 0
Reputation: 187
Please follow the below provided solutions one-by-one In order and check to see the issue resolved. Solution1. Do IISRESET on SharePoint Servers Solution2. Restart all the SharePoint Servers Solution3. Enable anonymous authentication for the website in IIS. Solution4. Restart the SharePoint Search Host Controller in services.msc Solution5. Issue with the permission of user, could be The user doesn't have access to the site, but has access to the library.
If still the issue is not resolved by the above steps. Please do the below.
A. Open IIS Manager on SharePoint server and do the following steps:
a. Right Click on “Web Application” where you are getting error.
b. Explore the Web Application.
c. Open Web.config file.
c. Search for serviceHostingEnvironment under system.serviceModel
d. modify the entry as follows:
.
e. Save the Web.config
f. Reset IIS.
- See more at: http://expertsharepoint.blogspot.in/2014/07/the-server-was-unable-to-save-form-at.html#sthash.a7QLBqW7.dpuf
Upvotes: 5
Reputation: 11
try to save after restarting the timer job service and resetting IIS server:
services.msc
on the SharePoint server.IISRESET
hope it helps.
Upvotes: 1
Reputation:
It sounds that this is because off low memory. pay attention that the minimum requirment for sharepoint is 16G and if sql server runs on the same server, you will need more than 16G ram. Add your memory and chack again.
Upvotes: 1