[239] | 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
---|
| 2 | <!--
|
---|
| 3 | Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
|
---|
| 4 | For licensing, see LICENSE.html or http://ckeditor.com/license
|
---|
| 5 | -->
|
---|
| 6 | <html xmlns="http://www.w3.org/1999/xhtml">
|
---|
| 7 | <head>
|
---|
| 8 | <title>Installation Guide - CKEditor</title>
|
---|
| 9 | <meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
---|
| 10 | <style type="text/css">
|
---|
| 11 | h3
|
---|
| 12 | {
|
---|
| 13 | border-bottom: 1px solid #AAAAAA;
|
---|
| 14 | }
|
---|
| 15 | pre
|
---|
| 16 | {
|
---|
| 17 | background-color: #F9F9F9;
|
---|
| 18 | border: 1px dashed #2F6FAB;
|
---|
| 19 | padding: 1em;
|
---|
| 20 | line-height: 1.1em;
|
---|
| 21 | }
|
---|
| 22 | #footer hr
|
---|
| 23 | {
|
---|
| 24 | margin: 10px 0 15px 0;
|
---|
| 25 | height: 1px;
|
---|
| 26 | border: solid 1px gray;
|
---|
| 27 | border-bottom: none;
|
---|
| 28 | }
|
---|
| 29 | #footer p
|
---|
| 30 | {
|
---|
| 31 | margin: 0 10px 10px 10px;
|
---|
| 32 | float: left;
|
---|
| 33 | }
|
---|
| 34 | #footer #copy
|
---|
| 35 | {
|
---|
| 36 | float: right;
|
---|
| 37 | }
|
---|
| 38 | </style>
|
---|
| 39 | </head>
|
---|
| 40 | <body>
|
---|
| 41 | <h1>
|
---|
| 42 | CKEditor Installation Guide</h1>
|
---|
| 43 | <h3>
|
---|
| 44 | What's CKEditor?</h3>
|
---|
| 45 | <p>
|
---|
| 46 | CKEditor is a text editor to be used inside web pages. It's not a replacement
|
---|
| 47 | for desktop text editors like Word or OpenOffice, but a component to be used as
|
---|
| 48 | part of web applications and web sites.</p>
|
---|
| 49 | <h3>
|
---|
| 50 | Installation</h3>
|
---|
| 51 | <p>
|
---|
| 52 | Installing CKEditor is an easy task. Just follow these simple steps:</p>
|
---|
| 53 | <ol>
|
---|
| 54 | <li><strong>Download</strong> the latest version of the editor from our web site: <a
|
---|
| 55 | href="http://ckeditor.com">http://ckeditor.com</a>. You should have already completed
|
---|
| 56 | this step, but be sure you have the very latest version.</li>
|
---|
| 57 | <li><strong>Extract</strong> (decompress) the downloaded file into the root of your
|
---|
| 58 | web site.</li>
|
---|
| 59 | </ol>
|
---|
| 60 | <p>
|
---|
| 61 | <strong>Note:</strong> CKEditor is by default installed in the "ckeditor"
|
---|
| 62 | folder. You can place the files in whichever you want though.</p>
|
---|
| 63 | <h3>
|
---|
| 64 | Checking Your Installation
|
---|
| 65 | </h3>
|
---|
| 66 | <p>
|
---|
| 67 | The editor comes with a few sample pages that can be used to verify that installation
|
---|
| 68 | proceeded properly. Take a look at the <a href="_samples">_samples</a> directory.</p>
|
---|
| 69 | <p>
|
---|
| 70 | To test your installation, just call the following page at your web site:</p>
|
---|
| 71 | <pre>
|
---|
| 72 | http://<your site>/<CKEditor installation path>/_samples/index.html
|
---|
| 73 |
|
---|
| 74 | For example:
|
---|
| 75 | http://www.example.com/ckeditor/_samples/index.html</pre>
|
---|
| 76 | <h3>
|
---|
| 77 | Documentation</h3>
|
---|
| 78 | <p>
|
---|
| 79 | The full editor documentation is available online at the following address:<br />
|
---|
| 80 | <a href="http://docs.cksource.com/ckeditor">http://docs.cksource.com/ckeditor</a></p>
|
---|
| 81 | <div id="footer">
|
---|
| 82 | <hr />
|
---|
| 83 | <p>
|
---|
| 84 | CKEditor - The text editor for Internet - <a href="http://ckeditor.com/">http://ckeditor.com</a>
|
---|
| 85 | </p>
|
---|
| 86 | <p id="copy">
|
---|
| 87 | Copyright © 2003-2011, <a href="http://cksource.com/">CKSource</a> - Frederico
|
---|
| 88 | Knabben. All rights reserved.
|
---|
| 89 | </p>
|
---|
| 90 | </div>
|
---|
| 91 | </body>
|
---|
| 92 | </html>
|
---|