Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7447469
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T12:36:42+00:00 2026-05-29T12:36:42+00:00

i have a simple cms on ROR 3.2. with this folder scheme: app |controllers

  • 0

i have a simple cms on ROR 3.2.
with this folder scheme:

app |controllers |my controllers

but i wanted to have an “admin” section where i could have some controllers too.
so i created

rails generate controller admin/Users

app | controllers |admin & my admin controllers

so my file is:

users_controller.rb
class Admin::UsersController < ApplicationController

  def index
    render(:text => "sou o index!")
  end

  def list
    render(:text => "sou o list")
  end

end

On my routes i have:

namespace :admin do
    resources :users
  end

match ':controller(/:action(/:id))(.:format)'

Im new to rails and i cant figure out the solution. Cant find it anywhere.

The PROBLEM is
i try do acess:

http://localhost:3000/admin/users/list

and i get this error:

Unknown action The action ‘show’ could not be found for
Admin::UsersController

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T12:36:44+00:00Added an answer on May 29, 2026 at 12:36 pm

    You seem to not have an understanding of how Rails’s RESTful routing works by default. I recommend reading the Resource Routing section of the Rails Guides. By default, when using resources in your routes, the show action is what is used to display a particular model record. You can customize this behavior to an extent in that you can change the URL that for the show action, but not the method name in the model:

    resources :users, :path_names => { :new => 'list' }
    

    If you are going to use RESTful routing (which you should), you should remove the default route (match ':controller(/:action(/:id))(.:format)'). Also, you can run rake routes at any time from the terminal to see details about your current routing configuration.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have some questions regarding data base design for simple CMS. Every Page in
I'm building a really simple CMS for a bilingual website. The website would have
Here's the setup. I have web site which is essentially a simple CMS. Here
I have simple HTML code with some JavaScript. It looks like: <html> <head> <script
I have a problem running RoR project. I am getting this error while running
I am making a simple CMS just for learning purposes and I have a
I am having some trouble with jQuery. I am making a simple CMS and
My aim is to have a simple, form based CMS so the client can
I have recently started looking into using Azure but I'm having some issues getting
One of my customers want to have a simple CMS/blogging platform. I have experience

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.