Displaying 20 results from an estimated 10000 matches similar to: "Static pages"
2006 Jun 30
1
running in production mode
I am running apache with mod_fastcgi on Linux - I would like to run my
app in production mode, but I could not. Following is what I have in my
httpd.conf. Can someone tell me why it does not recognize the env
variable for production? The app always runs under development mode i.e
ignores the RAILS_ENV directive.
thanks/ thila.
<IfModule mod_fastcgi.c>
FastCgiIpcDir /tmp/fcgi_ipc/
2006 Jun 28
5
Production deployment
Gang-
We are getting ready to launch our ROR application; the last item
remaining is the deployment platform. For testing, we had used Apache +
MOD_FastCGI. I am not that impressed with it; sometimes it has strange
effects. For example, when we start the application, for about 5 minutes
or so, the app is very unstable and it gets better over time.
My questions is .. should I go with (1)
2006 Jul 12
11
ruby rails performance
Hi-
We just finished our app and I tested for performance with httperf. Our
setup is browser -> apache2.2-> mod_poxy balancer-> mongrel cluster -> 3
mongrel servers.
I have noticed that the total request per second is is about 7.5. When I
increase the no of mongrel to 5, it inches up to 8 req/s.
My question is how bad or good this number is? We are on a old dell 2400
machine
2006 Aug 14
3
New line char in a text area field on DISPLAY
I have a text_area to accept upto 1000 chars, which is stored as a blob
in mysql. When I try to display the saved data, I dont see the new line
characters - however I could see the newline characters in EDIT MODE. So
my newline char is lost during displaying. Any ideas how to fix it.
thanks
thila
--
Posted via http://www.ruby-forum.com/.
2006 Jan 18
1
Ruby and PDF creation...
Hi-
I need to create PDF docs on the fly with data from a database. I see
couple of options floating around to achieve this in Ruby. Can anyone
recommend the best way to do this? Also any helpful hints or sample
programs will be appreciated.
Thanks
Thila
--
Posted via http://www.ruby-forum.com/.
2006 Jun 20
3
Saving an array of objects
How do I save an array of obects into the database?
For now I am doing
for a in array
a.save
end.
I am sure there must be an easy way to do this.
--
Posted via http://www.ruby-forum.com/.
2006 Jan 08
6
J2EE equivalent
Gang-
1. Is there anything in Ruby that handles the .properites files similar
to the J2EE application servers. Or do I need to define all of the
properties as constants?
2. Is there anyway I can load some of my classes (such as singletons)
during the startup? I am looking for the startup classes that J2EE
containers provide.
Thanks
--
Posted via http://www.ruby-forum.com/.
2006 Apr 11
12
RJS
I am trying to use RJS as shown in this tutorial :
http://www.codyfauser.com/articles/2005/11/20/rails-rjs-templates
However it does not seem to work. I am not getting any excpetions in
the logs. Here is what the logs say :
Parameters: {"action"=>"add", "controller"=>"homepage"}
Rendering homepage/add
The homepage/add is named add.rjs
I know
2006 Jun 21
2
access to application.rb methods
Why can''t I access the utility methods defined in applicaion.rb from the
model classes? If that does not work, where is the best place to put
common utility methods that must be available to all the models.
thanks
--
Posted via http://www.ruby-forum.com/.
2006 Jun 30
3
gem Rmagick install problem on Linux
I get the following error when I try to install Rmagic (via gem) on
Linux. Do I need to install anyting before installing rmagic? This
worked seamlessly on windows. What the best way to install it on Linux.
I am on RedHat ES 3. /thanks
-thila
Attempting local installation of ''rmagick''
Local gem file not found: rmagick*.gem
Attempting remote installation of
2006 Jul 20
1
Override coulmn data type - urgent
Hi-
I have a BigInt (MySql) column type - RAILS treats it as FixNum, which
causes big problem for us since we need to store a 12+ number of digits.
How can I tell Rails to treat is as BigNum instead of FixNum?
thanks
thila
--
Posted via http://www.ruby-forum.com/.
2006 Jul 10
2
File_Column error msg "Image location invalid image"
I got a strange problem. My image upload worked fine in my XP. However
after deploying to Linux, I am not able to upload images from XP machine
- I get "Image location invalid image" error message.
However, I am able to upload images from linux boxes. Can anyone tell me
what would cause this problem? Is there any setting in file_column that
are specific to the deployment server os?
2006 Jun 27
3
User websites with templates.
Hi, I''m very new to Rails and have a general question.
What technique would you use to allow users who have a uniform set of
data to create very un-uniform websites from that data?
One set of data, many different website/output possibilities.
It would have to go beyond CSS. I''m assuming there will potentially be
some level of scripting involved for each template. The goal is
2006 Jan 18
3
search with like operation from a table
I have a table with the list of business name and address in it. It may
contain 1 million rows. The users want to look up into this table based
on the business name. The simple solution is to use LIKE in mysql, but I
am worried about performance, since the user load will be very high for
this system.
Any suggestion on how to handle the potential performance issue? How can
i use a search
2005 Dec 29
2
Has any one seen this error message
I am truying to install the plugin ("ruby script/plugin install
engines"). But I get this big error. Any help?
D:\develop\Ruby\workspace\a2>ruby script/plugin install engines
script/plugin: No such file or directory - svn --version
script/plugin: No such file or directory - svn ls
http://dev.rubyonrails.com/svn
/rails/plugins/
2006 Jul 07
8
Going to production soon, need server advice
I''ve got a RoR app that will be going to production soon (in the next
month or so) and would like to get some feedback on what kind of web
server setup people have had good luck with. I''m looking for something
that is:
1. Stable
2. Easy to setup
3. Secure (sorry but Windows is ruled out here)
My deployment will either be on Fedora Core 5 or possible Mac OS X
Server.
2006 May 10
12
Strange Behavior on Non-Index Pages
If I browse to \myRoRApp, I get the "Welcome aboard" screen.
I''ve done the ruby scripts/generate controller MyTest, and "Rolling with
Ruby on Rails" tells me I should be able to browse to \myRoRApp\MyTest
and see an error page, but what I''m actually seeing is a fastcgi config
file!
I have installed fastcgi, but apache can''t "see" the
2006 Aug 09
3
Deployment: Segregating static files from RHTML
All,
I am deploying on a production system using Apache/fastcgi.
I would like Apache to take care of all of my static files and
dispatch.fcgi to take care of all of my Ruby templates.
In order to achieve this separation, do I need to set up two vhosts in
Apache, one to serve static content and one to serve dynamic content?
Has anyone done this in production and can point me to the right
2006 Jun 27
4
RJS Form Values
Hi,
I have the following code :
<%=link_to_function("? | China", update_page{|page|
page[''tags_en''].value = "China"
page[''tags_ch''].value = "?" }) %>
This updates two text fields with the China and ?. However I want to
append the values, not replace them. So I need something like this :
2005 Jun 30
4
A Memoir on FastCGI and Apache
With the release of our filmfury.com project, I''ve been trying to
rise to the stature of a true system administrator in the last couple
of days (haha). I''m trying to understand how all of the pieces to
this apache/fastcgi deployment fit together.
Here''s what I''ve learned so far:
* You need a separate FastCGI server for each Rails application on
your