Skip to content

Latest commit

 

History

History
40 lines (33 loc) · 2.41 KB

README.md

File metadata and controls

40 lines (33 loc) · 2.41 KB
category order url menu-title meta-title-short
upgrading
20
guide/dev_upgrade
Upgrading
Upgrading

Upgrading CKEditor

This article describes the steps you need to take when you want to upgrade your CKEditor 4.x installation to the latest version.

To upgrade CKEditor, proceed as follows:

  1. Rename your existing editor folder to a backup folder, for example ckeditor_old.
  2. Download the latest version from the official CKEditor Download site.
    • If you are using one of the pre-defined presets like Standard or Full, download the same one.
    • If you created a custom CKEditor build, you have a few options, as described in your backed-up build-config.js file.
      • You can use the unique link to download the updated version of your custom build using the latest editor release.
      • You can use the unique link to online builder pre-loaded with your custom build configuration and using the latest editor release.
      • You can go to the online builder site and click the Upload build-config.js button. Select your backed-up custom build configuration file and download the updated build containing the latest versions of all selected plugins.
  3. Extract (decompress) the downloaded archive to the original editor directory, for example ckeditor.
  4. Copy all configuration files that you have changed from the backup directory to their corresponding positions in the new directory. These could include (but are not limited to) the following files:
    • config.js
    • contents.css
    • styles.js
    • custom template files

Further Reading

The following resources discuss related issues:

  • The {@link guide/dev/upgrade/upgrade_ckeditor_3/README Upgrading from CKEditor 3} article shows how to upgrade from CKEditor 3 to CKEditor 4.
  • The {@link guide/dev/upgrade/upgrade_fckeditor_2/README Upgrading from FCKeditor} article shows how to upgrade from FCKeditor to CKEditor 4.
  • The {@link guide/dev/api_changes/README API Changes in CKEditor 4} article describes some API changes between CKEditor 3 and CKEditor 4.
  • The {@link guide/dev/patching/README Patching Old Versions of CKEditor} article explains how to apply a selected patch on your CKEditor installation (warning: unrecommended method, for advanced users only).