Re: [Rails] ThinkingSphinx ConnectionError

2014-09-23 Thread M,Gopi M.gopinath
I have fixed this by killing the searchd and again started it. On Tue, Sep 23, 2014 at 9:46 PM, Hassan Schroeder < hassan.schroe...@gmail.com> wrote: > On Tue, Sep 23, 2014 at 2:31 AM, M,Gopi M.gopinath > wrote: > > > for me, But suddenly this functionality as been broken > > > ThinkingSphinx:

[Rails] Please help to me handling special characters in rails-sql

2014-09-23 Thread Lekkala Kondareddy
i have faced problem in my database has special characters please suggest any solutions -- 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+

[Rails] Liquid templates - idiomatic rails

2014-09-23 Thread Tonino Jankov
hi! I'm implementing Shopify's liquid templates in a rails project. Now, what would be the most idiomatic / nicest way to load & render these templates from the database apart from render text: "Hello".html_safe ? This solution doesnt look very pretty to me. -- Posted via http://www.ruby-fo

Re: [Rails] User on settings page

2014-09-23 Thread Vivek Sampara
Mohammed, The easiest and hassle free approach is using active admin gem. On Wed, Sep 24, 2014 at 4:01 AM, Vineeth B S wrote: > Hey, > > You have to take a look at cancancan > or pundit > . They both seem like a goo

Re: [Rails] User on settings page

2014-09-23 Thread Vineeth B S
Hey, You have to take a look at cancancan or pundit . They both seem like a good authorization feature providing gems. You can set the ability/roles for each model(or type) that you have. On Wed, Sep 24, 2014 at 3:47

[Rails] User on settings page

2014-09-23 Thread Mohammed Rashid
In my rails app I have set up user authentication so that "users" can view the "home, calendar and login/logout" links. The "admin" user however is able to view an extra "settings" page on the links when he logs in. Is there a way to make a members migration like : "rails generate migration Members

[Rails] [JOBS] Seeking Contract to Hire Ruby Developer in Minneapolis, MN

2014-09-23 Thread heidipederson
Sullivan, Cotter and Associates, Inc. (SullivanCotter) is looking for an experienced Ruby on Rails developer with top-notch software design and coding skills. This position is responsible for working with a fast-paced team to develop responsive and scalable web applications using Ruby on Rail

Re: [Rails] ThinkingSphinx ConnectionError

2014-09-23 Thread Hassan Schroeder
On Tue, Sep 23, 2014 at 2:31 AM, M,Gopi M.gopinath wrote: > for me, But suddenly this functionality as been broken > ThinkingSphinx::ConnectionError (Connection to Sphinx Daemon (searchd) > failed.): So "suddenly" you're getting a connection failure? Are you sure that searchd is still running?

[Rails] Re: Backend support for game

2014-09-23 Thread John R_
I found this link very helpful as well http://guides.rubyonrails.org/routing.html -- 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 i

Re: [Rails] ThinkingSphinx ConnectionError

2014-09-23 Thread M,Gopi M.gopinath
Running this in Development. I can't able to find the PID. Best Regards, *Gopinath M* On Tue, Sep 23, 2014 at 3:44 PM, Vivek Sampara wrote: > Are you running this on production or in development. Can you find the PID > file which is listed in the yml file ? /etc/service/searchd/supervise/p

Re: [Rails] ThinkingSphinx ConnectionError

2014-09-23 Thread Vivek Sampara
Are you running this on production or in development. Can you find the PID file which is listed in the yml file ? /etc/service/searchd/supervise/pid On Tue, Sep 23, 2014 at 3:34 PM, M,Gopi M.gopinath wrote: > > Hi Vivek, > > Here is my sphinx.yml, but this is working for me before... > > develop

Re: [Rails] ThinkingSphinx ConnectionError

2014-09-23 Thread M,Gopi M.gopinath
Hi Vivek, Here is my sphinx.yml, but this is working for me before... development: &dev html_strip: 1 enable_star: 1 html_remove_elements: script mem_limit: 64M morphology: stem_en test: <<: *dev staging: bin_path: /usr/local/bin/ # pid_file: /etc/service/searchd/supervise/pid

Re: [Rails] Doubts on what association to choose

2014-09-23 Thread Colin Law
On 23 September 2014 09:20, Diego Dillenburg Bueno wrote: > I think I know what it is now, but no clue why it happens. > It won't work whenever I open a html tag before <%= form_for @billing do > |billing| %> and close it before <%= f.fields_for :debts do |builder| %> Do you mean you have ?

Re: [Rails] ThinkingSphinx ConnectionError

2014-09-23 Thread Vivek Sampara
There must be some error in the thinking_sphinx.yml On Tue, Sep 23, 2014 at 3:01 PM, M,Gopi M.gopinath wrote: > > Hi, > > I am using rails 2.3 and ruby 1.8.6 with radiant cms > > Here for searching i am using thinking sphinx, this is been working fine > for me, But suddenly this functionality a

[Rails] ThinkingSphinx ConnectionError

2014-09-23 Thread M,Gopi M.gopinath
Hi, I am using rails 2.3 and ruby 1.8.6 with radiant cms Here for searching i am using thinking sphinx, this is been working fine for me, But suddenly this functionality as been broken, This is the issue I am getting, Can anyone help me to sort out this, Querying Sphinx: 50009 ThinkingSphinx:

Re: [Rails] Doubts on what association to choose

2014-09-23 Thread Diego Dillenburg Bueno
I think I know what it is now, but no clue why it happens. It won't work whenever I open a html tag before <%= form_for @billing do |billing| %> and close it before <%= f.fields_for :debts do |builder| %> Anyone ever been through this or something similar? It must be some failure at the applicatio

Re: [Rails] Doubts on what association to choose

2014-09-23 Thread Diego Dillenburg Bueno
Sorry, little typo there. corret is: http://www.github.com/diegodillenburg/codero I typed my name wrong hahaha. @Collin, yeh I have debugparams in my views, which I learned on railstutorial, that's how I somehow identified my problem. Anyway, I think I've managed to find the problem but still tryin