CKEditor

Zyxware default image2
| 4 min read
A few Drupal users encountered a situation where when they installed the Drupal CKEditor module, they lost the functionality for the setup options for each module. Installing the CKEditor seemed to disable basic UI functionality in the options page of all the other modules. If you are looking for a fix for such a situation in your Drupal site then continue reading.
Zyxware default image1
| 4 min read
Some Drupal users have encountered an situation in their CKEditor in their Drupal website when all of a sudden CKEditor started changing the image embed code on save. The preview of the image seemed to be fine but the unwanted quotes were added when the content with the image was saved. If you are encountering the same situation in the CKEditor of your Drupal site then checkout the solution below.
Zyxware default image4
| 2 min read
A few Drupal users have encountered an issue where the Drupal CKEditor Toolbar went missing in the preview after adding content to the node as though they had clicked on the switch to the plain text editor option. They were left with a plain text view of the content. If the text was removed from the body field the Toolbar seemed to appear again in the preview. If you are facing this issue in the CKEditor in your Drupal site then read onto fix the problem.
Zyxware default image1
| 2 min read
Some Drupal users have found that after they configured the Drupal CKEditor module to use Drupal IMCE as the file browser, the upload button was missing. The same problem has also occurred with the Drupal FCKEditor module and has been reported by some Drupal users. If you have discovered that the File Upload Button is missing in your Drupal website then continue reading to get the solution.
Zyxware default image2
| 1 min read
It is quite easy to add ckEditor to your custom form in Drupal. The only thing you have to do is, add the following lines to your form: '#type' => 'text_format', '#format' => 'full_html', For example: $html = 'some html'; $form['front'] = array( '#type' => 'text_format',// to load the ckEditor options '#format' => 'full_html', '#title' => t('Front'), '#value' => $html, ); The above code will create a form element with its value inside ckEditor.
Zyxware default image1
| 2 min read
Solution for CKEditor not working in a Drupal 6 site. One day, all of a sudden we found out that the CKEditor was not working on our Drupal 6 site. It had literally disappeared from our website taking the whole text area on the edit page with it. This meant that we could not create any articles as long as the CKEditor was not working. On seeing this, the first thoughts that flashed through our head was to either update the module or apply a patch believing that the CKEditor module had crashed. However our fears were unfounded and the solution turned out to be more simple than we expected.
Zyxware default image3
| 2 min read
CKEditor Module integrates one of the most popular online editors into the Drupal content management system. This module enables you to have a full-featured and customizable WYSIWYG editor in your Drupal website. In Drupal it is easy to install and configure CKEditor from within the Drupal administration panel. Still having issues with file upload button in ckeditor? Then follow these steps for a perfect CKEditor installation: