Quantcast
Channel: ActiveTopics
Viewing all 72689 articles
Browse latest View live

Media Section Page Size

$
0
0

Client wants to see more than 10 images per page in the Media UI. Is this set anywhere accessible so I can change it?

Thanks,

Craig


Include field alias in field CSS class?

$
0
0

Hello!

Great plugin--it helped me solve so many issues. I do have a question though:

In the formulateField directive, your template just outputs the fieldtype for the CSS class. This is fine for some general CSS styling. But for more targeted CSS styling, How about also outputting the field alias too? so instead of just

class="formulate__field--text"

It could be something like:

class="formulate__field--text  formulate__field_alias--firstname"

..for a "First Name" text field.

I'm aware there's already a specific field-id attribute outputted, but using that string is not very clean or dependable.

Thanks!

Grid View Editor not found 404

$
0
0

Hi there,

I have a problem with the grid view. A few days ago I created a custom view to render my Image so it gets croped. Now when I open the page in my backoffice I get the error:

Request error: The URL returned a 404 (not found):
views/propertyeditors/grid/editors/Media_square.html

Obviously it does not show any content. On the frontend everything is rendered just fine.

Where can I set the render options for the backoffice view?

enter image description here

First website with Merchello

$
0
0

Hi,

I'm very new to Merchello and would like to use it in an website i'm creating right now.

I've added the Package trough the dashboard and installed the Merchello.Core NuGet package (version 2.6) in Umbraco 7.10.2.

Inside my view I saw I had an helper like:

@CurrentCustomer.Basket().AddItem(Model.MerchProduct, 99);

Model.MerchProduct is my Merchello product picker on my DocumentType.

Do I need to create my own controller for doing that? In the demo project Fasttrack I saw this action wrote down inside the .cshtml file:

@Html.Action("BasketForm", "StoreBasket", new { area = "Merchello" }) 

When I added the logic from The Merchello.Web.Store project (from Github) to my Visual Studio solutiond and try to build it. It said that I allready have the models and controllers (with are inside an Merchello.dll).

Could't find more information inside the documentation about this.

So my question are:

  • Do I need to create my own controllers for posting products and so on?
  • Is there some kind of public action where I can hoop in from my views (posting to)

Could you please point me in the right direction?

Freeshipping coupon ? What if shipping is taxable ?

$
0
0

I really believe that this must be set somewhere. It causes me a lot of problem.

enter image description here

Shipping is taxable. When I enter freeshiping code , it removes the price of the shipping but without tax component ($1,636)

Trial-version removed

$
0
0

Hi i did a trail-version of umbrco cloud at 3 Januari - 2018. Now i would like to convert it to a paid version. But the website seems to be removed, i can't see any projects in my backoffice. Is it possible to get the website back?

Crop Image Dynamically

$
0
0

how to dynamically crop image using image cropper in umbraco ??

Any idea Umbracians?????

Extra parameters when using route hijacking

$
0
0

I have implemented route hijacking by using @inherits UmbracoViewPage[MyModel] in the view and MyModel inherits from RenderModel, everything works fine.

In my controller I have

public override ActionResult Index(RenderModel rm)
{
    var myModel = new MyModel(rm.Content, rm.CurrentCulture);
    ... 
   return CurrentTemplate(myModel);
}

My question is: How do I take another parameter in my Index-method?

I have tested having another method like

   public ActionResult MyIndex(RenderModel rm, int customerId)
    {
        //same as above
    }

(since I have seen such solutions on forums) , but I cant call it from my browser by instead of going to

http://... /mycustomerpage/myindex?customerId=23

Is this just a routing problem or how do I send extra parameters?


2 identical partial views on same view - how can i make one controll to use for the both

$
0
0

Hi

I have a View(template) with 2 partial views, the code is identical. how can i make one controll to use for the both. It's two separate documenttype Multinode Treepicker with different alias. Thanks in advance /C

ContentPicker2 - How to retrive URL/Name of ContentNode

$
0
0

Hey,

first time in a few months that I work on a new site with umbraco and I noticed that in the newer versions of umbraco there are two content picker data types. One of them is marked as obsolete so I wanted to use the new one in the new installation.

With the old content picker I was able to get the contentNode selected with the following code snippet:

var myNode = @Umbraco.Content(@Model.MyContentPicker);

This does not work with the new ContentPicker data type.

I googled a bit and found the new documentation for the new data type: https://our.umbraco.org/documentation/Getting-Started/Backoffice/Property-Editors/Built-in-Property-Editors/Content-Picker2

At the bottom is a example usage:

    IPublishedContent typedContentPicker = Model.Content.GetPropertyValue<IPublishedContent>("featurePicker");

When I try to add this to my template like this:

