Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Message from discussion ActionController::RoutingError in Admin/users#index
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Kenny  
View profile  
 More options Dec 9 2011, 3:59 pm
From: Kenny <namesc...@gmail.com>
Date: Fri, 9 Dec 2011 12:59:57 -0800 (PST)
Local: Fri, Dec 9 2011 3:59 pm
Subject: Re: ActionController::RoutingError in Admin/users#index
I would also like to add that after switching to Linux, the rake
db:migrate:plugins was working fine.  So I don't know if there is a
rake command that undoes what rake db:migrate:plugins does.

Thanks,

Kenny

On Dec 9, 1:56 pm, Kenny <namesc...@gmail.com> wrote:

> Hello again Nathan,

> I have scrapped using Windows, and have successfully setup and
> configured an Linux (Ubuntu) server.  I am having a different issue
> with the crm_sample_tabs plugin.  I got it installed properly, and
> when I tried creating a new product, but now when I go to the
> Product's tab and try to display it, it give me this error:

> ***START***

> ActiveRecord::RecordNotFound in ProductsController#index

> Couldn't find ProductCategory without an ID

> Rails.root: /home/scapeadmin/Sites/ffcrm

> ***END***

> I know that it is throwing this error because the product that I tried
> to create doesn't have an ID.  I don't recall creating an ID when I
> was attempting to create this product.  However I may not be
> remembering correctly.  I have tried uninstalling the plugin.  However
> after reinstalling it, it doesn't appear that the database had
> anything modified on it, so when I go to reinstall the plugin again, I
> am stuck with the same error.  Any help you could lend would be of
> great help.

> Thanks!

> Kenny

> On Dec 1, 7:12 pm, Nathan Broadbent <nathan....@gmail.com> wrote:

> > Hi Kenny,

> > That doesn't seem to be an error from Fat Free CRM, in fact, it sounds very
> > much like a Windows error. Perhaps that is not a valid windows command.
> > Maybe you could try running the command with quotes
> > around  "db:migrate:plugins" ?

> > Here's a blog post that might shed some light on your situation: Rake
> > gotcha on windows<http://instantbadger.blogspot.com/2008/04/rake-gotcha-on-windows.html>

> > Most of the Ruby on Rails community use Linux or OSX. That doesn't mean
> > that we don't support Windows, it just means that we might not be able to
> > answer any of your questions if you get stuck on a Windows-related issue.
> > I hope the blog post helps though!

> > Best Regards,
> > Nathan B

> > On Fri, Dec 2, 2011 at 5:13 AM, Kenny <namesc...@gmail.com> wrote:
> > > Thanks again for the quick response.  When I try to run 'rake
> > > db:migrate:plugins' (without the single quotes) It keeps giving me the
> > > error: "The syntax of the command is incorrect".  However I run the
> > > command 'rake -T' and it says that 'rake db:migrate:plugins' is one of
> > > the commands.  I also tried navigating to the crm_sample_tags
> > > directory, as well as a couple other directories.  Am I missing a gem
> > > that needs to be installed, or is it another issue?

> > > Thanks again.

> > > Kenny

> > > On Nov 30, 5:49 pm, Nathan Broadbent <nathan....@gmail.com> wrote:
> > > > Hi Kenny,

> > > > The error from your first email just means that you need to migrate your
> > > > database and add the 'products' table.
> > > > Sorry, I should have mentioned that the fixed plugin has also been
> > > > extended, and the author is working to add some extra models and tabs for
> > > > products and quotes. You will need to run 'rake db:migrate:plugins' to
> > > add
> > > > those tables.

> > > > Also, Field Group is not a required field for custom fields. The custom
> > > > fields are still very new, and the interface needs more work to make it
> > > > more sensible. Sorry for that confusion.

> > > > Nathan

> > > > On Thu, Dec 1, 2011 at 6:51 AM, Kenny <namesc...@gmail.com> wrote:
> > > > > I think my lead creation issue may be attributed to me trying to
> > > > > create a custom lead field.  I tried to create a custom lead field.  I
> > > > > see there are three required fields to create one: Field label, Field
> > > > > Type, and Field Group.  When I try to make a selection from what
> > > > > appears to be a drop down menu on Field Group, there are no
> > > > > selections.  Did I not do something properly when installing FFCRM?

> > > > > Thanks again,

> > > > > Kenny

> > > > > On Nov 30, 2:47 pm, Kenny <namesc...@gmail.com> wrote:
> > > > > > Thanks for the quick response Nathan.  I did just as you said, by
> > > > > > installing the fixed plugin.  However, I am still running into some
> > > > > > issues.  When I log in to the CRM I am now presented with the
> > > > > > "Products" tab on the far right of the tabs.  When I go to click this
> > > > > > tab it gives me a StatementInvalid error:

> > > > > > ***START***

> > > > > > ActiveRecord::StatementInvalid in Products#index

> > > > > > Showing c:/Sites/ffcrm/vendor/plugins/crm_sample_tabs/app/views/
> > > > > > products/index.html.haml where line #13 raised:

> > > > > > PGError: ERROR:  relation "products" does not exist
> > > > > > LINE 4:              WHERE a.attrelid = '"products"'::regclass
> > > > > >                                         ^
> > > > > > :             SELECT a.attname, format_type(a.atttypid, a.atttypmod),
> > > > > > d.adsrc, a.attnotnull
> > > > > >               FROM pg_attribute a LEFT JOIN pg_attrdef d
> > > > > >                 ON a.attrelid = d.adrelid AND a.attnum = d.adnum
> > > > > >              WHERE a.attrelid = '"products"'::regclass
> > > > > >                AND a.attnum > 0 AND NOT a.attisdropped
> > > > > >              ORDER BY a.attnum

