Rails zone!
Programming > Editors_IDEs > RubyOnRails
First, your business table should have a location_id field, not locationID.
Second, did you put the resources into the routes table? I'd guess not, since that's what adds the URL helpers like "new_locations_path". Typically, though, it'd be singular: "new_location_path" or "new_business_path"
How'd you generate these: as a scaffold or as individual models?
What version of Rails are you on?