@inherits Umbraco.Web.Mvc.UmbracoTemplatePage
@{
     Layout = null;
     IPublishedContent myContentNode = @CurrentPage.Content.GetPropertyValue<IPublishedContent>("kontaktverlinkung");
}

An error occurs:

System.Web.HttpParseException (0x80004005): The code block is missing a closing "}" character.  Make sure you have a matching "}" character for all the "{" characters within this block, and that none of the "}" characters are being interpreted as markup.

   at System.Web.WebPages.Razor.RazorBuildProvider.EnsureGeneratedCode()
   at System.Web.WebPages.Razor.RazorBuildProvider.get_CodeCompilerType()
   at System.Web.Compilation.BuildProvider.GetCompilerTypeFromBuildProvider(BuildProvider buildProvider)
   at System.Web.Compilation.BuildProvidersCompiler.ProcessBuildProviders()
   at System.Web.Compilation.BuildProvidersCompiler.PerformBuild()
   at System.Web.Compilation.BuildManager.CompileWebFile(VirtualPath virtualPath)
   at System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate)
   at System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate)
   at System.Web.Compilation.BuildManager.GetVirtualPathObjectFactory(VirtualPath virtualPath, HttpContext context, Boolean allowCrossApp, Boolean throwIfNotFound)
   at System.Web.Compilation.BuildManager.CreateInstanceFromVirtualPath(VirtualPath virtualPath, Type requiredBaseType, HttpContext context, Boolean allowCrossApp)
   at System.Web.WebPages.BuildManagerWrapper.CreateInstanceOfType[T](String virtualPath)
   at System.Web.WebPages.VirtualPathFactoryManager.CreateInstanceOfType[T](String virtualPath)
   at System.Web.WebPages.WebPageBase.CreatePageFromVirtualPath(String virtualPath, HttpContextBase httpContext, Func`2 virtualPathExists, DisplayModeProvider displayModeProvider, IDisplayMode displayMode)
   at System.Web.WebPages.WebPageBase.<>c__DisplayClass3.<RenderPageCore>b__2(TextWriter writer)
   at System.Web.WebPages.WebPageBase.Write(HelperResult result)
   at System.Web.WebPages.WebPageBase.RenderSurrounding(String partialViewName, Action`1 body)
   at System.Web.WebPages.WebPageBase.PopContext()
   at Umbraco.Core.Profiling.ProfilingView.Render(ViewContext viewContext, TextWriter writer)
   at System.Web.Mvc.ViewResultBase.ExecuteResult(ControllerContext context)
   at System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive(IList`1 filters, Int32 filterIndex, ResultExecutingContext preContext, ControllerContext controllerContext, ActionResult actionResult)
   at System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive(IList`1 filters, Int32 filterIndex, ResultExecutingContext preContext, ControllerContext controllerContext, ActionResult actionResult)
   at System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive(IList`1 filters, Int32 filterIndex, ResultExecutingContext preContext, ControllerContext controllerContext, ActionResult actionResult)
   at System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive(IList`1 filters, Int32 filterIndex, ResultExecutingContext preContext, ControllerContext controllerContext, ActionResult actionResult)
   at System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters(ControllerContext controllerContext, IList`1 filters, ActionResult actionResult)
   at System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass21.<BeginInvokeAction>b__1e(IAsyncResult asyncResult)
   at System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction(IAsyncResult asyncResult)
   at System.Web.Mvc.Controller.<BeginExecuteCore>b__1d(IAsyncResult asyncResult, ExecuteCoreState innerState)
   at System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult)
   at System.Web.Mvc.Controller.EndExecuteCore(IAsyncResult asyncResult)
   at System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult)
   at System.Web.Mvc.Controller.EndExecute(IAsyncResult asyncResult)
   at System.Web.Mvc.MvcHandler.<BeginProcessRequest>b__5(IAsyncResult asyncResult, ProcessRequestState innerState)
   at System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncVoid`1.CallEndDelegate(IAsyncResult asyncResult)
   at System.Web.Mvc.MvcHandler.EndProcessRequest(IAsyncResult asyncResult)
   at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
   at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)

Am I missing something?

How often should I upgrade?

$
0
0

It seems like every week there is a new upgrade for Umbraco. With 15 sites in Umbraco, this is getting to be a bit of a task to upgrade all 15 and keep track of anything that is custom built for each site. How often should I upgrade? The sites I have created run fine in their current versions. What would be the rationale to upgrade outside upgrading for the sake of upgrading?

-Lee

OutOfMemoryException

$
0
0

Does anybody here experience the error shown below that starts at Go.... Our site just got a ton of this error. The "Go..." method has some random number after it (i.e. Go564378, Go564478, etc.), that leads me to thinking if our site is being attacked or was hacked. The rest of the stack trace remains exactly the same except for the first line at the "Go..." method. Thoughts?

