Plugins Directory » redmine_ckeditor
|
Author: | jackson King |
---|---|---|
Website: | https://github.com/KJackson0603/redmine_ckeditor/tree/main | |
Code repository: | https://github.com/KJackson0603/redmine_ckeditor/tree/main | |
Registered on: | 2025-07-07 (about 7 hours ago) | |
Current version: | 0.0.1 | |
Compatible with: | Redmine 6.0.x | |
User ratings: |
This plugin is made by jacksonk for using ckeditor on redmine 6.0.4.
ckeditor ver. 4.21.
it supposed to use paste image and clipboard, easy making table etc.. for redmine 6.0.4.
- directory
(file)
redmine_ckeditor/
├── init.rb
├── lib/
│ └── tasks/
│ │ └── assets.rake
│ └── redmine_ckeditor/
│ └── hooks/
│ └── view_layouts_base_html_head_hook.rb
├── config/
│ └── routes.rb
├── app/
│ └── controllers/
│ │ └── ckeditor_controller.rb
│ └── views/
│ │ └── _ckeditor_header.html.erb
│ └── assets/
│ └── javascripts/
│ └── redmine_ckeditor.js
│ └── ckeditor/
│ └── config.js
│ └── ckeditor.js
│ └── plugins/ ...
│ └── pasteuploadimage/ ...
│ ├── plugin.js
(insert part)
/usr/src/redmine
├── public/
│ └── plugin_assets/
│ │ └── redmine_ckeditor/
│ │ └── javascripts/ <=== manual copy directory
│ └── uploads/
│ └── ckeditor/
│ └── abc12345_image.png (if you paste the image to 'redmine issue description', it'll be save this directory)
Installation notes
- install procedure **
1. download the 'zip' file or 'redmine_ckeditor' folder
2. (based on docker) docker cp redmine_ckeditor redmine-app:/usr/src/redmine/plugins/
3. docker exec -it redmine-app bash
4. check copying complete in /usr/src/redmine/plugins/
5. cd /usr/src/redmine/plugins/redmine_ckeditor/app/assets/javascripts/
6. mkdir -p /usr/src/redmine/public/plugin_assets/redmine_ckeditor/javascripts/
7. cp -r * /usr/src/redmine/public/plugin_assets/redmine_ckeditor/javascripts/
8. cd /usr/src/redmine/public/plugin_assets/redmine_ckeditor/javascripts/ and ls -al (check)
9. chown -R redmine:redmine *
10. exit the container -> in host
11. docker restart redmine-app
Changelog
0.0.1 (2025-07-08)
Compatible with Redmine 6.0.x.