500 error on /umbraco/backoffice/UmbracoApi/UpdateCheck/GetCheck
Hey, initially had a clean install of 7.0.2, recently upgraded to 7.0.3 and have now been noticing the following 500 error everytime you refresh the page, not cool.
Using Azure websites & Azure DB.
Thing is even though it is complaining about IO - not enough space, there is enough space on the server and I can upload media to the website just fine... so yeah...
I have been doing some custom implementations of RenderMvcController and IContentFinder but that all seems to work fine and don't believe should affect this.
Full response / stack trace below.
)]}', {"Message":"An error has occurred.","ExceptionMessage":"System.Web.Services.Protocols.SoapException: Server was unable to process request. ---> System.IO.IOException: There is not enough space on the disk.\n\n at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)\n at System.IO.FileStream.WriteCore(Byte[] buffer, Int32 offset, Int32 count)\n at System.IO.FileStream.FlushWrite(Boolean calledFromFinalizer)\n at System.IO.FileStream.Dispose(Boolean disposing)\n at System.IO.Stream.Close()\n at System.IO.StreamWriter.Dispose(Boolean disposing)\n at System.IO.TextWriter.Dispose()\n at Microsoft.CSharp.CSharpCodeGenerator.FromSourceBatch(CompilerParameters options, String[] sources)\n at Microsoft.CSharp.CSharpCodeGenerator.System.CodeDom.Compiler.ICodeCompiler.CompileAssemblyFromSourceBatch(CompilerParameters options, String[] sources)\n at System.Xml.Serialization.Compiler.Compile(Assembly parent, String ns, XmlSerializerCompilerParameters xmlParameters, Evidence evidence)\n at System.Xml.Serialization.TempAssembly.GenerateAssembly(XmlMapping[] xmlMappings, Type[] types, String defaultNamespace, Evidence evidence, XmlSerializerCompilerParameters parameters, Assembly assembly, Hashtable assemblies)\n at System.Xml.Serialization.TempAssembly..ctor(XmlMapping[] xmlMappings, Type[] types, String defaultNamespace, String location, Evidence evidence)\n at System.Xml.Serialization.XmlSerializer.FromMappings(XmlMapping[] mappings, Type type)\n at System.Web.Services.Protocols.SoapServerType..ctor(Type type, WebServiceProtocols protocolsSupported)\n at System.Web.Services.Protocols.SoapServerProtocol.Initialize()\n at System.Web.Services.Protocols.ServerProtocolFactory.Create(Type type, HttpContext context, HttpRequest request, HttpResponse response, Boolean& abortProcessing)\n --- End of inner exception stack trace ---","ExceptionType":"System.Web.Services.Protocols.SoapException","StackTrace":" at System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClientMessage message, WebResponse response, Stream responseStream, Boolean asyncCall)\r\n at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters)\r\n at umbraco.presentation.org.umbraco.update.CheckForUpgrade.CheckUpgrade(Int32 versionMajor, Int32 versionMinor, Int32 versionPatch, String versionComment)\r\n at Umbraco.Web.Editors.UpdateCheckController.GetCheck()\r\n at lambda_method(Closure , Object , Object[] )\r\n at System.Web.Http.Controllers.ReflectedHttpActionDescriptor.ActionExecutor.<>c__DisplayClass13.<GetExecutor>b__c(Object instance, Object[] methodParameters)\r\n at System.Web.Http.Controllers.ReflectedHttpActionDescriptor.ActionExecutor.Execute(Object instance, Object[] arguments)\r\n at System.Threading.Tasks.TaskHelpers.RunSynchronously[TResult](Func`1 func, CancellationToken cancellationToken)"}
Hi, im new around here and got the exact same message today when i opened my project.
When going in to admin umbraco try to find an update for the cms. As you can see on the bottom of the img, the problem seem to be on the umbraco update server.
You can add this to the appSettings in web.config to prevent the message to appear this also disable the posibitlity to update umbraco through the admin panel.
Two local Umbraco 7.2.6 installation has this problem.
System.Web.Services.Protocols.SoapException: Server was unable to process request. ---> System.Data.SqlClient.SqlException: Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding. at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection) at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning() at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj) at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString) at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async) at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, DbAsyncResult result) at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(DbAsyncResult result, String methodName, Boolean sendToPipe) at System.Data.SqlClient.SqlCommand.ExecuteNonQuery() at umbracoUpgradeChecker.BusinessLogic.Logger.Log(String server, Int32 major, Int32 minor, Int32 patch, String comment) in D:\Dev\UpgradeChecker\umbracoUpgradeChecker\BusinessLogic\Logger.cs:line 31 at umbracoUpgradeChecker.CheckForUpgrade.CheckUpgrade(Int32 versionMajor, Int32 versionMinor, Int32 versionPatch, String versionComment) in D:\Dev\UpgradeChecker\umbracoUpgradeChecker\CheckForUpgrade.asmx.cs:line 52 --- End of inner exception stack trace ---
STACKTRACE:
at
System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClientMessage
message, WebResponse response, Stream responseStream, Boolean
asyncCall) at
System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String
methodName, Object[] parameters) at
Umbraco.Web.org.umbraco.update.CheckForUpgrade.CheckUpgrade(Int32
versionMajor, Int32 versionMinor, Int32 versionPatch, String
versionComment) at
Umbraco.Web.Editors.UpdateCheckController.GetCheck() at
lambda_method(Closure , Object , Object[] ) at
System.Web.Http.Controllers.ReflectedHttpActionDescriptor.ActionExecutor.<>cDisplayClass13.c(Object
instance, Object[] methodParameters) at
System.Web.Http.Controllers.ReflectedHttpActionDescriptor.ActionExecutor.Execute(Object
instance, Object[] arguments) at
System.Threading.Tasks.TaskHelpers.RunSynchronously[TResult](Func`1
func, CancellationToken cancellationToken)
500 error on /umbraco/backoffice/UmbracoApi/UpdateCheck/GetCheck
Hey, initially had a clean install of 7.0.2, recently upgraded to 7.0.3 and have now been noticing the following 500 error everytime you refresh the page, not cool.
Using Azure websites & Azure DB.
Thing is even though it is complaining about IO - not enough space, there is enough space on the server and I can upload media to the website just fine... so yeah...
I have been doing some custom implementations of RenderMvcController and IContentFinder but that all seems to work fine and don't believe should affect this.
Full response / stack trace below.
Hi, im new around here and got the exact same message today when i opened my project.
When going in to admin umbraco try to find an update for the cms. As you can see on the bottom of the img, the problem seem to be on the umbraco update server.
You can add this to the appSettings in web.config to prevent the message to appear this also disable the posibitlity to update umbraco through the admin panel.
<add key="umbracoVersionCheckPeriod" value="0"/>
Sorry about that, the server that runs the update checker did indeed have a full disk, this is now fixed!
Thanks for that!
Not exactly the same error, but i get a time-out when the following api is called:
/umbraco/backoffice/UmbracoApi/UpdateCheck/GetCheck
Too much installation? ;)
Two local Umbraco 7.2.6 installation has this problem.
is working on a reply...