-
Notifications
You must be signed in to change notification settings - Fork 251
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
LoadError, "Unable to autoload constant #{qualified_name}, expected #{file_path} to define it" unless from_mod.const_defined?(const_name, false) #162
Comments
Having exact same error, have you solved this? edit: I solved this myself turns out the one of the controller files had a typo. I had UserControllers < ApplicationController so make sure your controller files are proper if you're having this same error. |
I'm having the same issue as well. It doesn't appear to be documented. |
please check controller file,is there any typo error |
the problem is in the controller,take a very good look at it and solve the error |
it is mostly typo in the first line of the controller page |
ok thanks
…On Thu, Mar 30, 2017 at 11:23 AM, Ibr4him ***@***.***> wrote:
it is mostly typo in the first line of the controller page
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#162 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AWY2zSwd1Nt4-vvnjvPDTtHcOdmJ5gVYks5rq2acgaJpZM4KKsrB>
.
|
have had a similar error while perfoming google-api authentication and as @Ibr4him points out, its the first line of your controller |
I am using rails 5 and unable to get the image uploader to work. When I try to upload the image nothing shows up and if I step through with byebug I get to this error. Any idea what could be causing this? From what I am reading it is saying that module names can only have a capital first letter and the gem uses RedactorRails
'
[[507, 516] in /usr/local/rvm/gems/ruby-2.3.0/gems/activesupport-5.0.0.1/lib/active_support/dependencies.rb
507:
508: if loading.include?(expanded)
509: raise "Circular dependency detected while autoloading constant #{qualified_name}"
510: else
511: require_or_load(expanded, qualified_name)
=> 512: raise LoadError, "Unable to autoload constant #{qualified_name}, expected #{file_path} to define it" unless from_mod.const_defined?(const_name, false)
513: return from_mod.const_get(const_name)
514: end
515: elsif mod = autoload_module!(from_mod, const_name, qualified_name, path_suffix)
516: return mod]'
The text was updated successfully, but these errors were encountered: