Hi everyone, I''m sorry to ask this as I am such a newb at ROR and understanding it myself. I have an application being developed for me, and one of the purposes for my users is to be able to blog about a purchase of a new home. the developer looks like he is struggling with it with not understanding that ever user is to have a their own blog. I am wondering, if anyone has any experience in how to integrate a blogging software like WPMU (word press multi user) in to a ROR app... or a similar blog app (already written for ROR) that would allow wildcard domains, with user registration. Thanks Scott -- 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 -~----------~----~----~----~------~----~------~--~---
Having a full blown blog for every user might be quite some overhead if you only need comments on purchases. Why dont you have a comments class that belongs toa purchase and hopefully your purchase will belong to a user. When a user gets assigned a new purchase, he has the ability to create comments for them. Also, other users in the system can comment on it too. maybe this is not what you want though, but that is how i would go on about doing it. On Jul 2, 8:06 pm, Scott Mckay <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> Hi everyone, > > I''m sorry to ask this as I am such a newb at ROR and understanding it > myself. I have an application being developed for me, and one of the > purposes for my users is to be able to blog about a purchase of a new > home. the developer looks like he is struggling with it with not > understanding that ever user is to have a their own blog. I am > wondering, if anyone has any experience in how to integrate a blogging > software like WPMU (word press multi user) in to a ROR app... or a > similar blog app (already written for ROR) that would allow wildcard > domains, with user registration. > > Thanks > Scott > -- > 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@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
"Wolas!" wrote:> Having a full blown blog for every user might be quite some overhead > if you only need comments on purchases. Why dont you have a comments > class that belongs toa purchase and hopefully your purchase will > belong to a user. When a user gets assigned a new purchase, he has the > ability to create comments for them. Also, other users in the system > can comment on it too. > > maybe this is not what you want though, but that is how i would go on > about doing it. > > On Jul 2, 8:06�pm, Scott Mckay <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org>I was thinking more of at the registration of the user on our site, basically we are doing a review site for new home builders in our area, and we want to offer people the ability to blog about the home building experience through our site. so during registration, we give them the ability to select yes or no to having a blog. Personally i thought we could do it as a Word Press Multi User installation, and somehow have the registration ruby script populate the correct tables in the WPMU DB, and just link to the control panels for MPMU and our main site. am i crazy at thinking this way? -- 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@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Its not crazy (the same architecture i saw at a video of zensiper at rubyconf. The trouble i see is that you will end up having to maintain two interfaces to databases sync them..etc. Plus there is a way to give evry user a blog using plain restfull MCV pattern in rails, thats the way i would do it. j On Jul 3, 4:27 pm, Scott Mckay <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> "Wolas!" wrote: > > Having a full blown blog for every user might be quite some overhead > > if you only need comments on purchases. Why dont you have a comments > > class that belongs toa purchase and hopefully your purchase will > > belong to a user. When a user gets assigned a new purchase, he has the > > ability to create comments for them. Also, other users in the system > > can comment on it too. > > > maybe this is not what you want though, but that is how i would go on > > about doing it. > > > On Jul 2, 8:06�pm, Scott Mckay <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> > > I was thinking more of at the registration of the user on our site, > basically we are doing a review site for new home builders in our area, > and we want to offer people the ability to blog about the home building > experience through our site. so during registration, we give them the > ability to select yes or no to having a blog. > > Personally i thought we could do it as a Word Press Multi User > installation, and somehow have the registration ruby script populate the > correct tables in the WPMU DB, and just link to the control panels for > MPMU and our main site. > > am i crazy at thinking this way? > -- > 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@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Giving each user a blog is pretty simple actually and unless you have a very difficult architecture in your system, the average Rails developer should have no trouble getting this done. Perhaps you could bring another developer in as a mentor to get you in the right direction. On Thu, Jul 3, 2008 at 2:16 PM, Wolas! <jcpenche@gmail.com> wrote:> > Its not crazy (the same architecture i saw at a video of zensiper at > rubyconf. The trouble i see is that you will end up having to maintain > two interfaces to databases sync them..etc. Plus there is a way to > give evry user a blog using plain restfull MCV pattern in rails, thats > the way i would do it. > > j > > On Jul 3, 4:27 pm, Scott Mckay <rails-mailing-l...@andreas-s.net> > wrote: > > "Wolas!" wrote: > > > Having a full blown blog for every user might be quite some overhead > > > if you only need comments on purchases. Why dont you have a comments > > > class that belongs toa purchase and hopefully your purchase will > > > belong to a user. When a user gets assigned a new purchase, he has the > > > ability to create comments for them. Also, other users in the system > > > can comment on it too. > > > > > maybe this is not what you want though, but that is how i would go on > > > about doing it. > > > > > On Jul 2, 8:06�pm, Scott Mckay <rails-mailing-l...@andreas-s.net> > > > > I was thinking more of at the registration of the user on our site, > > basically we are doing a review site for new home builders in our area, > > and we want to offer people the ability to blog about the home building > > experience through our site. so during registration, we give them the > > ability to select yes or no to having a blog. > > > > Personally i thought we could do it as a Word Press Multi User > > installation, and somehow have the registration ruby script populate the > > correct tables in the WPMU DB, and just link to the control panels for > > MPMU and our main site. > > > > am i crazy at thinking this way? > > -- > > 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@googlegroups.com To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
> Perhaps you could bring another developer in as a mentor to get you in the right direction.Excellent advice!> Personally i thought we could do it as a Word Press Multi User > installation, and somehow have the registration ruby script populate the > correct tables in the WPMU DB, and just link to the control panels for > MPMU and our main site.Take a look at http://drupal.org/features It might do everything you want, and then you can have the Rails developer concentrate on modules or other applications that really need to be custom-written. On Jul 3, 9:36 pm, "Brian Hogan" <bpho...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Giving each user a blog is pretty simple actually and unless you have a very > difficult architecture in your system, the average Rails developer should > have no trouble getting this done. Perhaps you could bring another > developer in as a mentor to get you in the right direction. > > On Thu, Jul 3, 2008 at 2:16 PM, Wolas! <jcpen...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > > Its not crazy (the same architecture i saw at a video of zensiper at > > rubyconf. The trouble i see is that you will end up having to maintain > > two interfaces to databases sync them..etc. Plus there is a way to > > give evry user a blog using plain restfull MCV pattern in rails, thats > > the way i would do it. > > > j > > > On Jul 3, 4:27 pm, Scott Mckay <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> > > wrote: > > > "Wolas!" wrote: > > > > Having a full blown blog for every user might be quite some overhead > > > > if you only need comments on purchases. Why dont you have a comments > > > > class that belongs toa purchase and hopefully your purchase will > > > > belong to a user. When a user gets assigned a new purchase, he has the > > > > ability to create comments for them. Also, other users in the system > > > > can comment on it too. > > > > > maybe this is not what you want though, but that is how i would go on > > > > about doing it. > > > > > On Jul 2, 8:06�pm, Scott Mckay <rails-mailing-l...@andreas-s.net> > > > > I was thinking more of at the registration of the user on our site, > > > basically we are doing a review site for new home builders in our area, > > > and we want to offer people the ability to blog about the home building > > > experience through our site. so during registration, we give them the > > > ability to select yes or no to having a blog. > > > > Personally i thought we could do it as a Word Press Multi User > > > installation, and somehow have the registration ruby script populate the > > > correct tables in the WPMU DB, and just link to the control panels for > > > MPMU and our main site. > > > > am i crazy at thinking this way? > > > -- > > > 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@googlegroups.com For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
gbesch wrote:>> Perhaps you could bring another developer in as a mentor to get you in the right direction. > > Excellent advice! > >> Personally i thought we could do it as a Word Press Multi User >> installation, and somehow have the registration ruby script populate the >> correct tables in the WPMU DB, and just link to the control panels for >> MPMU and our main site. > > Take a look at http://drupal.org/features > > It might do everything you want, and then you can have the Rails > developer concentrate on modules or other applications that really > need to be custom-written.agreed with both of your statements, anybody want to get in touch with me regarding what it would cost to bring on your services is welcome to, scott(dot)mckay(at)controlaltdeleted(dot)com (just trying to remove my name from being harvested) 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 -~----------~----~----~----~------~----~------~--~---