Rev | Line | |
---|
[2] | 1 | #
|
---|
| 2 | # FCKeditor - The text editor for internet
|
---|
| 3 | # Copyright (C) 2003-2006 Frederico Caldeira Knabben
|
---|
| 4 | #
|
---|
| 5 | # Licensed under the terms of the GNU Lesser General Public License:
|
---|
| 6 | # http://www.opensource.org/licenses/lgpl-license.php
|
---|
| 7 | #
|
---|
| 8 | # For further information visit:
|
---|
| 9 | # http://www.fckeditor.net/
|
---|
| 10 | #
|
---|
| 11 | # "Support Open Source software. What about a donation today?"
|
---|
| 12 | #
|
---|
| 13 | # -----------------------------------------------------------------------------
|
---|
| 14 | #
|
---|
| 15 | # On some specific Linux installations you could face problems with Firefox.
|
---|
| 16 | # It could give you errors when loading the editor saying that some illegal
|
---|
| 17 | # characters were found (three strange chars in the beginning of the file).
|
---|
| 18 | # This could happen if you map the .js or .css files to PHP, for example.
|
---|
| 19 | #
|
---|
| 20 | # Those characters are the Byte Order Mask (BOM) of the Unicode encoded files.
|
---|
| 21 | # All FCKeditor files are Unicode encoded.
|
---|
| 22 | #
|
---|
| 23 | # Just rename this file to ".htaccess" and leave it in the editor directory.
|
---|
| 24 | # There are no security issues on doing it. It just sets the ".js" and ".css"
|
---|
| 25 | # files to their correct content types.
|
---|
| 26 | #
|
---|
| 27 |
|
---|
| 28 | AddType application/x-javascript .js
|
---|
| 29 | AddType text/css .css
|
---|
Note:
See
TracBrowser
for help on using the repository browser.