search for: rsson

Displaying 20 results from an estimated 37 matches for "rsson".

Did you mean: reson
2006 Dec 10
1
FW: Samba problem with APS .NET web farm (IIS) - change notify
Forgot to send to list also Regards, ?sgeir Halld?rsson -----Original Message----- From: ?sgeir Halld?rsson Sent: 9. desember 2006 04:01 To: 'Damien 'zaide' Desmarets' Subject: RE: [Samba] Samba problem with APS .NET web farm (IIS) - change notify Hi, This might help in samba config [global] max open files = 65536 max mux = 214748...
2006 Aug 04
4
RSS feeds
Hi all, Can anybody tell me how we can create RSS feed using Ruby on Rails. How do I go about constructing this RSS file? Can I find an example in any site? regards, Prasad -- Posted via http://www.ruby-forum.com/.
2006 Jun 03
3
Disable Migration creation in generate Model
...into the subversion repo. I''m hoping that there is some way to disable this without editing the generate script itself. Personally I feel this shouldn''t to this by default since the script/generate migration command is much more to the point. -- -------------- Jon Gretar Borgthorsson http://www.jongretar.net/
2006 Jun 16
4
duplicate entry issue in acts_as_taggable gem
Hi, I am using the ''acts_as_taggable'' gem and have issues when I try to ''tag'' an entity with a ''tagname'' already defined. i.e 1) book[1].tag(''science'',''paperback'') --> works fine 2) book[2].tag(''roman'',''physics'',''paperback'') --> creates an
2006 Apr 01
3
SQL on Rails :)
Hehe. Does anyone know who is behind this? http://www.sqlonrails.org/ The screencast is just a great watch. Things like these make this my favourite day of the year. -- -------------- Jon Gretar Borgthorsson http://www.jongretar.net/
2006 Jul 18
4
Limiting markdown/textile
I''m using RedCloth for a forum type app. I want users to have control over the look of their posts, but within limits. For example, I don''t want them to be able to include images or use header tags. The RedCloth documentation is pretty thin and I don''t feel it''s very explanatory. I''m wondering if there''s any easy way to do this? Or do I
2006 May 27
10
Displaying Hours
Here''s an intersting one: I have a client who wants to store hours of operation of a business for their RoR web app. I came up with a solution, but I really don''t like it. I have a MySQL table that has these fields monday_start, monday_end, tuesday_start, tuesday_end, etc., all as time fields. That''s all find and dandy. The kicker is, the client wants the hours to
2006 Jun 15
6
Problem with lighttpd
I have a problem with lighttpd on OSX. Everything builds fine (and webrick runs just fine) but lighttpd barfs: edward-kenworthys-computer:~/Development/Ruby/pricematic/trunk edward$ script/server => Booting lighttpd (use ''script/server webrick'' to force WEBrick) => Rails application started on http://0.0.0.0:3000 => Call with -d to detach => Ctrl-C to shutdown
2006 Jul 28
11
Forum
Im making forum and i have problem with paths. Here is code: http://pastie.caboo.se/6389 With this code, it works. But its a bit weird to use so many paths function. For every path i need to make new function. So can you suggest me something. Tables are like here: http://wiki.rubyonrails.com/rails/pages/ForumExample -- Posted via http://www.ruby-forum.com/.
2006 May 12
8
switching from development to production?
I think I''m missing a step here, but they don''t seem to cover this in the AWDWR book... does anybody know the various steps required to switch from development to production mode in Rails? I''ve scoured the application and changed everything that stands out, but the damn thing is still running off the development database and won''t connect to the production
2006 Mar 30
4
404 Error on dispatch.fcgi
I''m a java/php programmer trying out Ruby/Rails on my Dreamhost account. I followed the wiki steps to the letter (2x now) and am still getting a 404 when I hit my dispatch.fcgi. http://mydomain.com/public/dispatch.fgci Can someone give me suggestions on how to debug this problem? Here is my dispatch.fcgi file: #!/usr/bin/env ruby # # You may specify the path to the FastCGI crash log
2006 May 18
7
Server out to excel
How would one server out to excel a html table with the mime/content type application/vnd.ms-excel ? In PHP it would be something like ?php header("Content-Type: application/vnd.ms-excel"); ------ But how do I do this in rails? Cheers Glenn -- Posted via http://www.ruby-forum.com/.
2006 Jun 27
13
Campfire: Dissection
Campfire REALLY intrigues me... Its simple enough, yet the possibilities are endless once they get the API in place for it. I''m curious though, how are they handling they load with say 50 campfire sessions going and 20+ people in each session. There are a lot of AJAX.Requests going I''m assuming. Seems to me the server *should* be getting bogged down on the constant
2006 Aug 17
3
[MARKABY] Multiline text?
Anybody know if it''s possible to have multiline text in Markaby without resorting to a bunch of text statements or putting the text block in another file and using render :file ? I need to add chunks of HTMLized javascript to my templates. Joe -- Posted via http://www.ruby-forum.com/.
2006 May 12
2
New site.
...uby on Rails was to actually create something people will use. So. In a total of 28-34 hours that I calculate i have spent on this. http://web2.0interact.com/ Feel free to submit stuff so I can have some nice amount of data. Or tell me about errors and stuff. -- -------------- Jon Gretar Borgthorsson http://www.jongretar.net/
2006 Jun 11
2
Finding a record and showing it -- how?
I''d like to prompt a user for the value of a Name field, then display the record. Rails tells me that it cannot do a find without an ID. I guess it must be that I''m not passing back properly the data from the view to the controller. Thanks for the help joshi The find_user.rhtml view: <div class="find-name-form"> <fieldset> <legend>Enter User
2006 Jun 04
4
directory structure on typo
i was looking through the typo code and see that all of the administrative controllers and views are placed in another subfolder. i tried just moving the files just for kicks and it didn''t work (didin''t really expect it to, but it was worth a shot.) so how do you set something up like that? i tried looking in the routes.rb file, but i''im not sure what''s in
2006 Jun 09
2
php within public
I''m working on integrating tiny_mce with rails, which has been very successful so far. I want to use the imagemanger and filemanager plugins for image uploads directly through the editor toolbar, which are php scripts. My first attempt was to modify the .htaccess to prevent apache from routing the requests to rails. Here''s what i''ve got in my htaccess:
2006 May 04
9
Help: wrong number of arguments (0 for 1)
Is it my environment? Is something wrong, cause I thought this should just work? I have a simple table and I created a model and a controller: ruby script/generate controller Restaurant ruby script/generate model Restaurant I edited the controller to this: class RestaurantController < ApplicationController scaffold :Restaurant end I run it and: http://0.0.0.0:3000/Restaurant works fine,
2006 Jul 23
3
Hosting on VPS
I have a VPS account with 256MB guaranteed RAM. I am running it as Apache1.3 -> Pen -> mongrel_cluster (with 2 mongrel servers). "top" shows 2 "ruby" instances (I guess for both of the mongrel servers), each weighing in at about 25MB. Does that sound about right? If you are using 2 mongrel servers per client app, does that mean that each RoR app needs 50MB+