System.OutOfMemoryException:
   at Go564378 (System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)
   at System.Text.RegularExpressions.CompiledRegexRunner.Go (System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)
   at System.Text.RegularExpressions.RegexRunner.Scan (System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)
   at System.Text.RegularExpressions.Regex.Run (System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)
   at System.Text.RegularExpressions.Regex.IsMatch (System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)
   at System.Text.RegularExpressions.Regex.IsMatch (System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)
   at Umbraco.Core.Persistence.Database.AddSelectClause (Umbraco.Core, Version=1.0.6634.25789, Culture=neutral, PublicKeyToken=null)
   at Umbraco.Core.Persistence.Database+<Query>d__74`1.MoveNext (Umbraco.Core, Version=1.0.6634.25789, Culture=neutral, PublicKeyToken=null)
   at System.Collections.Generic.List`1..ctor (mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)
   at System.Linq.Enumerable.ToList (System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089)
   at SEOChecker.Core.Repository.Umbraco.UmbracoDomainRepository.GetRootNodes (SEOChecker.Core, Version=1.10.1.0, Culture=neutral, PublicKeyToken=null)
   at SEOChecker.Core.Repository.Umbraco.UmbracoDomainRepository.GetDomainNodes (SEOChecker.Core, Version=1.10.1.0, Culture=neutral, PublicKeyToken=null)
   at SEOChecker.Core.Repository.Umbraco.UmbracoDomainRepository.GetRootNodesForDomain (SEOChecker.Core, Version=1.10.1.0, Culture=neutral, PublicKeyToken=null)
   at SEOChecker.Core.Repository.Umbraco.UmbracoDomainRepository.GetRootNodeForDomain (SEOChecker.Core, Version=1.10.1.0, Culture=neutral, PublicKeyToken=null)
   at SEOChecker.Core.Extensions.HttpContextExtensions.GetNotfoundPageConfig (SEOChecker.Core, Version=1.10.1.0, Culture=neutral, PublicKeyToken=null)
   at SEOChecker.Handlers.NotFoundHandlers.Inbound404Handler.Execute (SEOChecker, Version=1.10.1.0, Culture=neutral, PublicKeyToken=null)
   at Umbraco.Web.Routing.ContentLastChanceFinderByNotFoundHandlers.HandlePageNotFound (umbraco, Version=1.0.6634.25796, Culture=neutral, PublicKeyToken=null)
   at Umbraco.Web.Routing.ContentLastChanceFinderByNotFoundHandlers.TryFindContent (umbraco, Version=1.0.6634.25796, Culture=neutral, PublicKeyToken=null)
   at Umbraco.Web.Routing.PublishedContentRequestEngine.HandlePublishedContent (umbraco, Version=1.0.6634.25796, Culture=neutral, PublicKeyToken=null)
   at Umbraco.Web.Routing.PublishedContentRequestEngine.FindPublishedContentAndTemplate (umbraco, Version=1.0.6634.25796, Culture=neutral, PublicKeyToken=null)
   at Umbraco.Web.Routing.PublishedContentRequestEngine.PrepareRequest (umbraco, Version=1.0.6634.25796, Culture=neutral, PublicKeyToken=null)
   at Umbraco.Web.UmbracoModule.ProcessRequest (umbraco, Version=1.0.6634.25796, Culture=neutral, PublicKeyToken=null)
   at Umbraco.Web.UmbracoModule.<Init>b__12_2 (umbraco, Version=1.0.6634.25796, Culture=neutral, PublicKeyToken=null)
   at System.Web.HttpApplication+SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute (System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a)
   at System.Web.HttpApplication.ExecuteStepImpl (System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a)
   at System.Web.HttpApplication.ExecuteStep (System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a)

Media Picker 'upload' button dead after upgrade from 7.6.4->7.10.2

$
0
0

I have an image field using data type "Media Picker" that uses property editor "(obsolete) Media Picker" and property editor alias is "Umbraco.MediaPicker" (not "Umbraco.MultipleMediaPicker"). I have upgraded from 7.6.4 to 7.10.2 locally and then published to an Azure web app. On the Azure site the 'upload' button is not opening a 'file upload' dialog, it is just a dead click. I see no errors in Chrome Dev Tools. I have incremented ClientDependency id in case old scripts were cached. On the locally upgraded(via NuGet) site the 'Upload' media button works correctly even if I set debug=false so that the CD bundles scripts the same way as the Azure site. I thought maybe I'm missing a controller script but I can't tell.

I see Umbraco.MediaPicker is not even listed on Umb Prop Editors ,it only lists Umbraco.MultipleMediaPicker.

