How I got CKEditor Working (somewhat)
Step 1:
Download the full package of CKEditor
(http://ckeditor.com/download)
Step 2:
Create a directory inside your OSTicket directory and name it "ckeditor." In my case my OSTicked directory was called "support" but maybe yours is called "helpdesk."
Step 3:
Uncompress the CKEditor zip file.
Step 4:
Copy all of the contents of the CKEditor file (Not the folder called "ckeditor" but the contents of that folder) and place them in the "ckeditor" file you created on your site (you know, the one you created in the "OSTicket" directory.
Follow these directions from teryakisan with some corrections/additions:
This method applies to CKEditor 3.X only. (as far as I know)
in your include/staff/header.inc.php
Find this code...
PHP Code:
Directly beneath it add this code...
PHP Code:
Your src will be wherever you put your ckeditor folder.
Then in include/staff/viewticket.inc.php
Find this line of code...
PHP Code:
<?=$info?>
Directly below that add this code...
Now this is the place where I left teryakisan's instructions and went with ootweb1's code:
PHP Code:
CKEDITOR.replace( 'response' ,
{
filebrowserBrowseUrl : '/helpdesk/ckfinder/ckfinder.html',
filebrowserImageBrowseUrl : '/helpdesk/ckfinder/ckfinder.html?Type=Images',
filebrowserFlashBrowseUrl : '/helpdesk/ckfinder/ckfinder.html?Type=Flash',
filebrowserUploadUrl : '/helpdesk/ckfinder/core/connector/php/connector.php?command=QuickUpload&type=Files',
filebrowserImageUploadUrl : '/helpdesk/ckfinder/core/connector/php/connector.php?command=QuickUpload&type=Images',
filebrowserFlashUploadUrl : '/helpdesk/ckfinder/core/connector/php/connector.php?command=QuickUpload&type=Flash'
});
Note two things:
1. The textarea where you are making this last change is called "response" and you have just changed the script section for a response or reply message in OSTicket. Further along on the script are textarea for "note" and possibly other textarea headings. I just used "find" in Notepad (my editor) and plugged in the word "textarea" and then changed the ones I wanted. Just make sure that your title (in red here) "CKEDITOR.replace( 'whatever'" matches the title in the "
2. In this part of the changes (filebrowserBrowseUrl : '/helpdesk/ckfinder/ckfinder.html') I had to change the location to "filebrowserBrowseUrl : '/support/ckfinder/ckfinder.html' so that is matched the location of my file structure on my site. You will have to make sure all of the file paths on that part of the script match your setup to get it to work. I just changed it on my first text area modification and then copied the modified area to use further down the script. Paste it in and change textarea heading for the new area (see note #1 just above this one.)