Displaying 4 results from an estimated 4 matches for "rubyrequir".
Did you mean:
rubyrequire
2008 Sep 04
1
actionmailer sends from commandline but not from web
...quot;subject"
body "body"
end
end
Emailer.deliver_test()
-------------------------
I''m running 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>
------------------...
2006 Jun 30
2
Eruby.import -> "uninitialized constant" error
...file.rhtml"
NameError: uninitialized constant Eruby
from (irb):2
from :0
6) here''s the relavent 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 Ap...
2006 Jun 04
4
eRuby & Rails: Not Compatible
...<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>
SetHandler ruby-objec...
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/.