Update: The 'Upload' button is still dead when I create a new doctype property that uses a new data type that uses editor '(Obsolete) Media Picker - Umbraco.MultipleMediaPicker' or 'Media Picker - Umbraco.MediaPicker2

Get Culture from IContent in ContentService_Published method

$
0
0

Hi, I have a multilingual website and I use ContentService_Published method to do some custom logic when I publish a node - I need to do

ExamineManager.Instance.IndexProviderCollection["IndexPrivider"].ReIndexNode(child.ToXml(applicationContext.Services.PackagingService), "content");

I have different searchIndexes for the different languages so I need to know which index to ReIndex. The code that I have so far is:

 public void ContentService_Published(IPublishingStrategy sender, PublishEventArgs<IContent> e)
    {
        var culture = System.Threading.Thread.CurrentThread.CurrentUICulture.Name;
        foreach (var content in e.PublishedEntities)
        {
            if (content.ContentType.Alias == "node")
            {                 
                foreach (var child in content.Descendants().Where(c => c.ContentType.Alias == "subNode"))
                {
                    ExamineManager.Instance.IndexProviderCollection[GetIndexer(culture)].ReIndexNode(child.ToXml(applicationContext.Services.PackagingService), "content");


                }
}

The method GetIndexer() check the culture and returns the respective value. The problem is that var culture = System.Threading.Thread.CurrentThread.CurrentUICulture.Name; is always "en-US" which is (I guess) the culture of the logged in in Umbraco user. Is there a way to get the culture of the item that I am publishing?

Mila

How to show my site in a frame

$
0
0

Hi,

For me to start using a function in Yandex Metrica, i have to make sure that my site is not protected against showing in a frame. How do i go about doing that?

This is what Yandex Metrica told me: Hello, Dale!

As we see, your site is using the protect against showing in a frame (the site returns a header X-Frame-Options: SAMEORIGIN ).

If your site is protected from being shown in an iframe (the server settings use the X-Frame-Optionsheader), the collected data won't be available for viewing. In order to view data about site traffic, you need to add an exception to the server settings for the webvisor.com domain and its subdomains, as well as for your site domain.

Use the regular expression

^https?:\/\/([^\/]+\.)?(yourdomain\.com|webvisor\.com)\/

If you use nginx, add the following exceptions to your configuration:

location / { 
  set $frame_options ''; 
  if ($http_referer !~ '^https?:\/\/([^\/]+\.)?(yourdomain\.com|webvisor\.com)\/') { 
    set $frame_options 'SAMEORIGIN'; 
  } 
  add_header X-Frame-Options $frame_options; ... 
}

where yourdomain.com is the site's domain name. Use your site's domain zone (it may differ from .com).

Thanks, Dale


Cannot Log In to Authorize Upgrade

$
0
0

I'm trying to update an older site from 7.2.1 to 7.10.4 (the latest version when I'm writing this). I'm updated the NuGet package, and the resulting config files seem fine. I'm able to run the site (through IIS), and I am redirected to the Authorize Upgrade page as expected.

But from there I cannot log in. On the page, I get the message Login failed for user xxx@xxx.xxx. Below is what appears in the log. The issue appears to be related to the umbracoUser2UserGroup table which is not in the database. My guess is that the installer would add it, but as I cannot log in, it cannot be added. And so I'm stuck.

Here's what I have checked so far:

  • useLegacyEncoding is true for both UmbracoMembershipProvider and UsersMembershipProvider. Changing it to false does not help.
  • My connection string is valid and the database user has full permissions over the database (it can create/drop tables). I'm using SQL Server.
  • The user record in the umbracoUser table is fine. It is not disabled, neither is userNoConsole set to true.
  • I am able to log in using that user before updating the NuGet package.
  • Umbraco Forms is installed and needs updated, too. It was at version 4.0.0 and has also been updated through NuGet to 7.0.2. At both versions, the Authorize Upgrade Login failed.
  • AppPools have been recycled, the site has been restarted, caches and cookies cleared multiple times.

018-05-03 12:49:07,310 [P19888/D2/T7] WARN Umbraco.Core.Logging.OwinLogger - Event Id: 0, state: Unprotect ticket failed 2018-05-03 12:49:08,036 [P19888/D2/T7] ERROR Umbraco.Core.Persistence.UmbracoDatabase - Exception (191a7832). System.Data.SqlClient.SqlException (0x80131904): Invalid object name 'umbracoUser2UserGroup'. at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action1 wrapCloseInAction) at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose) at System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady) at System.Data.SqlClient.SqlDataReader.TryConsumeMetaData() at System.Data.SqlClient.SqlDataReader.get_MetaData() at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption) at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest) at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry) at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method) at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method) at StackExchange.Profiling.Data.ProfiledDbCommand.ExecuteDbDataReader(CommandBehavior behavior) in c:\Code\github\SamSaffron\MiniProfiler\StackExchange.Profiling\Data\ProfiledDbCommand.cs:line 248 at Umbraco.Core.Persistence.PetaPocoCommandExtensions.<>cDisplayClass50.0() at Umbraco.Core.Persistence.FaultHandling.RetryPolicy.ExecuteAction[TResult](Func1 func) at Umbraco.Core.Persistence.Database.<Query>d__1151.MoveNext() ClientConnectionId:78169af6-6bfb-44b3-9d60-71a802dd7182 Error Number:208,State:1,Class:16 2018-05-03 12:49:10,715 [P19888/D2/T7] ERROR Umbraco.Core.Persistence.UmbracoDatabase - Exception (4e9b097a). System.Data.SqlClient.SqlException (0x80131904): Invalid object name 'umbracoUser2UserGroup'. at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action1 wrapCloseInAction) at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose) at System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady) at System.Data.SqlClient.SqlDataReader.TryConsumeMetaData() at System.Data.SqlClient.SqlDataReader.get_MetaData() at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption) at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest) at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry) at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method) at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method) at StackExchange.Profiling.Data.ProfiledDbCommand.ExecuteDbDataReader(CommandBehavior behavior) in c:\Code\github\SamSaffron\MiniProfiler\StackExchange.Profiling\Data\ProfiledDbCommand.cs:line 248 at Umbraco.Core.Persistence.PetaPocoCommandExtensions.<>cDisplayClass50.0() at Umbraco.Core.Persistence.FaultHandling.RetryPolicy.ExecuteAction[TResult](Func1 func) at Umbraco.Core.Persistence.Database.<Query>d__1151.MoveNext() ClientConnectionId:78169af6-6bfb-44b3-9d60-71a802dd7182 Error Number:208,State:1,Class:16 2018-05-03 12:49:11,051 [P19888/D2/T7] ERROR Umbraco.Core.Persistence.UmbracoDatabase - Exception (55ea20fb). System.Data.SqlClient.SqlException (0x80131904): Invalid object name 'umbracoUser2UserGroup'. at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action1 wrapCloseInAction) at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose) at System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady) at System.Data.SqlClient.SqlDataReader.TryConsumeMetaData() at System.Data.SqlClient.SqlDataReader.get_MetaData() at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption) at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest) at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry) at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method) at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method) at StackExchange.Profiling.Data.ProfiledDbCommand.ExecuteDbDataReader(CommandBehavior behavior) in c:\Code\github\SamSaffron\MiniProfiler\StackExchange.Profiling\Data\ProfiledDbCommand.cs:line 248 at Umbraco.Core.Persistence.PetaPocoCommandExtensions.<>cDisplayClass50.0() at Umbraco.Core.Persistence.FaultHandling.RetryPolicy.ExecuteAction[TResult](Func1 func) at Umbraco.Core.Persistence.Database.<Query>d__1151.MoveNext() ClientConnectionId:78169af6-6bfb-44b3-9d60-71a802dd7182 Error Number:208,State:1,Class:16 2018-05-03 12:49:11,313 [P19888/D2/T7] ERROR Umbraco.Core.Persistence.UmbracoDatabase - Exception (7c74edc0). System.Data.SqlClient.SqlException (0x80131904): Invalid object name 'umbracoUser2UserGroup'. at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action1 wrapCloseInAction) at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose) at System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady) at System.Data.SqlClient.SqlDataReader.TryConsumeMetaData() at System.Data.SqlClient.SqlDataReader.get_MetaData() at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption) at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest) at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry) at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method) at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method) at StackExchange.Profiling.Data.ProfiledDbCommand.ExecuteDbDataReader(CommandBehavior behavior) in c:\Code\github\SamSaffron\MiniProfiler\StackExchange.Profiling\Data\ProfiledDbCommand.cs:line 248 at Umbraco.Core.Persistence.PetaPocoCommandExtensions.<>cDisplayClass50.0() at Umbraco.Core.Persistence.FaultHandling.RetryPolicy.ExecuteAction[TResult](Func1 func) at Umbraco.Core.Persistence.Database.<Query>d__1151.MoveNext() ClientConnectionId:78169af6-6bfb-44b3-9d60-71a802dd7182 Error Number:208,State:1,Class:16 2018-05-03 12:49:11,585 [P19888/D2/T7] ERROR Umbraco.Core.Persistence.UmbracoDatabase - Exception (6a2e1265). System.Data.SqlClient.SqlException (0x80131904): Invalid object name 'umbracoUser2UserGroup'. at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action1 wrapCloseInAction) at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose) at System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady) at System.Data.SqlClient.SqlDataReader.TryConsumeMetaData() at System.Data.SqlClient.SqlDataReader.get_MetaData() at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption) at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest) at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry) at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method) at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method) at StackExchange.Profiling.Data.ProfiledDbCommand.ExecuteDbDataReader(CommandBehavior behavior) in c:\Code\github\SamSaffron\MiniProfiler\StackExchange.Profiling\Data\ProfiledDbCommand.cs:line 248 at Umbraco.Core.Persistence.PetaPocoCommandExtensions.<>cDisplayClass50.0() at Umbraco.Core.Persistence.FaultHandling.RetryPolicy.ExecuteAction[TResult](Func1 func) at Umbraco.Core.Persistence.Database.<Query>d__1151.MoveNext() ClientConnectionId:78169af6-6bfb-44b3-9d60-71a802dd7182 Error Number:208,State:1,Class:16 2018-05-03 12:49:11,856 [P19888/D2/T7] ERROR Umbraco.Core.Persistence.UmbracoDatabase - Exception (e43ddb45). System.Data.SqlClient.SqlException (0x80131904): Invalid object name 'umbracoUser2UserGroup'. at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action1 wrapCloseInAction) at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose) at System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady) at System.Data.SqlClient.SqlDataReader.TryConsumeMetaData() at System.Data.SqlClient.SqlDataReader.get_MetaData() at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption) at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest) at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry) at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method) at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method) at StackExchange.Profiling.Data.ProfiledDbCommand.ExecuteDbDataReader(CommandBehavior behavior) in c:\Code\github\SamSaffron\MiniProfiler\StackExchange.Profiling\Data\ProfiledDbCommand.cs:line 248 at Umbraco.Core.Persistence.PetaPocoCommandExtensions.<>cDisplayClass50.0() at Umbraco.Core.Persistence.FaultHandling.RetryPolicy.ExecuteAction[TResult](Func1 func) at Umbraco.Core.Persistence.Database.<Query>d__1151.MoveNext() ClientConnectionId:78169af6-6bfb-44b3-9d60-71a802dd7182 Error Number:208,State:1,Class:16 2018-05-03 12:49:12,370 [P19888/D2/T7] ERROR Umbraco.Core.Persistence.UmbracoDatabase - Exception (de7ae470). System.Data.SqlClient.SqlException (0x80131904): Invalid object name 'umbracoUser2UserGroup'. at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action1 wrapCloseInAction) at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose) at System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady) at System.Data.SqlClient.SqlDataReader.TryConsumeMetaData() at System.Data.SqlClient.SqlDataReader.get_MetaData() at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption) at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest) at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry) at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method) at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method) at StackExchange.Profiling.Data.ProfiledDbCommand.ExecuteDbDataReader(CommandBehavior behavior) in c:\Code\github\SamSaffron\MiniProfiler\StackExchange.Profiling\Data\ProfiledDbCommand.cs:line 248 at Umbraco.Core.Persistence.PetaPocoCommandExtensions.<>cDisplayClass50.0() at Umbraco.Core.Persistence.FaultHandling.RetryPolicy.ExecuteAction[TResult](Func1 func) at Umbraco.Core.Persistence.Database.<Query>d__1151.MoveNext() ClientConnectionId:78169af6-6bfb-44b3-9d60-71a802dd7182 Error Number:208,State:1,Class:16 2018-05-03 12:49:12,649 [P19888/D2/T7] ERROR Umbraco.Core.Persistence.UmbracoDatabase - Exception (8eed16d2). System.Data.SqlClient.SqlException (0x80131904): Invalid object name 'umbracoUser2UserGroup'. at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action1 wrapCloseInAction) at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose) at System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady) at System.Data.SqlClient.SqlDataReader.TryConsumeMetaData() at System.Data.SqlClient.SqlDataReader.get_MetaData() at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString, Boolean isInternal, Boolean forDescribeParameterEncryption) at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async, Int32 timeout, Task& task, Boolean asyncWrite, Boolean inRetry, SqlDataReader ds, Boolean describeParameterEncryptionRequest) at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, TaskCompletionSource1 completion, Int32 timeout, Task& task, Boolean& usedCache, Boolean asyncWrite, Boolean inRetry) at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method) at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method) at StackExchange.Profiling.Data.ProfiledDbCommand.ExecuteDbDataReader(CommandBehavior behavior) in c:\Code\github\SamSaffron\MiniProfiler\StackExchange.Profiling\Data\ProfiledDbCommand.cs:line 248 at Umbraco.Core.Persistence.PetaPocoCommandExtensions.<>cDisplayClass50.0() at Umbraco.Core.Persistence.FaultHandling.RetryPolicy.ExecuteAction[TResult](Func1 func) at Umbraco.Core.Persistence.Database.<Query>d__1151.MoveNext() ClientConnectionId:78169af6-6bfb-44b3-9d60-71a802dd7182 Error Number:208,State:1,Class:16

