appharbor

Failed to find or load the registered .Net Framework Data Provider

守給你的承諾、 提交于 2019-12-10 14:33:23
问题 I got the following error: "Failed to find or load the registered .Net Framework Data Provider." It only occur in AppHarbor server, not my local I use .Net mvc4 and mysql I have added MySql.Data, MySql.Data.Entity, MySql.Web to reference and set Copy Local = true. I also push bin folder to AppHarbor This is my web.config: <?xml version="1.0" encoding="utf-8"?> <configuration> <configSections> <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection,

Why does AppHarbor + RequireHttpsAttribute equal frowny-face :(

和自甴很熟 提交于 2019-12-10 12:44:34
问题 First deployment to AppHarbor today. After some initial work getting it to build, I successfully deployed an MVC3 app. There is a problem with using the RequireHttpsAttribute though. I noticed at first that http pages were working fine, but https pages were getting the error that the web page has a redirect loop. I have been meaning to require https for the entire app, so I went and added a global RequireHttpsAttribute filter in global.asax. Now every single page is getting the redirect loop

Appharbor fails to publish asp.net mvc 4 application

拟墨画扇 提交于 2019-12-10 10:16:40
问题 Trying to launch my project on appharbor and it fails with this: "D:\temp\cijsrn4n.1kq\input\TinyBlogMvc4.sln" (default target) (1) -> "D:\temp\cijsrn4n.1kq\input\TinyBlogMvc4\TinyBlogMvc4.csproj" (default target) (2) -> (_CopyWebApplicationLegacy target) -> C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v10.0\WebApplica tions\Microsoft.WebApplication.targets(178,5): error MSB3021: Unable to copy file "obj\Debug\build.force" to "D:\temp\cijsrn4n. 1kq\output_PublishedWebsites

Shared hosting providers supporting RavenDB [closed]

折月煮酒 提交于 2019-12-10 01:41:56
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . I setup an AppHarbor application only to find out that it does not support embedded RavenDB. It looks like it may be coming soon to

Ninject crashes on application start on appharbor

旧巷老猫 提交于 2019-12-09 05:17:11
问题 I am using Ninject on my MVC 3 project deployed on appharbor. I noticed that I get an exception when the application is started, and it looks like something inside Ninject is the cause, but I cannot find any answers out there - so please help me :) Will try to add the complete exception here: Server Error in '/' Application. Object reference not set to an instance of an object. Description: An unhandled exception occurred during the execution of the current web request. Please review the

App.config transformation for appharbor background workers

只谈情不闲聊 提交于 2019-12-08 06:35:45
问题 I would like to use app.config transformation as it is done for web.config on AppHarbor background workers. I tried the solution proposed in a previous question but it doesn't seem to work. Is this possible? Thanks 回答1: AppHarbor actually already applies transforms before backgroundworkers are deployed, but the problem is that the file names no longer match up. So if we're transforming App.config, we look for a transformation called App.Release.config. After the build however, the file name

AppHarbor one step build and how to deploy my database [closed]

拈花ヽ惹草 提交于 2019-12-07 15:08:52
问题 It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 6 years ago . I finally got to the point where my solution does everything that's needed in it's build step: Download NuGet packages. Deploy the database (only if it's not there yet). Build the solution. Run any upgrade

Does appharbor always build solution using 'Release' build config?

两盒软妹~` 提交于 2019-12-07 04:59:06
问题 Does appharbor always build solution using 'Release' build config ? Can I make appharbor to build my apps using certain configuration, e.g. 'Release-for-appharbor' ? 回答1: AppHarbor always builds your code in Release configuration. You can find additional resources on how AppHarbor recommends you manage environments. We'd love to have your suggestions on how to improve this, you can add feedback on the feedback forum. 回答2: To execute the build process locally in the same fashion as AppHarbor

How do i allow my users to use custom domains on AppHarbor?

主宰稳场 提交于 2019-12-06 09:55:47
Free users will get a url like user1.myapp.com The paid ones will be able to point their domains to my app. And my app will serve specific content based on the domain name. Is this possible with AppHarbor? Is yes how? Troels Thomsen Yes, it is possible to use custom hostnames on AppHarbor. If you go to the list of your applications on AppHarbor and click the application, you can click "Hostnames" in the navigation shown left. When you add a hostname there will be instructions on how you need to configure the DNS. The DNS can be configured in two ways: You can use an A record which will point

AppHarbor one step build and how to deploy my database [closed]

ぐ巨炮叔叔 提交于 2019-12-05 21:19:20
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center . Closed 6 years ago . I finally got to the point where my solution does everything that's needed in it's build step: Download NuGet packages. Deploy the database (only if it's not there yet). Build the solution. Run any upgrade scripts (just once, the database keeps track of these). Run unit tests. Succeed. This works all kinds of