I have a ruby on rails web site, and I need to implement a Live Chat customer support, most of them are in php, but I would like to get one in rails and to integrate this with my current web application.... do you know any live chat in rails? Thank you -- 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 -~----------~----~----~----~------~----~------~--~---
I don''t know of any formal libraries but there have been a few implementations thrown around. Campfire: - Page polls every 5 seconds or so to the server for new chats - Chats saved on server as XML (I believe), though they could be database entries but that might be slower. Comet implementation (not a fan of the name, but hey, though this is the more difficult implementation) - Use Flash or a Java applet to open a socket to the chat server and do your own communication. AJAX in Rails makes this kind of app quite easy to make. Check out the available javascript helpers, you''ll find something that will help you. Jason On 11/6/06, Rodrigo Dominguez <rails-mailing-list-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> > > I have a ruby on rails web site, and I need to implement a Live Chat > customer support, most of them are in php, but I would like to get one > in rails and to integrate this with my current web application.... > do you know any live chat in rails? Thank you > > -- > 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 11/6/06, Rodrigo Dominguez <rails-mailing-list-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> > > I have a ruby on rails web site, and I need to implement a Live Chat > customer support, most of them are in php, but I would like to get one > in rails and to integrate this with my current web application.... > do you know any live chat in rails? Thank you > >Have a look at: http://juggernaut.rubyforge.org/ -- Andrew Stone --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
I create the project in scaffold but I cant able to edit it and update th values I gort the error in no action required I attach the image bellow and my codeing the controller is : @department = Department.find(params[:id]) respond_to do |format| if @department.update_attributes(params[:departments]) flash[:notice] = ''Department was successfully updated.'' format.html { redirect_to(@department) } format.xml { head :ok } else format.html { render :action => "edit" } format.xml { render :xml => @department.errors, :status => :unprocessable_entity } end end Attachments: http://www.ruby-forum.com/attachment/8184/edit.jpg -- 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 unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit https://groups.google.com/groups/opt_out.
On 28 February 2013 13:37, vasanth k. <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote:> I create the project in scaffold but I cant able to edit it and update > th valuesI guess you are a beginner in Rails. If so then I suggest that you work right through a good tutorial such as railstutorial.org, which is free to use online. That will show you the basics of Rails. Once you have done that, if you still get the problem, and still cannot work it out then have a look at the Rails Guide on Debugging, which will show you techniques that can be used to debug your code. If you have to post messages in future then please paste them in as text rather than an image. It is easier to follow the thread if everything is in the message. Colin> > I gort the error in no action required I attach the image bellow > and my codeing the controller is : > > @department = Department.find(params[:id]) > > respond_to do |format| > if @department.update_attributes(params[:departments]) > flash[:notice] = ''Department was successfully updated.'' > format.html { redirect_to(@department) } > format.xml { head :ok } > else > format.html { render :action => "edit" } > format.xml { render :xml => @department.errors, :status => > :unprocessable_entity } > end > end > > Attachments: > http://www.ruby-forum.com/attachment/8184/edit.jpg > > > -- > 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 unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > For more options, visit https://groups.google.com/groups/opt_out. > >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit https://groups.google.com/groups/opt_out.