> > > > > > Extracted source (around line #13):

> > > > > > 10: .remote#create_product{ hidden }
> > > > > > 11:
> > > > > > 12: .list#products
> > > > > > 13:   - if @products.any?
> > > > > > 14:     = render @products
> > > > > > 15:   - else
> > > > > > 16:     = render "shared/empty"

> > > > > > Rails.root: c:/Sites/ffcrm

> > > > > > Application Trace | Framework Trace | Full Trace

> > > > > > Request

> > > > > > Parameters:

> > > > > > None

> > > > > > Show session dump

> > > > > > Show env dump

> > > > > > Response

> > > > > > Headers:

> > > > > > None

> > > > > > ***END***

> > > > > > I can provide the framework/full trace or the session/env dump's.

> > > > > > This could be an instance of me not quite understanding how the
> > > plugin
> > > > > > works.  To me that error is saying that there is no products page
> > > > > > available to display.  I don't see where I can go to create a new tab
> > > > > > or product page.  I am also curious as to what the Settings and
> > > > > > Plugins tabs are in the admin section of the CRM.  And last but not
> > > > > > least, I cannot create new leads.  When I click either of the create
> > > > > > lead links, nothing ever happens.

> > > > > > If this is too many questions for one posting, please let me know.

> > > > > > Thanks again!

> > > > > > Kenny

> > > > > > On Nov 29, 4:18 pm, Nathan Broadbent <nathan....@gmail.com> wrote:

> > > > > > > Hi Kenny,

> > > > > > > Sorry about that, the original crm_sample_tabs plugin is currently
> > > > > > > broken. We do need to fix all of our available plugins, or at least
> > > > > > > add warning messages to their README files.

> > > > > > > In the meantime, we have recently fixed a fork of this plugin for
> > > > > > > another user. Please try out the fixed plugin here:
> > > > >https://github.com/cpelon/crm_sample_tabs

> > > > > > > Thanks,
> > > > > > > Nathan

> > > > > > > On Wed, Nov 30, 2011 at 6:57 AM, Kenny <namesc...@gmail.com>
> > > wrote:
> > > > > > > > I just installed the crm_sample_tabs plugin, and when I login and
> > > > > then
> > > > > > > > click on the "Admin" link, it throws up this
> > > > > > > > ActionController::RoutingError in Admin/users#index.

> > > > > > > > Here is the full error page text:

> > > > > > > > ***START***

> > > > > > > > ActionController::RoutingError in Admin/users#index

> > > > > > > > Showing C:/Sites/ffcrm/app/views/layouts/_tabbed.html.haml where
> > > line
> > > > > > > > #5 raised:

> > > > > > > > No route matches {:controller=>"admin/bananas"}

> > > > > > > > Extracted source (around line #5):

> > > > > > > > 2:   %ul

> > > > > > > > 3:     - tabs.each do |tab|

> > > > > > > > 4:       %li

> > > > > > > > 5:         = link_to(tab[:url], :class => tab[:active] ?
> > > "active" :
> > > > > > > > "") do

> > > > > > > > 6:           - unless request.fullpath.include?("/admin")

> > > > > > > > 7:             - img_base_path = "tab_icons/
> > > > > > > > #{tab[:text].to_s.downcase.sub(/^tab_/, '')}"

> > > > > > > > 8:             - if File.exists?(Rails.root.join("public/images/
> > > > > > > > #{img_base_path}.png"))

> > > > > > > > Trace of template inclusion: app/views/layouts/admin/
> > > > > > > > application.html.haml

> > > > > > > > Rails.root: C:/Sites/ffcrm

> > > > > > > > Application Trace | Framework Trace | Full Trace (I will break up
> > > > > > > > single lines with returns)

> > > > > > > > app/views/layouts/_tabbed.html.haml:5:in `block in
> > > > > > > > _app_views_layouts__tabbed_html_haml___599935247_52594476_
> > > 37825934'

> > > > > > > > app/views/layouts/_tabbed.html.haml:3:in `each'

> > > > > > > > app/views/layouts/_tabbed.html.haml:3:in
> > > > > > > > `_app_views_layouts__tabbed_html_haml___599935247_52594476_
> > > 37825934'

> > > > > > > > app/views/layouts/admin/application.html.haml:20:in
> > > > > > > > `_app_views_layouts_admin_application_html_haml___95155032_
> > > 55233732
> > > > > _1036653­­241'

> > > > > > > > app/controllers/admin/users_controller.rb:27:in `index'

> > > > > > > > Request

> > > > > > > > Parameters:

> > > > > > > > None

> > > > > > > > Show session dump

> > > > > > > > Show env dump

> > > > > > > > Response

> > > > > > > > Headers:

> > > > > > > > None

> > > > > > > > ***END***

> > > > > > > > I can also provide the session and env dump's if necessary.

> > > > > > > > Thanks!

> > > > > > > > -Kenny

> > > > > > > > --
> > > > > > > > You received this message because you are subscribed to the
> > > Google
> > > > > Groups "Fat Free CRM Users" group.
> > > > > > > > To post to this group, send email to
> > > > > fat-free-crm-users@googlegroups.com.
> > > > > > > > To unsubscribe from this group, send email to
> > > > > fat-free-crm-users+unsubscribe@googlegroups.com.
> > > > > > > > For more options, visit this group athttp://
> > > > > groups.google.com/group/fat-free-crm-users?hl=en.

> > > > > --
> > > > > You received this message because you are subscribed to the Google
> > > Groups
> > > > > "Fat Free CRM Users" group.
> > > > > To post to this group, send email to...

> read more »


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.