Displaying 20 results from an estimated 80000 matches similar to: "How to add openfire server in rails app"
2010 Apr 01
0
Request format from jabber simple to openfire server
Hi All,
In order to enable chat functionality with gmail in my rails
application i used "Jabber" and "xmpp4r/simple" and finished the chat
functionality well and fine. Now i was asked to enable the chat
functionality with other services like "MSN","Yahoo","AOL" etc which
requires a third party server to act as mediator between the
service(like
2009 Jan 26
0
XMPP4R and Openfire
My app sends IM with XMPP4R with Jabber accounts perfectly with this
code, but when I want to use an Openfire problem I get an error of
authorization
jid = Jabber::JID.new(''myuser-hcDgGtZH8xNBDgjK7y7TUQ@public.gmane.org'')
@client = Jabber::Client.new(jid)
@client.connect
@client.auth(''xxxxxx'')
The error:
2010 Dec 06
8
How to add facebook javascript sdk to rails app
Hey, i''m trying to add the facebook javascript SDK to my rails app. How
do i do that in the application.html.erb file?
--
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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To
2011 Feb 07
2
Rails App permissions?
I can''t start my app and I suspect permissions and ownership. What
permissions should a Rails App have? Can I set 755 on everything or
should it be less on some files?
--
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
2010 Apr 15
1
Problems with rake
I receive an error when I try to create or setup database using rake
command. Rake is installed.
Error: bash: /opt/local/bin/rake: /opt/local/bin/ruby: bad
interpreter: No such file or directory. Is it not in the path but how
come I can to gem list show the gems?
Please help
gem list
*** LOCAL GEMS ***
actionmailer (2.3.5, 2.2.2, 1.3.6)
actionpack (2.3.5, 2.2.2, 1.13.6)
actionwebservice
2011 Jan 02
1
After upgrading to Rails 3, getting errors in Rails 2 app
Hey all
After upgrading to Rails 3, when I try to run Rails 2 app, I get this:
script/server
Missing the Rails 2.3.8 gem. Please `gem install -v=2.3.8 rails`, update
your RAILS_GEM_VERSION setting in config/environment.rb for the Rails
version you do have installed, or comment out RAILS_GEM_VERSION to use
the latest version installed.
MacBook-Pro:MK JANUARY jmerlino$ rails -v
Rails 3.0.3
So I
2010 Jan 12
4
how to create portable rails app?
Hi,
i have a rails app which is done with instant rails, now i need to take
the app to other computer and use it without migrating , that is plug
and play use of that application, can anyone help with that??? plz!
--
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,
2010 Nov 15
2
How to add an exe to Rails app
I have been hacking around with this for a bit but want to see if there is
an easy way:
I am using Heroku and I have the wkhtmltopdf static binary in:
rails_root/vendor/wkhtmltopdf
I am not using any plug ins for wkhtmltopdf, just the executable, on purpose
and want to keep it this way.
My code wants to execute wkhtmltopdf:
# tell wkhtmltopdf to convert html file to pdf
2010 Jan 28
5
files are missing in rails app
I''ve built the slackware packages of rails.
rails path is: /frm/ruby/1.8.6/lib/ruby/site_ruby/1.8
RUBYLIB :
/frm/ruby/1.8.6/lib/ruby/site_ruby/1.8:/frm/ruby/1.8.6/lib/ruby/site_ruby/1.8/i686-linux/
I could created the rails application, but files are missing.
Config
- boot.rb, database.yml, environment.rb and routes.rb
Public
-
2012 Jun 13
7
Cmd line interface for ruby on rails app
Hi,
I have a rails app running which provides an interface to create/update
data stored in a DB. How do i develop a cmd line interface to do the
same i.e i should be able to retrieve/update data to a DB.
--
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
2010 Jun 21
4
javascript tabs not working in rails app
This is in application.html.erb:
<script type="text/javascript"
src="../javascripts/application.js"></script>
<script type="text/javascript"
src="../javascripts/jquery-1.4.2.js"></script>
<div id="content">
<%= yield :tabContent %>
</div>
2010 Feb 11
6
Anyone know of a Rails POS (point-of-sale) app?
Open-source or commercial.
--
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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
For more options, visit
2009 Jul 03
1
Asterisk + Openfire
I am trying to connect Asterisk and Openfire together, but it's not yet
working completely...
I don't know for sure if my manager.conf-file is set correctly. I use
this manager.conf file just to let Openfire talk to Asterisk...
[general]
displaysystemname = yes
enabled = yes
webenabled = yes (is this necessary for Openfire ???)
port = 5038
bindaddr = 0.0.0.0
[openfire]
secret=XXXXXX
2010 Apr 14
1
Rails validations app specific problems
Hi all,
I have a unique workflow where it''s making the use of validations
difficult.
My app is for internal use in my company and I have a funky
implementation (inspired by the e-commerce Railscasts episodes) of a
cart. I have products which when I "add to cart" creates an order with a
state of "incomplete". The product is a line item of my order. Hope that
makes
2010 Jun 14
3
How do I upgrade rack in my current rails app?
Hi,
I have a rails 2.3.8 app which has rack 1.1.0.
I get parse_multipart error.
There''s a new release of rack 1.2.0 which might fix the multipart error.
The question is how I upgrade the rack?
I froze the rails.
I did "gem update rack" and it upgraded rack to 1.2.0.
But my rails app still uses rack 1.1.
How do I set the rails app use rack 1.2.0?
Thanks.
Sam
--
Posted via
2011 Mar 18
6
Could not find sqlite3
I am trying to get Ruby/Rails running on my mac but having some issues.
I created a new rails project "blog_test" trying to get something
working.
When I follow this guide
http://guides.rubyonrails.org/getting_started.html it says to do a
"db:create". This is where I get this error...
Could not find gem ''sqlite3 (>= 0)'' in any of the gem sources listed
2010 Feb 05
1
About the openfire question ~
Hi, guys:
Would anyone know what causes this error message ?
It's not the first time I've seen it but is the first time I've seen it so
often.
openfire verison is 3.6.4 .
at
org.apache.mina.filter.executor.ExecutorFilter$ProcessEventsRunnable.run(Execut
orFilter.java:283)
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(Unknown Source)
at
2011 Nov 03
2
SQL SERVER + RAILS
hOLA A TODOS QUISIERA SABER COMO LOGRO TRABAJAR CON RAILS Y SQL SERVER
2000
COMO GESTIONO USO MI DB EN SQL SERVER, COMO VINCULO UNA APP EN RAILS CON
ESTE GESTOR DE BD. O UNA BASE DE DATOS EN SQL, NO EN MYSQL U OTRA. SINO
EN SQL
gRACIAS.
--
Posted via http://www.ruby-forum.com/.
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
2011 Feb 10
3
Using RJB in a Rails 3 app?
I''m trying to interact with a java library (Aspose Slides) inside of my
Rails 3 app. I''m trying to get the rjb gem installed but I keep running
into the same error when I try to start the app:
[BUG] cross-thread violation on rb_gc()
(null)
Abort trap
I''m on OSX 10.6.6, running ruby 1.8.7-p174 (via RVM) and Rails 3.0.4. I
tried a couple of methods for getting this
2011 Apr 29
3
questions about cookies when bridging together two rails apps
Hey all,
I am looking through this example Rails app where a user session is
stored in cookie so user signs up in one rails app and navigates to
another while still being signed in as unique user. I come across this
line of code where I don''t understand where some of these methods are
coming from:
@session = Session.create!(:user => @user)
cookies[:session_token] = {:value