hello Can u tell me how can i create a forum using ROR thanks -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
dhaval wrote:> hello > > Can u tell me how can i create a forum using ROR > > thanksHave you done anything else? -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
A good example of forum software written in Rails is Beast: http://beast.caboo.se/ n dhaval wrote:> hello > > Can u tell me how can i create a forum using ROR > > thanks--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Jamal Soueidan wrote:> dhaval wrote: >> hello >> >> Can u tell me how can i create a forum using ROR >> >> thanks > > Have you done anything else?yeh created a blog -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Write some models to store the users and the posts. Then write some controllers to create, read, update and delete the users and the posts. That is the Rails way. On May 5, 6:34 am, dhaval <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> hello > > Can u tell me how can i create a forum using ROR > > thanks > > -- > Posted viahttp://www.ruby-forum.com/.--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
A good discussion on creating a forum using ROR can be found in the book "Beginning Ruby on Rails E-Commerce" by Christian Hellsten and Jarkko Laine (Apress). There is a problem, however. The text recommends the acts_as_threaded plugin to help with the forum implentation. The issue is that the download location for acts_as_threaded (http://www.railtie.net/plugins/acts_as_threaded.zip) is not functioning. Does anyone know of an alternate download site for acts_as_threaded? On May 5, 8:34 am, dhaval <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> hello > > Can u tell me how can i create a forum using ROR > > thanks > > -- > Posted viahttp://www.ruby-forum.com/.--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
dhaval wrote:> Jamal Soueidan wrote: >> dhaval wrote: >>> hello >>> >>> Can u tell me how can i create a forum using ROR >>> >>> thanks >> >> Have you done anything else? > > yeh created a blogWell it''s exactly like blog :) post = topic comments => replies :D -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
stevepoll wrote:> A good discussion on creating a forum using ROR can be found in the > book "Beginning Ruby on Rails E-Commerce" by Christian Hellsten and > Jarkko Laine (Apress). There is a problem, however. The text > recommends the acts_as_threaded plugin to help with the forum > implentation. The issue is that the download location for > acts_as_threaded (http://www.railtie.net/plugins/acts_as_threaded.zip) > is not functioning. Does anyone know of an alternate download site for > acts_as_threaded?http://wiki.rubyonrails.org/rails/pages/Acts_as_threaded Seems dead! -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
On May 5, 11:50 am, stevepoll <stevep...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> implentation. The issue is that the download location for > acts_as_threaded (http://www.railtie.net/plugins/acts_as_threaded.zip) > is not functioning. Does anyone know of an alternate download site for > acts_as_threaded?http://i.nfectio.us/plugins/acts_as_threaded.zip --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
On May 8, 1:01 pm, Stan <stan.kauf...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> On May 5, 11:50 am, stevepoll <stevep...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > > implentation. The issue is that the download location for > > acts_as_threaded (http://www.railtie.net/plugins/acts_as_threaded.zip) > > is not functioning. Does anyone know of an alternate download site for > > acts_as_threaded? > > http://i.nfectio.us/plugins/acts_as_threaded.zipThanks Stan! --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---