I deployed a web site in AppHarbor which uses a MS SQL database. AppHarbor provides me with a connection string which I entered in settings.txt and it seems to work fine BUT AppHarbor suggests to use the SQLSERVER_CONNECTION_STRING variable instead.

That is because the connection string may change without notice so the only safe way is to use the variable mentioned.

Accessing the configuration variables below should be done programatically, as the values may be updated by the add-on provider without notice.

Is there a way to override the DataConnectionString setting from settings.txt and set the application to use the SQLSERVER_CONNECTION_STRING variable instead? I assume AppHarbor somehow sets those variables as appSettings.

P.S. This is my first application with Orchard, I am not proficient with this CMS.

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

The connection string is set in the ShellSettingsManager class. I'm not sure you can easily replace this dependency from a module, but you could certainly just change the line of code that sets the connections string...

shellSettings.DataConnectionString = value;  //use your config value instead

ShellSettingsManager is an implementation of IShellSettingsManager so you have some flexibility there if you want to just implement your own too.

link|improve this answer
To be honest, I was hoping for a solution that didn't include messing with the source code but I finally followed your suggestion shellSettings.DataConnectionString = ConfigurationManager.AppSettings["SQLSERVER_CONNECTION_STRING"] ?? value; – lalibi Feb 13 at 16:38
ya, sorry, I don't think there is a non-code option. – Brandon Joyce Feb 13 at 17:21
feedback

Deploying orchard to appharbor might not be worth the effort. Appharbor wipes out the entire app when doing a deploy so uploaded media gets wiped out too. You can get around this by hosting the media folder somewhere else, like amazon s3.

But you also don't have FTP access to log files or anything else. (at least not the last time I looked).

Plus u can't take advantage of web deploy.

You can make it work but orchards architecture creates much friction with appharbor's deployment model.

Don't get me wrong. I love appharbor. But orchard is square peg. I got my sight working on appharbor but 4 months later I found I was afraid to update because too many non default settings. Finally, threw in towel and paid $8 per month at arvixe. Much less friction now.

link|improve this answer
I like using the free AppHarbor plan for demos (so the clients can check out their site while in development), and for that purpose (and not only that of course) AppHarbor is excellent. Possibly I'll move the site elsewhere when it's done, but development will take some time and I don't want to tell the customer to start paying while the project is in development. Thanks for your info though. – lalibi Feb 13 at 16:49
If you use the S3 storage provider, the files become less of a problem. We've written a guide here: support.appharbor.com/kb/tips-and-tricks/… – friism Feb 13 at 18:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.