Missing Controllers? HTML validation

$
0
0

Hello :)

Please forgive me for this newb question but I'm trying to edit UmbRegisterController and "Handle Register Member" action method as found in the register snippit. Can't seem to find. VS lookup comes up blank. Can anyone shed any light?

Details: umbraco v7.5.1 assembly 1.0.6136.27241 asp.net 4.5.2 VS 2015 Community

Also, one last thing, the html validation for name and username doesn't work, only email and password. I also modified flag to separate email from username. Anyone else experience this? Please note, trying not to upgrade as this version is very stable and great for me :)

Dom

Store user accepted terms

$
0
0

Hi

Have taken over a project that have Merchello installed (version 1.7 is what the Merchello.Core dll say)

We now want to add a "accept terms" checkbox to comply with gdpr. When the order is submitted, I need to store that in the database, and I figure I do that on the customer. I need to store that the user complied, date and a text with the current "terms".

Since I havn't used merchello before I tried to figure out the best way to do this. I'm guessing I should store this in the ExtendedData on the customer, or is there any other way? Will the extended data be displayed in the backend automatically or do I need to change something in the views in backoffice?

401 & 404 error keeps logging the user out of the backoffice

$
0
0

Hi guys - hope you can help me with this issue.

I am getting these 401 & 404 errors on my site running 7.5.8:

