@ismcagdas
Yeah, I had found the _PayPal.js file, I just couldn't figure out where _PayPal.min.js comes from, because I had no matching min file in my project, and it wasn't clear if it was being minified automatically, as it wasn't referenced in the bundle config.
Since @mdonogma didn't post the unminified code, I couldn't verify that it was correct / incorrect, and thus rule out the possibility of an error occurring during minification.
Can you show the entire controller? That's just a single action, and you don't include the verb attributes.
Azure blob storage is fine.
In my personal opinion, AWS is better than azure. It is much more user friendly, their APIs are more clearly documented and have a more natural feeling architecture.
But Azure is absolutely fine if you are comfortable with it. They are really quite equivalent services.
What issues are you having with azure compatibility? We had no problems hosting our application in Azure, and have taken advantage of several other Azure services, including SQL Azure, Azure Service Bus, and Blob storage.
You should always use an external file service for apps hosted in azure (and for apps in general, in my opinion.)
Files stored locally on an azure website are not permanent. Redeploying or scaling events that rebuild the VM hosting your app will wipe out existing files (or the new VM could be on a completely different physical machine to begin with.)
<a class="postlink" href="https://stackoverflow.com/questions/26365590/avoid-deleting-files-on-azure-cloud-service-publish">https://stackoverflow.com/questions/263 ... ce-publish</a>
You didn't post your controller code, but I suspect what's happening is that your definition for your get controller does not take a parentId, and your post controller does expect a parentId.
When the parentId is null, then web api tries to resolve to the get action, because it has the closest matching parameters.
You should be able to either make the parameter optional in the post controller, or force it to be included with a null value in your javascript service.
The error you posted doesn't appear to have anything to do with your database.
It looks like you are sending a 'get' request to a web api method that's defined as a 'post' method.
<cite>ismcagdas: </cite> Hi @AndrewT,
This solution is offered by community, maybe they can provide a sample for core version as well. Have you asked it to <a class="postlink" href="https://github.com/princeppy">https://github.com/princeppy</a> ?
Thanks.
Given that you are releasing major changes almost monthly to the platform, I think it would be really beneficial to your users to provide a means to upgrade via nuget.
I know this is possible, even with content pages, as Umbraco provides this feature.
I also know it is a big undertaking, but I think for long term growth of Zero, it would be a strong investment for your company, especially since most of the complaints about the framework are in regards to the upgrade process.
This is probably a silly question, but did you enable the google+ api when you set up your google account? (it is disabled by default) This is the thing that's caused me to experience logininfo being null.
Version 4.5 was released last week, and it upgrades the framework to core 2.0.
4.5.1 Isn't compatible with .net core 1.1... it's a .net core 2.0 project.