Wiki Forum Sign up! Explore Home

Not signed in (Sign In)

LiveSearch

Welcome, Guest

Want to take part in these discussions? Sign in if you have an account, or apply for one below

Vanilla 1.1.2 is a product of Lussumo. More Information: Documentation, Community Support.

    • CommentAuthormravibsp
    • CommentTimeSep 13th 2007
     permalink
    Hi,

    whenever any one create, save or edit . we are getting the Ferret::FileNotFoundError error
    • CommentAuthoradmin
    • CommentTimeSep 13th 2007
     permalink
    Is the ferret server running? Are there files in index//? Does the ferret server and web server have write/read access to index/*?

    -- Erlend
    • CommentAuthormravibsp
    • CommentTimeSep 13th 2007
     permalink
    ya ferret server is running ..
    no actually i don't know about that .
    how we can give access for ferret server to index..
    can u help me to solve the problem
    • CommentAuthoradmin
    • CommentTimeSep 13th 2007
     permalink
    Has it worked until now?

    The easiest way (but a bit unsafe unless you've got total control over the machine) to make sure it has access is
    chmod -R a+rw /path/to/cit/index

    You might also try to do a
    rm -rf /path/to/cit/index/*
    to force the index to be rebuilt.

    -- Erlend
    • CommentAuthormravibsp
    • CommentTimeSep 13th 2007 edited
     permalink
    my index folder already has full access.
    • CommentAuthoradmin
    • CommentTimeSep 13th 2007
     permalink
    You might also try to do a
    rm -rf /path/to/cit/index/*
    to force the index to be rebuilt.

    Also, change the acts_as_ferret mixin in app/models/task.rb to:
    acts_as_ferret ({:fields => { 'company_id' => {},
    'project_id' => {},
    'full_name' => { :boost => 1.5 },
    'name' => { :boost => 2.0 },
    'issue_name' => { :boost => 0.8 },
    'description' => { :boost => 1.7}
    }, :remote => true })


    and in app/models/work_log.rb to:
    acts_as_ferret({ :fields => ['body', 'company_id', 'project_id'], :remote => true})

    And restart ferret_server and webserver.

    -- Erlend
    • CommentAuthormravibsp
    • CommentTimeSep 14th 2007
     permalink
    DRb::DRbConnError I am getting this error is this error related to the ferret server.
    I have change the what u have given for the ferret server.
    so, if my ferret server is down or stopped from any external reason we will not be able to create , edit, or save our task milestone etc
    • CommentAuthoradmin
    • CommentTimeSep 15th 2007
     permalink
    Sounds like the ferret server isn't running.