enter image description here

enter image description here

I can't trace this to any changes made to the site, and the similar threads I've encountered couldn't help me out.

I contacted the hosting provider thinking that maybe it was a permissions issue, but they said that it was because the app pool reached its memory limit. I tried upgrading our hosting service, but this didn't help either.

I tried running the site locally and the 401 error persisted.

I tried recycling the app pool and the errors persisted.

The logout seems to mostly be triggered when publishing content and especially, when uploading a new media item.

Best regards,

Christian

An item with the same key has already been added.

$
0
0

I have created an Umbraco Website of Version 7.10.1 . I am getting the following error on initial page load and works fine on refresh .

I have also tried to find if any duplicate alias is causing the problem.I was able to run the following query also but it returns null as no duplicates. Please suggest.

SQL Query

SELECT cct.[alias], [contentTypeId], cpt.[alias], count(cpt.[Alias]) FROM [cmsPropertyType] cpt JOIN [cmsContentType] cct on cpt.contentTypeId = cct.nodeId GROUP BY cct.[alias], [contentTypeId], cpt.[alias] HAVING COUNT(cpt.[alias]) > 1

Error Stack trace

[ArgumentException: An item with the same key has already been added.] System.ThrowHelper.ThrowArgumentException(ExceptionResource resource) +52 System.Collections.Generic.Dictionary2.Insert(TKey key, TValue value, Boolean add) +183 Umbraco.Core.Services.IdkMap.Populate(IEnumerable1 pairs, UmbracoObjectTypes umbracoObjectType) +319 Umbraco.Web.PublishedCache.XmlPublishedCache.PublishedContentCache.EnsureIdkMap(UmbracoContext umbracoContext) +294 Umbraco.Web.PublishedCache.XmlPublishedCache.PublishedContentCache.GetById(UmbracoContext umbracoContext, Boolean preview, Guid nodeKey) +40 Umbraco.Web.PublishedCache.ContextualPublishedContentCache.GetById(Boolean preview, Guid contentKey) +71 Umbraco.Web.PublishedContentQuery.TypedContent(Guid id) +158 Umbraco.Web.PublishedContentQueryExtensions.TypedContent(ITypedPublishedContentQuery contentQuery, Udi id) +96 Umbraco.Web.PropertyEditors.ValueConverters.ContentPickerPropertyConverter.ConvertSourceToObject(PublishedPropertyType propertyType, Object source, Boolean preview) +260 Archetype.Models.ArchetypePropertyModel.TryConvertWithPropertyValueConverters(Object value, IEnumerable1 converters) +318 Archetype.Models.ArchetypePropertyModel.GetValue() +139 Archetype.Models.ArchetypeFieldsetModel.GetValue(String propertyAlias) +84 SoilHealthPartnership.ViewHelpers.NewsCard.Create(UmbracoHelper umbraco, ArchetypeFieldsetModel x) in C:\Projects\SoilHealthPartnership\SoilHealthPartnership\ViewHelpers\NewsCard.cs:29 ASP._Page_Views_Home_cshtml.<Execute>b__1(ArchetypeFieldsetModel x) in c:\Projects\SoilHealthPartnership\SoilHealthPartnership\Views\Home.cshtml:19 System.Linq.WhereSelectEnumerableIterator2.MoveNext() +164 System.Collections.Generic.List1.InsertRange(Int32 index, IEnumerable1 collection) +392 System.Collections.Generic.List1.AddRange(IEnumerable1 collection) +15 ASP.PageViewsHomecshtml.Execute() in c:\Projects\SoilHealthPartnership\SoilHealthPartnership\Views\Home.cshtml:19 System.Web.WebPages.WebPageBase.ExecutePageHierarchy() +197 System.Web.Mvc.WebViewPage.ExecutePageHierarchy() +105 System.Web.WebPages.StartPage.RunPage() +17 System.Web.WebPages.StartPage.ExecutePageHierarchy() +64 System.Web.WebPages.WebPageBase.ExecutePageHierarchy(WebPageContext pageContext, TextWriter writer, WebPageRenderingBase startPage) +78 System.Web.Mvc.RazorView.RenderView(ViewContext viewContext, TextWriter writer, Object instance) +256 System.Web.Mvc.BuildManagerCompiledView.Render(ViewContext viewContext, TextWriter writer) +107 Umbraco.Core.Profiling.ProfilingView.Render(ViewContext viewContext, TextWriter writer) +113 System.Web.Mvc.ViewResultBase.ExecuteResult(ControllerContext context) +290 System.Web.Mvc.ControllerActionInvoker.InvokeActionResult(ControllerContext controllerContext, ActionResult actionResult) +13 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive(IList1 filters, Int32 filterIndex, ResultExecutingContext preContext, ControllerContext controllerContext, ActionResult actionResult) +56 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive(IList1 filters, Int32 filterIndex, ResultExecutingContext preContext, ControllerContext controllerContext, ActionResult actionResult) +420 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive(IList1 filters, Int32 filterIndex, ResultExecutingContext preContext, ControllerContext controllerContext, ActionResult actionResult) +420 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultFilterRecursive(IList1 filters, Int32 filterIndex, ResultExecutingContext preContext, ControllerContext controllerContext, ActionResult actionResult) +420 System.Web.Mvc.ControllerActionInvoker.InvokeActionResultWithFilters(ControllerContext controllerContext, IList1 filters, ActionResult actionResult) +52 System.Web.Mvc.Async.<>c__DisplayClass2b.<BeginInvokeAction>b__1c() +173 System.Web.Mvc.Async.<>c__DisplayClass21.<BeginInvokeAction>b__1e(IAsyncResult asyncResult) +100 System.Web.Mvc.Async.WrappedAsyncResult1.CallEndDelegate(IAsyncResult asyncResult) +10 System.Web.Mvc.Async.WrappedAsyncResultBase1.End() +49 System.Web.Mvc.Async.AsyncControllerActionInvoker.EndInvokeAction(IAsyncResult asyncResult) +27 System.Web.Mvc.Controller.<BeginExecuteCore>b__1d(IAsyncResult asyncResult, ExecuteCoreState innerState) +13 System.Web.Mvc.Async.WrappedAsyncVoid1.CallEndDelegate(IAsyncResult asyncResult) +29 System.Web.Mvc.Async.WrappedAsyncResultBase1.End() +49 System.Web.Mvc.Controller.EndExecuteCore(IAsyncResult asyncResult) +36 System.Web.Mvc.Controller.<BeginExecute>b__15(IAsyncResult asyncResult, Controller controller) +12 System.Web.Mvc.Async.WrappedAsyncVoid1.CallEndDelegate(IAsyncResult asyncResult) +22 System.Web.Mvc.Async.WrappedAsyncResultBase1.End() +49 System.Web.Mvc.Controller.EndExecute(IAsyncResult asyncResult) +26 System.Web.Mvc.Controller.System.Web.Mvc.Async.IAsyncController.EndExecute(IAsyncResult asyncResult) +10 System.Web.Mvc.MvcHandler.<BeginProcessRequest>b__5(IAsyncResult asyncResult, ProcessRequestState innerState) +21 System.Web.Mvc.Async.WrappedAsyncVoid1.CallEndDelegate(IAsyncResult asyncResult) +29 System.Web.Mvc.Async.WrappedAsyncResultBase`1.End() +49 System.Web.Mvc.MvcHandler.EndProcessRequest(IAsyncResult asyncResult) +28 System.Web.Mvc.MvcHandler.System.Web.IHttpAsyncHandler.EndProcessRequest(IAsyncResult result) +9 System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +9748665 System.Web.HttpApplication.ExecuteStepImpl(IExecutionStep step) +48 System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +159

Viewing all 72689 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>