Tagged Questions
FriendlyId is the "Swiss Army bulldozer" of slugging and permalink plugins for Ruby on Rails. It allows you to create pretty URL's and work with human-friendly strings as if they were numeric ids for Active Record models.
3
votes
1answer
688 views
Why do you have to explicitly specify scope with friendly_id?
I'm using the friendly_id gem. I also have my routes nested:
# config/routes.rb
map.resources :users do |user|
user.resources :events
end
So I have URLs like /users/nfm/events/birthday-2009.
In ...
2
votes
1answer
300 views
ActiveRecord::ReadOnlyRecord when using ActiveAdmin and Friendly_id
I started using ActiveAdmin recently in a project and almost everything works great but I'm having a problem when using it in combination with the friendly_id gem. I'm getting ...
1
vote
2answers
31 views
rails routes access by resource name using friendly_id gem
I have a list of cities stored in City table. Let's say I want to generate dynamic routes to be accessible through resource.name, city.name in this example.
I want to be able to visit /amsterdam or ...
1
vote
1answer
30 views
friendly_id does not work with sql server and tiny_tds?
I am using friendly_id 4.0.0 rails 3.0.1 and tiny_tds 0.2.3 (because I have a sql server database as a backend for the rails application)
In my model I have
extend FriendlyId
friendly_id ...
1
vote
2answers
62 views
determine if string contains only numbers
I'm using friendly_id for my routes in my rails app.
I want to ensure that a page cannot be visited by the numeric id.
A page is accessible like this - www.myurl.com/myfriendlyidstub
The page ...
1
vote
0answers
46 views
Edit in nested routes with no paths
Using: Rails 3.1.1 and Friendly_id for url's.
I think this should be fairly easy but I can't figure it out.
I have a nested route that looks like this:
resources :pages, :path => '' do
# ...
1
vote
0answers
76 views
Friendly_Id and Reserved Words — How can i replace the reserved word?
Here is an example of what causes the error:
ruby-1.9.2-p290 :004 > Post.new(title: "new").save!
(0.3ms) BEGIN
post Load (0.3ms) SELECT `posts`.* FROM `posts` WHERE (`slug` = 'new' OR ...
1
vote
1answer
134 views
Rails: friendly_id uses name and not slug as id
Using: Rails 3.0.3
Friendly_id: 4.0.0.beta11
I have create a fully working development version of an application where I got everything working, including friendly_id url:s like ...
1
vote
2answers
149 views
Using Friendly ID and i18n with update_attributes causes overwrite
Using:
- Rails 3.0.3
- Friendly_id 4.0.0 Beta 11
- Windows
- i18n (0.6.0, 0.5.0) according to "gem list"
Set-up:
I have a multilingual website about calculations using Swedish and English as ...
1
vote
1answer
102 views
friendly_id and new records
I'm using friendly_id 4.0.0.beta8 and like to generate URLs that make use of slug, but still contain the model id. It seems like friendly_id generates slugs before_validation. However, at this time ...
1
vote
1answer
238 views
Rails 3: how to use gsub or to replace whitespace characters with “-”?
I have an Artist model is name:string. and I want /users/1/artists/jimi-hendrix/posts instead of what I have now which is /users/1/artists/1/posts
The problem is I don't think I can use friendly_id ...
1
vote
0answers
80 views
How do I fix NoMethodErrod on Controller#create caused by FriendlyId
I have a rails app that uses the FriendlyId gem and recently I've started to get NoMethodErrors in development and test. This problem has only started recently and we're a couple of iterations into ...
1
vote
2answers
388 views
friendly id and devise error when using reserved word
I used friendly id to allow user access profile with their login name, but when I try to sign up with login name that has been reserved by the friendly Id, I got an error. It seems devise can't render ...
1
vote
1answer
395 views
Is the slugs table required when using the friendly_id gem?
In the friendly_id gem docs it says to create a table slugs where all slugs are created. But in addition it gives me the opportunity to add a column to my model table to increase performance using ...
1
vote
2answers
460 views
friendly_id and ActiveScaffold conflict
I have friendly_id and ActiveScaffold installed for my Rails application.
Because not all of my models have unique name fields I have to use the Slugged Model to make it work. friendly_id does the ...
1
vote
1answer
310 views
Friendly_id for fixtures (slugs)
I am using freindly_id in my application. I have setup a few fixtures in my application. I want to do integration testing on them. During the tests I need the friendly_id, but the DB records created ...
1
vote
2answers
391 views
How can I use friendly ID in Rails like mysite.com/[USERNAME]
How can I use friendly URLs on my Rails application ?
All I need is to make available the following url format
mysite.com/company1
mysite.com/user123
mysite.com/user1234
mysite.com/newton.garcia
...
0
votes
0answers
21 views
Friendly_id not working, redirects to Category with wrong index
I've followed Ryan Bates' screencast in order to get friendly_id set up (up until the def should_generate_new_friendly_id? part) for my Category model. One of the Categories is books, but for some ...
0
votes
1answer
46 views
friendly_id on profile using a param from user model?
Im following the casts http://railscasts.com/episodes/314-pretty-urls-with-friendlyid?autoplay=true on friendly_id
Having a user model with field "login"
And a profile model with a "user_id" that ...
0
votes
0answers
49 views
Rails - friendly_id : how can i format the friendly_id parameter like a datetime?
i would like to use friendly_id with a datetime in id like that :
friendly_id :date
is there a way to configure the format the parameter of friendly_id (here :date) to have change the display ? (here ...
0
votes
2answers
72 views
friendly_id and real id
Is there any way to get the real id column from a model that is modified with friendly_id?
I don`t want to make another db query for it, in performance reasons.
0
votes
4answers
1k views
Move xxx.com/profiles/1 to xxx.com/username with friendly_id with username from user model?
I have red docs on friendly_id for rails, its easy you set a certain attribute to be the slug.
xxx.com/username
User has_one profile
Profile belongs_to User
So you see my dilemma I have no column ...
0
votes
2answers
134 views
How to use Friendly_Id w/ STI?
I'm pretty stumped about how to setup the friendly_id (4.0.0.beta12) gem to work properly with STI models.
Here is the model setup:
class Car < ActiveRecord::Base
extend FriendlyId
...
0
votes
1answer
80 views
Translate friendly_id
Using:
Rails: 3.0.3
Friendly_id: 3.2.1
I am building a website with (currently) two locales, :se & :en where I am using friendly_id to get SEO-friendly url.
Currently, it works fine but I am ...
0
votes
0answers
99 views
Rails - FriendlyId and Conditions
I have a model posts, which belongs_to category (which uses friendly_id). Now i want to list all Posts in an Category. To get the index page i want to use a link like: ...
0
votes
4answers
274 views
How to user defined friendly URLs in Rails 3?
Now i have something like this
http://myapp.com/pages/1
http://myapp.com/pages/2
http://myapp.com/pages/3
http://myapp.com/pages/4
And each page belong to one user
What i need is to each user to ...
0
votes
1answer
211 views
rails3, clean url, friendly_id, sessions
I'm using friendly_id it works wonderful I add a new private action to my events controller to make sure only events owner can update their events...my show and delete action works fine but when I do ...
0
votes
1answer
246 views
Heroku, cron.rake and friendly_id gem
I'm using the friendly_id gem.
There's a rake task for deleting old slugs (from the docs):
rake friendly_id:remove_old_slugs MODEL=<model name> DAYS=<days>
It can be run via cron.
Do ...
0
votes
1answer
92 views
Rails: friendly_id and to_json
I have a collection of model objects that I am trying to return JSON for. E.G
@regions.to_json(:only => [:id, :name ])
that works fine.
If I try to use :
@regions.to_json(:only => ...
0
votes
0answers
229 views
Ruby on Rails: Cucumber is giving problems in checking the current URL when friendly_id is enabled
I have a scenario in Cucumber that checks if I am on a given page after a form submission. It seems that this check should pass, but Cucumber does not seem to know the friendly_id translations.
And ...
0
votes
0answers
107 views
Configure user url with username in it, but no association of model
Using Rails 2.3.8, and friendly_id.
Person model:
class Person < ActiveRecord::Base
# Nice URL's in Rails.
def to_param
"#{login.downcase.gsub(/[^[:alnum:]]/,'-')}".gsub(/-{2,}/,'-')
...
0
votes
1answer
279 views
FriendlyId: undefined method `use_slug?' for nil:NilClass
I am creating a new environment besides production. I copied all the configurations from my production environment, changing what needed to be changed.
As it is the servers do start, but when I do a ...
0
votes
1answer
70 views
Good 404 in Rails, with search result on moved pages for new links
I am trying to replace lots of pages in my database at once, and lots of pages that are indexed by Google will have new URLs. So in result, old pages will be redirected to a 404 page.
So I need to ...
0
votes
2answers
215 views
RoutingError on empty field, conflicting with friendly_id
I have a edit form for @users.
In there I have a text_field :username
<%= form_for @user, :url => { :action => "update" } do |f| %>
<%= render 'shared/error_messages', :target => ...
0
votes
2answers
283 views
rails friendly_id and check if entry exists
How to check if friendly_id entry exists before get it?
For example:
def book
@book = Book.find(params[:book_id])
end
It's ok, but i want check before if friendly_id exists, something ...
0
votes
1answer
552 views
Undefined method for friendly_id implementation
This is what my Plan.rb looks like:
class Plan < ActiveRecord::Base
has_many :users
has_friendly_id :plan, :use_slug => true
end
User.rb
class User < ActiveRecord::Base
#There is ...
0
votes
1answer
347 views
authlogic require user
I use authlogic for authentication and certain actions require a logged in user, which is controlled via a before_filter like the following. I also use friendly_id on the User model and internally ...
0
votes
2answers
563 views
Invoking Rake::Task in rails causes “Don't know how to build task…”
Trying to integrate some friendly_id gem functionality on a controller method.
Essentially, I have a Market object, which has its URL created based on a custom method. Since it's based on a custom ...
0
votes
1answer
117 views
Attaching conditional methods(or attributes?) to a rails model
I'm using the friendly_id plugin to generate SEO-friendly URLS for some of my models.
Currently, I have a model with two attributes: name and display_name.
Essentially, display_name is preferred, ...