Displaying 20 results from an estimated 22 matches for "belorion".
2006 Apr 16
4
Preventing crawlers on link_to''s
My understanding was that using the :post=>true on a link_to() was supposed
to prevent search engine crawlers from triggering the link. However, this
does not seem to be working for me. Is there something else that I should
be/can be doing to accomplish this? Thanks.
-Matt
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2005 Mar 07
2
0.10.1 Upgrade problems
I just did an upgrade to Rails 0.10.1. It seems to have broken my
app. I get this error (nothing works):
ActionController::RoutingError (No route for path: ""):
/usr/local/lib/ruby/gems/1.8/gems/actionpack-1.5.1/lib/action_controller/routing.rb:258:in
`recognize!''
/usr/local/lib/ruby/gems/1.8/gems/rails-0.10.0/lib/dispatcher.rb:32:in
`dispatch''
2005 Mar 02
4
Development without server restart?
I thought that Rails was supposed to allow development of an
application *without* having to restart the webserver? I know this
works in WEBRick ... but this doesn''t seem to be the case in Apache
(linux). Am I missing something here, or does this only work in
webrick?
I suppose one should argue that for development you should just use
webrick, but this wasn''t an option for me
2005 Mar 09
9
Unit testing + instance variables
After *much* digging and playing around, I finally figured out how to
unit test instance variables that are created by actions. It was
more difficult than I expected. It seems like there should have been
a more straight forward way to do this. Can someone enlighten me? A
simplified and somewhat contrived example of what I am current doing:
Thanks.
Matt
>>
# My Controller of interest
2006 Jan 03
14
Family Connection 0.9
Family Connection is an easy-to-setup online hub for your family that
includes a Family News section, and an Address Book. Currently,
there is no documentation on installing the Rails application itself
(hence the 0.9 version number).
Once installed, Family Connection guides the family website
administrator through a simple two-page setup process. The web
application restricts access
2006 Jan 03
5
Are cache sweepers used?
After drawing many virtual blank stares in the IRC channel and finding
zero results on the wiki for ''sweeper'' I''m left to wonder whether
these are actually officially supported, or are on their way toward
being deprecated. Is there a better way of expiring caches on model
saves and deletions?
Sincerely,
Tom Lieber
tom@alltom.com
http://AllTom.com/
2005 Jul 22
3
testing application_helper.rb
I am trying to run some functional (or are they unit?) tests on my
application_helper.rb. So far, I''ve not had any success in being able
to call the methods defined in application_helper.rb.
Here is my app/test/functional/helpers.rb
require File.dirname(__FILE__) + ''/../test_helper''
require File.dirname(__FILE__) +
2006 Feb 14
5
integrating vbulletin
Has anyone successfully integrated (embedded) vbulletin into a rails
app? I would be curious to see if/how this worked.
RForum still seems quite beta so I am looking for something a little
more tried and true.
thanks
adam
2005 Mar 04
24
Rails speed?
Hi --
(First time posting to the list...)
I''m trying out Rails on my Mac (OS X Panther, 1.6 G5). It seems...
kinda slow? I''ve even run it with FastCGI and the response time is
still painfully slow.
Is this just me? Is mod_ruby any better than FastCGI? Or is it rails?
Thanks in advance!
-- joshua
2006 Jan 12
2
ActiveRecord models w/ base condition
Does anyone know how to do the following? I have 3 different AR classes
that all map to the same table. The only difference between this AR classes
is that they should only return record that match a certain condition.
For example, Foo should only return records from table ''list'' that follow
the condition ftype="foo", where as Bar, on the other hand, should only
2005 Jun 20
8
YubNub makes Slashdot
Way to go YubNub! It''ll be interesting to see:
1) What so many people have to say and
2) How your rails app holds up to the slashdotting.
Great work!
2006 Jan 06
1
ActiveRecord - Switching Databases
This is a question regarding ActiveRecord outside of Rails.
I have several databases that have absolutely identical table structure. I
have a
ActiveRecord::Base.establish_connection(
:adapter => "mysql",
:host => "localhost",
:username => "user",
:password => "password",
:database
2006 Apr 18
2
RoR, lighttpd, and localhost
This is really more of a web server configuration question, but it seemed
like a problem in which RoR''ers would be well versed.
I am running a RoR app on lighttpd behind an Apache proxy (well, reverse
proxy is perhaps more accurate).
Since the requests are being proxied to Lighttpd from the same server, my
Rails apps think that the requests are coming from localhost. As such,
anytime
2005 Mar 01
3
problems with apache
Hi all
I''m currently running rails on apache/windows and it seems like rails
has trouble getting started the first few times I start apache and
request a page.
I created a blank controller called ''test'', and it has an index method
and associated index.rhtml file. (All it contains is <p>hello world</p>)
I keep getting ''500 server
2006 Jan 03
2
Reducing Memory Footprint (fcgi)
I have a website up and running on TextDrive with Rails/lighttpd/fcgi.
Unfortunately, as my account is a "shared server" account on TxD, they kill
processes that are hogging resources (quite understandably).
Unfortunately for me, my Ruby fcgi processes load up rather ... large (just
under 50mb). It doesn''t take much to push it to 50mb, at which point it
gets killed.
Does
2005 Jun 24
14
apache2 fastcgi (fcgi) internal server errors, still :(
hi all,
I can blab, but here is a sample of my /var/log/apache2/error.log, it
has all the info:
any ideas what I can do prevent 500s from hitting my users? (besides
redirecting them with javascript to the same URL which will be fine on
the next request? :)
thanks,
_alex
[Fri Jun 24 12:30:45 2005] [error] [client 172.20.0.175] FastCGI:
incomplete headers (0 bytes) received from
2005 Mar 08
43
e=MCv
Dears,
What is this software runned as "e" showed on most Rails Videos and
providing a tree browser (explorer) and editor ?
Avail for Linux ?
Gretz
--
Mathieu
2006 Jun 04
0
auto_increment disappearing
Is anyone else experiencing this? My MySQL tables seem to randomly lose
their auto_increment attribute on the id field...
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060604/eebfd479/attachment.html
2006 Jan 06
1
Unit Testing - Persistence of Destroyed Objects?
I was doing some unit testing today and came across something that surprised
me. Either I am confused, or destroyed objects persist in memory when doing
unit testing.
To explain: I have a model, Author, which ''has_many :web_resources''. One
type of "web resource" for an Author is the authors website. So, to
facilitate easy creation/lookup of websites for authors, I