Programming

ClickOnce Prerequisites: Add SQL Server Express 2016 LocalDB package Manually

You can include the sqlLocalDB.msi with your installer package and then run a silent install as part of your setup. I use the Visual Studio Setup & Deployment project add-in. You can specify prerequisites by selecting the setup project properties. It will list all the bootstrapper packages that it finds in “C:\Program Files (x86)\Microsoft Visual Studio 14.0\SDK\Bootstrapper\Packages” (for […]

Programming

Install and run Ruby On Rails Application on localhost

USE standalone Ruby Server installations: a) http://railsinstaller.org/en b) http://www.helicontech.com/zoo/install.html c) https://bitnami.com/stack/ruby OR 1) Install WAMP (or etc) 2) Install Ruby 3) open …wamp\bin\apache\apacheXXXX\conf\httpd.conf, then search & replace Options Indexes FollowSymLinks with Options Indexes FollowSymLinks ExecCGI (or Options Indexes FollowSymLinks Includes ExecCGI) p.s. also, Find & ensure that LoadModule cgi_module is NOT commented. 4) search & replace #AddHandler cgi-script .cgi with (…removing # ) AddHandler cgi-script .cgi AddHandler cgi-script .rb […]