SammyLin/redactor-rails

LoadError, "Unable to autoload constant #{qualified_name}, expected #{file_path} to define it" unless from_mod.const_defined?(const_name, false)

Opened this issue · 7 comments

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]'

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
should be UserController < 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

have had a similar error while perfoming google-api authentication and as @Ibr4him points out, its the first line of your controller