I’m a newbie to ruby and web programming. I created a very simple html
form and set the action to “action=actionhandler.rb”, after following an
example from a book. But when I click submit, instead of running
actionhandler.rb, my browser shows the source code of actionhandler.rb.
I’m running these things on Apache webserver. So where am I going wrong
? Do I need any additional plugins ? Any help would be greatly
appreciated.
Hey Mark,
Any time you do this, you need to set the permissions on the file, so
that it is executable.
But the symptom you are having is more often caused by the fact that
Apache doesn’t know what to do with a file of the extension .rb now.
You need to make sure it has mod_ruby or something.
In your web directory you should have a .htaccess file in which you
can write some Apache directives.
Google some of these and check the FAQ/support on your web server.
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.