Docs

JustBoil.me Images is a simple, elegant image upload plugin for TinyMCE. It is free, opensource and licensed under Creative Commons Attribution 3.0 Unported License.

Download @Github Donate Donation gives you the right to remove attribution.

Features

JustBoil.me TinyMCE Images Upload plugin is cool for this features:

Requirements

Setup

  1. Download distribution pack. Unzip it into TinyMCE’s plugins folder.
  2. Edit config.php file found in plugins/jbimages. Minimally, you should only specify a target directory for your uploads. Every block of config.php is well-commented, so I think everything should go right.
  3. Activate jbimages plugin and add jbimages button in TinyMCE. Don’t forget to set theme:advanced and relative_urls:false.

TinyMCE 4.x Example

English version only. The l18n api in TinyMCE 4.x had changed, so temporary solution was to hard-code english strings.
  1. <!-- TinyMCE 4.x -->
  2.  
  3. <script type="text/javascript" src="/tinymce_4.x/tinymce/js/tinymce/tinymce.min.js"></script>
  4. <script type="text/javascript">
  5.  
  6. tinymce.init({
  7. selector: "textarea",
  8.  
  9. // ===========================================
  10. // INCLUDE THE PLUGIN
  11. // ===========================================
  12.  
  13. plugins: [
  14. "advlist autolink lists link image charmap print preview anchor",
  15. "searchreplace visualblocks code fullscreen",
  16. "insertdatetime media table contextmenu paste jbimages"
  17. ],
  18.  
  19. // ===========================================
  20. // PUT PLUGIN'S BUTTON on the toolbar
  21. // ===========================================
  22.  
  23. toolbar: "insertfile undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image jbimages",
  24.  
  25. // ===========================================
  26. // SET RELATIVE_URLS to FALSE (This is required for images to display properly)
  27. // ===========================================
  28.  
  29. relative_urls: false
  30.  
  31. });
  32.  
  33. </script>
  34. <!-- /TinyMCE -->

TinyMCE 3.x Example

  1. <!-- TinyMCE 3.x -->
  2.  
  3. <script type="text/javascript" src="tiny_mce-3.x/tiny_mce_src.js"></script>
  4. <script type="text/javascript">
  5.  
  6. tinyMCE.init({
  7.  
  8. mode : "textareas",
  9.  
  10. // ===========================================
  11. // Set THEME to ADVANCED
  12. // ===========================================
  13.  
  14. theme : "advanced",
  15.  
  16. // ===========================================
  17. // INCLUDE the PLUGIN
  18. // ===========================================
  19.  
  20. plugins : "jbimages,autolink,lists,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template,wordcount,advlist,autosave",
  21.  
  22. // ===========================================
  23. // Set LANGUAGE to EN (Otherwise, you have to use plugin's translation file)
  24. // ===========================================
  25.  
  26. language : "en",
  27.  
  28. theme_advanced_buttons1 : "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,styleselect,formatselect,fontselect,fontsizeselect",
  29. theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor",
  30. theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen",
  31.  
  32. // ===========================================
  33. // Put PLUGIN'S BUTTON on the toolbar
  34. // ===========================================
  35.  
  36. theme_advanced_buttons4 : "jbimages,|,insertlayer,moveforward,movebackward,absolute,|,styleprops,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,pagebreak,restoredraft",
  37.  
  38. theme_advanced_toolbar_location : "top",
  39. theme_advanced_toolbar_align : "left",
  40. theme_advanced_statusbar_location : "bottom",
  41. theme_advanced_resizing : true,
  42.  
  43. // ===========================================
  44. // Set RELATIVE_URLS to FALSE (This is required for images to display properly)
  45. // ===========================================
  46.  
  47. relative_urls : false
  48.  
  49. });
  50.  
  51. </script>
  52. <!-- /TinyMCE -->

Protect the script from external access

In case, the TinyMCE’s folder is not protected with HTTP Authorisation, you should require is_allowed() function to return `TRUE` if user is authorised, `FALSE` - otherwise. is_allowed() is found at plugins/jbimages/is_allowed.php of your TinyMCE installation.

The simplest example is below:

  1. <?php
  2. function is_allowed()
  3. {
  4. global $_COOKIE, $_SERVER;
  5.  
  6. $allow_login = "admin";
  7. $allow_pass = "george12345";
  8.  
  9. $ip = $_SERVER["REMOTE_ADDR"];
  10.  
  11. if
  12. (
  13. isset($_COOKIE["login"], $_COOKIE["passhash"]) and
  14. $_COOKIE["login"] == $allow_login and
  15. $_COOKIE["passhash"] == md5(md5($ip).md5($allow_pass))
  16. )
  17. {
  18. return TRUE;
  19. }
  20.  
  21. return FALSE;
  22. }
  23. ?>

How-to video (for TinyMCE 3.x)

UPD 03/2013. Thanks to Niels Harbo, a multimedia designer from Copenhagen, Denmark.

Troubleshooting [UPD 04/2013]

Here is a list of common errors.

The upload directory does not appear to be valid – By default, JustBoil.me guesses the physical path to your upload directory based on your img_path setting. If you see this error, probably the plugin was not able to guess the right path. The solution is to set the physical path manually ($config['upload_path']).

Inserted images are relative to site’s admin page. Usually something like <img src=”../../../images/yourimage.jpg”> instead of <img src=”/images/yourimage.jpg”>. You should set relative_urls:false in your TinyMCE init script (see integration code example above).

Codeigniter integration [UPD 04/2013]

Plugin’s PHP-side is built on Codeigniter 2.1.3. So if your project is based on this framework, you can integrate plugin’s PHP routine to your application. Here’s what you should do:

  1. Move the contents of jbimages/ci/application/views & controllers to your CI app’s folders
  2. Now unwrap this ‘wrapper’: replace all contents of jbimages/ci/application/config/uploader_settings.php with contents of jbimages/config.php and move the first to your CI app’s config folder
  3. Do the same with jbimages/ci/application/helpers/jbimages_helper.php (replace with contents of jbimages/is_allowed.php and move to your app’s helpers)
  4. Move custom language file jbimages/ci/application/language/english/jbstrings_lang.php to your app’s english language folder (the language setting is made on line 31 of the Uploader controller)
  5. Change links to PHP-side in jbimages/dialog.htm (lines 13 and 30)

Let me know if I forgot something…

Bugreports & support

Please use project’s Github page to discuss all issues. I can’t guarantee support due to the lack of time, but I’ll try to, if I can. Thank’s))

Donate

Please support the project by donating via PayPal. Donating also gives you a right to remove author’s attribution and plugin name (if you want to, of course).