Displaying 6 results from an estimated 6 matches for "rubyrun".
Did you mean:
ruby_run
2006 Jun 04
4
eRuby & Rails: Not Compatible
...gnature On
<Directory /srv/www/htdocs/bget.org/www>
Options FollowSymLinks ExecCGI
AllowOverride None
Order allow,deny
Allow from all
</Directory>
# If the ruby module is installed, this will be enabled.
<IfModule mod_ruby.c>
# for Apache::RubyRun
RubyRequire apache/ruby-run
# exec files under /ruby as ruby scripts.
<Location /srv/www/htdocs/bget.org/www>
SetHandler ruby-object
RubyHandler Apache::RubyRun.instance
Options +ExecCGI
</Location>
# exec *.rbx as ruby scripts.
<Files *.rbx>
SetHandl...
2008 Oct 11
5
Rails + Apache2 + Balancer Manager - PHP doesn't work
Hi
I have a Debian Server and I managed that Ruby works with Apache2 and
the Balancer Manager that listen to the Mongrel server.
The Problem is that PHP files don''t work anymore.
How do I have to configurate the Balance Manager that PHP is working
again like without the Balance Manager?
Greetings Andi
--
Posted via http://www.ruby-forum.com/.
2006 Apr 14
0
Premature end of script headers
...----------
dispatch.cgi
----------------
#!/usr/local/bin/ruby
require File.dirname(__FILE__) + "/../config/environment" unless
defined?(RAILS_ROOT)
require "dispatcher"
ADDITIONAL_LOAD_PATHS.reverse.each { |dir| $:.unshift(dir) if
File.directory?(dir) } if defined?(Apache::RubyRun)
Dispatcher.dispatch
-----------------------------------------
.htaccess
------------
Options +FollowSymLinks +ExecCGI
*********************************
We dont know what is wrong. Anyone got idea or any fix for that ?
Thank you.
dbMG
--
Posted via http://www.ruby-forum.com/.
2008 Sep 04
1
actionmailer sends from commandline but not from web
...Apache 2.2, and this is what my ruby.conf file for it looks
like:
-------------------------
LoadModule ruby_module modules/mod_ruby.so
<IfModule mod_ruby.c>
RubyRequire apache/ruby-run
RubyRequire apache/eruby-run
<Files *.rb>
SetHandler ruby-object
RubyHandler Apache::RubyRun.instance
</Files>
<Files *.erb>
SetHandler ruby-object
RubyHandler Apache::ERubyRun.instance
</Files>
</IfModule>
-------------------------
ExecCGI in enabled as well.
Any ideas?
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------...
2006 Aug 03
0
Can''t set up rails: dispatch.cgi failed
...fig/environment" unless
defined?(RAILS_ROOT)
require "dispatcher"
#require
"/usr/local/lib/ruby/gems/1.8/gems/actionwebservice-1.1.4/lib/action_web_service/dispatcher"
ADDITIONAL_LOAD_PATHS.reverse.each { |dir| $:.unshift(dir) if
File.directory?(dir) } if defined?(Apache::RubyRun)
Dispatcher.dispatch
--
Posted via http://www.ruby-forum.com/.
2006 Jun 30
2
Eruby.import -> "uninitialized constant" error
...vent section in my httpd.conf:
LoadModule ruby_module /usr/lib/httpd/modules/mod_ruby.so
# ClearModuleList
# AddModule mod_ruby.c
<IfModule mod_ruby.c>
RubyRequire apache/ruby-run
# Execute *.rbx files as Ruby scripts
<Files *.rbx>
SetHandler ruby-object
RubyHandler Apache::RubyRun.instance
</Files>
RubyRequire apache/eruby-run
# Handle *.rhtml files as eRuby files
<Files *.rhtml>
SetHandler ruby-object
RubyHandler Apache::ERubyRun.instance
</Files>
</IfModule>
#AddType application/x-httpd-eruby .rhtmlAction application/x-httpd-eruby...