Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
cesa.co.za /
relay /
fckeditor /
_samples /
afp /
Delete
Unzip
Name
Size
Permission
Date
Action
fck.afpa
23
B
-rw-r--r--
2014-07-04 12:11
fck.afpa.code
4.75
KB
-rw-r--r--
2014-07-04 12:11
sample01.afp
1.76
KB
-rw-r--r--
2014-07-04 12:11
sample02.afp
3.5
KB
-rw-r--r--
2014-07-04 12:11
sample03.afp
2.85
KB
-rw-r--r--
2014-07-04 12:11
sample04.afp
3.1
KB
-rw-r--r--
2014-07-04 12:11
sampleposteddata.afp
2.06
KB
-rw-r--r--
2014-07-04 12:11
Save
Rename
<% * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2007 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * http://www.gnu.org/licenses/gpl.html * * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") * http://www.gnu.org/licenses/lgpl.html * * - Mozilla Public License Version 1.1 or later (the "MPL") * http://www.mozilla.org/MPL/MPL-1.1.html * * == END LICENSE == * * File Name: sample03.afp * This page is a basic Sample for FCKeditor integration in the AFP script language (www.afpages.de) * * Version: 1.00 * Modified: 2006-11-13 * * File Authors: Soenke Freitag (contact at www.afp-hosting.de) * Frederico Caldeira Knabben (fredck@fckeditor.net) %> <html> <head> <title>FCKeditor - AFP Sample 3</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="robots" content="noindex, nofollow"> <link href="../sample.css" rel="stylesheet" type="text/css" /> <script type="text/javascript"> function FCKeditor_OnComplete( editorInstance ) { var oCombo = document.getElementById( 'cmbToolbars' ) ; oCombo.value = editorInstance.ToolbarSet.Name ; oCombo.style.visibility = '' ; } function ChangeToolbar( toolbarName ) { window.location.href = window.location.pathname + "?Toolbar=" + toolbarName ; } </script> </head> <body> <h1>FCKeditor - AFP - Sample 3</h1> This sample shows how to change the editor toolbar. <hr> <table cellpadding="0" cellspacing="0" border="0"> <tr> <td> Select the toolbar to load: </td> <td> <select id="cmbToolbars" onchange="ChangeToolbar(this.value);" style="VISIBILITY: hidden"> <option value="Default" selected>Default</option> <option value="Basic">Basic</option> </select> </td> </tr> </table> <br> <form action="sampleposteddata.afp" method="post" target="_blank"> <% sBasePath="../../../fckeditor/" && Change this to your local path oFCKeditor = CREATEOBJECT("FCKeditor") oFCKeditor.fckeditor("FCKeditor1") lcToolbar=request.querystring("Toolbar") && Request Parameter lcToolbar=oFCKeditor.StripAttacks(lcToolbar) && Remove special escape characters IF !EMPTY(lcToolbar) oFCKeditor.ToolbarSet=lcToolbar ENDIF lcText=[This is some <strong>sample text</strong>. You are using ] lcText=lcText+[<a href='http://www.fckeditor.net/'>FCKeditor</a>.] oFCKeditor.BasePath = sBasePath oFCKeditor.cValue = lcText ? oFCKeditor.Create() %> <br> <input type="submit" value="Submit"> </form> </body> </html>