CKEditor

Zyxware default image4
| 3 min read
Suppose you have a site to test which has the following functionality. There is a text field and an editor. When we enter text on the text field, immediately it should be displayed on the editor. To be more clear, after entering the text on the field then focusing out from it, the values should be displayed in the CK editor. And our intention is to automate it using Selenium. Lets check how this can be automated.
Zyxware default image3
| 2 min read
Recently, I got stuck with a strange issue while using CKEditor. The problem was, When code such as v-aligns for tables or inline styles are added in ckeditor and saved then everthing things works fine, but as soon as the page is edited inline css and classes gets stripped off the content.If you are also facing the same problem then read on to know how to solve this.
Zyxware default image3
| 3 min read
One of our client's site, which runs on Drupal 7 allows users to create envelopes based on the custom values like name, address etc submitted by the user through that Drupal website. The requirement was to load this envelope in ckeditor so that end user can edit the default values given as per their wish. So we had to load the form field with the default values given in template. We used jQuery to do this. If you are looking to know how to load a drupal 7 form field with default values from CKEDITOR body content, then read on.
Zyxware default image3
| 3 min read
Why do we use CK-Editor? Well, obviously to create customizable contents, right? If you are creating a page, you can change the heading style, color, font-size, font-style etc with the help of CK-Editor. Well,I don't know if you could create your custom color or font-size, but changing default fonts of ckeditor is definitely possible. For that you may follow the below steps: Step 1 : Create a css that contains the path to the fonts.
Zyxware default image4
| 2 min read
When we install a fresh copy of drupal, we can see that on the top bar icon, there is an image of drupal. This image is known as 'favorite icon' of a site. This is a default image which is provided by drupal. You may replace this with your custom image. If you want to know how you could change the favorite icon, please read on. To upload our custom favicon, follow the below steps. Step 1: Log into your Drupal 7 Admin panel. Using the top menu area, click on the Appearance option. This will show up the themes page where it lists all themes installed within Drupal 7.
Zyxware default image1
| 2 min read
FCKeditor Unknown You are using a feature that requires $cookie_domain to be set, but it is not set in your settings.php. A few Drupal users have reported the presence of this warning message in the status reports of their Drupal site. If you are encountering this warning in the status report of your Drupal site then continue reading to solve the problem.
Zyxware default image2
| 2 min read
In one of the Drupal projects I worked on I happened to notice a Javascript error message " ReferenceError: CKEditor is not defined " which caused a number of issues in the normal working of CKEditor. If you are facing the same error message when using CKEditor in your Drupal site and want to know how to fix then read on.
Zyxware default image2
| 2 min read
A few Drupal users noticed that their CKEditor was not working in IE8. They had also noticed that the Debug Bar they had used was showing the error "Line 11 - Error Insufficient memory to continue this operation." The IE8 debugger tool also showed the following errors 'Drupal' is undefined on line 21, 25 and 28 in ckeditor.config.js & "insufficient memory' on line 11 in ckeditor.js". If you are facing the same issue in your Drupal site when using IE8 then read on.
Zyxware default image4
| 2 min read
Drupal users who migrated from the FCKEditor to CKEditor realized that there was no easy way to Upload images in CKEditor. The reason was that unlike FCKEditor there is no upload tab available in the CKEditor browser unless CKFinder is used which requires a commercial license. If you are looking for way to overcome this limitation then continue reading.
Zyxware default image4
| 2 min read
You might encounter a situation in a Drupal site where you wish to enable CKEditor in a custom field but realized that CKEditor was not loading in custom fields. The only field CKEditor might have been loading would have been the body field. If you are looking for a way to add the CKEditor to the field of your choice in your Drupal site then continue reading.
Zyxware default image3
| 2 min read
A Drupal user encountered an error when using CKEditor in their Drupal site. Images were being uploaded but the path was incorrect as CKEditor was inserting a double slash to the image path after upload causing broken images in the Drupal site. Removing the double slash manually solved the problem. If your Drupal site is experiencing the same problem and you need a better solution then continue reading.