Content
Internal Error
Added by Zheng Huang over 7 years ago
Hi All,
After playing around with OP for a few days, I feel this application is very good and powerful, but due to the insufficient of technical skills that it is still giving me error messages.
When I start OP by running RAILS_ENV=production bundle exec rails server
, it works smoothly in the front end, although there are still fetal errors recorded in the production.log (please see attachments).
But when I start OP as a daemon by running RAILS_ENV=production bundle exec rails server -d
, and click on the User or System Setting would bring me to a error page with “Internal Error”
I’ve read these posts:
https://community.openproject.com/topics/4113
https://community.openproject.com/topics/4173
and tried to change the order for the plugins as well, but ended up running into more errors when running bundle install
or bundle update
with gems in the Gemfile incompatible with Gemfile.lock, and then I don’t know what to do other than reinstall the package.
Here is my Gemfile.plugins:
# # DO NOT CHANGE THE ORDER OF PLUGINS # group :opf_plugins do gem "openproject-global_roles", path: "vendored-plugins/openproject-global_roles" gem "openproject-auth_plugins", path: "vendored-plugins/openproject-auth_plugins" gem "omniauth-saml", github: "omniauth/omniauth-saml" gem "openproject-auth_saml", git: 'https://github.com/finnlabs/openproject-auth_saml', branch: 'dev' gem 'omniauth-openid_connect-providers', git: 'https://github.com/finnlabs/omniauth-openid_connect-providers.git', branch: 'dev' gem 'omniauth-openid-connect', git: 'https://github.com/finnlabs/omniauth-openid-connect.git', branch: 'dev' gem "openproject-openid_connect", path: "vendored-plugins/openproject-openid_connect" gem "openproject-documents", path: "vendored-plugins/openproject-documents" gem "openproject-my_project_page", path: "vendored-plugins/openproject-my_project_page" gem "openproject-xls_export", path: "vendored-plugins/openproject-xls_export" gem "reporting_engine", path: "vendored-plugins/reporting_engine" gem "openproject-costs", path: "vendored-plugins/openproject-costs" gem "openproject-reporting", path: "vendored-plugins/openproject-reporting" gem "openproject-meeting", path: "vendored-plugins/openproject-meeting" gem "openproject-pdf_export", path: "vendored-plugins/openproject-pdf_export" gem "openproject-backlogs", path: "vendored-plugins/openproject-backlogs" gem "openproject-local_avatars", path: "vendored-plugins/openproject-local_avatars" gem "openproject-webhooks", path: "vendored-plugins/openproject-webhooks" gem "openproject-github_integration", path: "vendored-plugins/openproject-github_integration" end
Please help me if you have any idea of solving this kind of problem.
Thanks
Zheng