fckeditor_php5.php
<?php
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2008 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 ==
*
* This is the integration file for PHP 5.
*
* It defines the FCKeditor class that can be used to create editor
* instances in PHP pages on server side.
*/
/**
* Check if browser is compatible with FCKeditor.
* Return true if is compatible.
*
* @return boolean
*/
function FCKeditor_IsCompatibleBrowser()
{
if ( isset( $_SERVER ) ) {
$sAgent = $_SERVER['HTTP_USER_AGENT'] ;
}
else {
global $HTTP_SERVER_VARS ;
if ( isset( $HTTP_SERVER_VARS ) ) {
$sAgent = $HTTP_SERVER_VARS['HTTP_USER_AGENT'] ;
}
else {
global $HTTP_USER_AGENT ;
$sAgent = $HTTP_USER_AGENT ;
}
}
if ( strpos($sAgent, 'MSIE') !== false && strpos($sAgent, 'mac') === false && strpos($sAgent, 'Opera') === false )
{
$iVersion = (float)substr($sAgent, strpos($sAgent, 'MSIE') + 5, 3) ;
return ($iVersion >= 5.5) ;
}
else if ( strpos($sAgent, 'Gecko/') !== false )
{
$iVersion = (int)substr($sAgent, strpos($sAgent, 'Gecko/') + 6, 8) ;
return ($iVersion >= 20030210) ;
}
else if ( strpos($sAgent, 'Opera/') !== false )
{
$fVersion = (float)substr($sAgent, strpos($sAgent, 'Opera/') + 6, 4) ;
return ($fVersion >= 9.5) ;
}
else if ( preg_match( "|AppleWebKit/(\d+)|i", $sAgent, $matches ) )
{
$iVersion = $matches[1] ;
return ( $matches[1] >= 522 ) ;
}
else
return false ;
}
class FCKeditor
{
/**
* Name of the FCKeditor instance.
*
* @access protected
* @var string
*/
public $InstanceName ;
/**
* Path to FCKeditor relative to the document root.
*
* @var string
*/
public $BasePath ;
/**
* Width of the FCKeditor.
* Examples: 100%, 600
*
* @var mixed
*/
public $Width ;
/**
* Height of the FCKeditor.
* Examples: 400, 50%
*
* @var mixed
*/
public $Height ;
/**
* Name of the toolbar to load.
*
* @var string
*/
public $ToolbarSet ;
/**
* Initial value.
*
* @var string
*/
public $Value ;
/**
* This is where additional configuration can be passed.
* Example:
* $oFCKeditor->Config['EnterMode'] = 'br';
*
* @var array
*/
public $Config ;
/**
* Main Constructor.
* Refer to the _samples/php directory for examples.
*
* @param string $instanceName
*/
public function __construct( $instanceName )
{
$this->InstanceName = $instanceName ;
$this->BasePath = '/fckeditor/' ;
$this->Width = '300' ;
$this->Height = '300' ;
$this->ToolbarSet = 'Default' ;
$this->Value = '' ;
$this->Config = array() ;
}
/**
* Display FCKeditor.
*
*/
public function Create()
{
echo $this->CreateHtml() ;
}
/**
* Return the HTML code required to run FCKeditor.
*
* @return string
*/
public function CreateHtml()
{
$HtmlValue = htmlspecialchars( $this->Value ) ;
$Html = '' ;
if ( $this->IsCompatible() )
{
if ( isset( $_GET['fcksource'] ) && $_GET['fcksource'] == "true" )
$File = 'fckeditor.original.html' ;
else
$File = 'fckeditor.html' ;
$Link = "{$this->BasePath}editor/{$File}?InstanceName={$this->InstanceName}" ;
if ( $this->ToolbarSet != '' )
$Link .= "&Toolbar={$this->ToolbarSet}" ;
// Render the linked hidden field.
$Html .= "<input type=\"hidden\" id=\"{$this->InstanceName}\" name=\"{$this->InstanceName}\" value=\"{$HtmlValue}\" style=\"display:none\" />" ;
// Render the configurations hidden field.
$Html .= "<input type=\"hidden\" id=\"{$this->InstanceName}___Config\" value=\"" . $this->GetConfigFieldString() . "\" style=\"display:none\" />" ;
// Render the editor IFRAME.
$Html .= "<iframe id=\"{$this->InstanceName}___Frame\" src=\"{$Link}\" width=\"{$this->Width}\" height=\"{$this->Height}\" frameborder=\"0\" scrolling=\"no\"></iframe>" ;
}
else
{
if ( strpos( $this->Width, '%' ) === false )
$WidthCSS = $this->Width . 'px' ;
else
$WidthCSS = $this->Width ;
if ( strpos( $this->Height, '%' ) === false )
$HeightCSS = $this->Height . 'px' ;
else
$HeightCSS = $this->Height ;
$Html .= "<textarea name=\"{$this->InstanceName}\" rows=\"4\" cols=\"40\" style=\"width: {$WidthCSS}; height: {$HeightCSS}\">{$HtmlValue}</textarea>" ;
}
return $Html ;
}
/**
* Returns true if browser is compatible with FCKeditor.
*
* @return boolean
*/
public function IsCompatible()
{
return FCKeditor_IsCompatibleBrowser() ;
}
/**
* Get settings from Config array as a single string.
*
* @access protected
* @return string
*/
public function GetConfigFieldString()
{
$sParams = '' ;
$bFirst = true ;
foreach ( $this->Config as $sKey => $sValue )
{
if ( $bFirst == false )
$sParams .= '&' ;
else
$bFirst = false ;
if ( $sValue === true )
$sParams .= $this->EncodeConfig( $sKey ) . '=true' ;
else if ( $sValue === false )
$sParams .= $this->EncodeConfig( $sKey ) . '=false' ;
else
$sParams .= $this->EncodeConfig( $sKey ) . '=' . $this->EncodeConfig( $sValue ) ;
}
return $sParams ;
}
/**
* Encode characters that may break the configuration string
* generated by GetConfigFieldString().
*
* @access protected
* @param string $valueToEncode
* @return string
*/
public function EncodeConfig( $valueToEncode )
{
$chars = array(
'&' => '%26',
'=' => '%3D',
'"' => '%22' ) ;
return strtr( $valueToEncode, $chars ) ;
}
}
fckeditor.php
<?php
/*
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
* Copyright (C) 2003-2008 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 ==
*
* This is the integration file for PHP (All versions).
*
* It loads the correct integration file based on the PHP version (avoiding
* strict error messages with PHP 5).
*/
if ( !function_exists('version_compare') || version_compare( phpversion(), '5', '<' ) )
include_once( 'fckeditor_php4.php' ) ;
else
include_once( 'fckeditor_php5.php' ) ;
<?php require_once('../Connections/pacific.php'); ?>
<?php
include_once("../fckeditor/fckeditor.php") ;
?>
<?php
if (!isset($_SESSION)) {
session_start();
}
$MM_authorizedUsers = "";
$MM_donotCheckaccess = "true";
// *** Restrict Access To Page: Grant or deny access to this page
function isAuthorized($strUsers, $strGroups, $UserName, $UserGroup) {
// For security, start by assuming the visitor is NOT authorized.
$isValid = False;
// When a visitor has logged into this site, the Session variable MM_Username set equal to their username.
// Therefore, we know that a user is NOT logged in if that Session variable is blank.
if (!empty($UserName)) {
// Besides being logged in, you may restrict access to only certain users based on an ID established when they login.
// Parse the strings into arrays.
$arrUsers = Explode(",", $strUsers);
$arrGroups = Explode(",", $strGroups);
if (in_array($UserName, $arrUsers)) {
$isValid = true;
}
// Or, you may restrict access to only certain users based on their username.
if (in_array($UserGroup, $arrGroups)) {
$isValid = true;
}
if (($strUsers == "") && true) {
$isValid = true;
}
}
return $isValid;
}
$MM_restrictGoTo = "index.php";
if (!((isset($_SESSION['MM_Username'])) && (isAuthorized("",$MM_authorizedUsers, $_SESSION['MM_Username'], $_SESSION['MM_UserGroup'])))) {
$MM_qsChar = "?";
$MM_referrer = $_SERVER['PHP_SELF'];
if (strpos($MM_restrictGoTo, "?")) $MM_qsChar = "&";
if (isset($QUERY_STRING) && strlen($QUERY_STRING) > 0)
$MM_referrer .= "?" . $QUERY_STRING;
$MM_restrictGoTo = $MM_restrictGoTo. $MM_qsChar . "accesscheck=" . urlencode($MM_referrer);
header("Location: ". $MM_restrictGoTo);
exit;
}
?>
<?php
$thumbs_dir=$_GET['thumbs_dir'];
$thumbs_table=$_GET['thumbs_table'];
$drid=$_GET['DrID'];
// *** BEGIN Simply Upload ***
require_once("FXInc/uploadAction.inc");
$errMsg = "";
$action = true;
$noPath = true;
//$rename = false;
$delete = true;
$FX_successRedirect = "";
$FX_DirPath = "../images/ba/".$thumbs_dir."/thumbs/";
$FX_typearray = array("application","audio","image");
$FX_extarray = array();
$FX_size = "";
$FX_fields = array();
if ((isset($HTTP_POST_VARS["FX_upload"])) && ($HTTP_POST_VARS["FX_upload"] == "form1")) {
require_once("FXInc/upload2.inc");
}
// *** END Simply Upload ***
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
$editFormAction = $_SERVER['PHP_SELF'];
if (isset($_SERVER['QUERY_STRING'])) {
$editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
}
//BEGIN RAY ITERATOR
foreach ($_POST as $key => $value)
{
if (substr($key,0,5) == 'thumb')
{
$value = eregi_replace("\.jpg$", '', $value);
$_POST[$key] = $value;
}
}
//END RAY ITERATOR
if ((isset($_POST["MM_update"])) && ($_POST["MM_update"] == "form1")) {
$updateSQL = "UPDATE ".$thumbs_table." SET
".((trim($_POST['thumb1'])) != '' ? "thumb1=".GetSQLValueString($_POST['thumb1'], "text")."," : "")."
".((trim($_POST['thumb2'])) != '' ? "thumb2=".GetSQLValueString($_POST['thumb2'], "text")."," : "")."
".((trim($_POST['thumb3'])) != '' ? "thumb3=".GetSQLValueString($_POST['thumb3'], "text")."," : "")."
".((trim($_POST['thumb4'])) != '' ? "thumb4=".GetSQLValueString($_POST['thumb4'], "text")."," : "")."
description=".GetSQLValueString($_POST['description'], "text").",
DrID=".GetSQLValueString($_POST['DrID'], "text")."
WHERE case_id=".GetSQLValueString($_POST['case_id'], "int");
mysql_select_db($database_pacific, $pacific);
$Result1 = mysql_query($updateSQL, $pacific) or die(mysql_error());
$updateGoTo = "update2.php";
if (isset($_SERVER['QUERY_STRING'])) {
$updateGoTo .= (strpos($updateGoTo, '?')) ? "&" : "?";
$updateGoTo .= $_SERVER['QUERY_STRING'];
}
header(sprintf("Location: %s", $updateGoTo));
}
$colname_rsCase = "-1";
if (isset($_GET['case_id'])) {
$colname_rsCase = (get_magic_quotes_gpc()) ? $_GET['case_id'] : addslashes($_GET['case_id']);
}
mysql_select_db($database_pacific, $pacific);
$query_rsCase = sprintf("SELECT case_id, thumb1, thumb2, thumb3, thumb4, DrID, TypeID, `description` FROM ".$thumbs_table." WHERE case_id = %s", GetSQLValueString($colname_rsCase, "int"));
$rsCase = mysql_query($query_rsCase, $pacific) or die(mysql_error());
$row_rsCase = mysql_fetch_assoc($rsCase);
$totalRows_rsCase = mysql_num_rows($rsCase);
mysql_select_db($database_pacific, $pacific);
$query_rsDoctors = "SELECT distinct Drs.DrID, Dr FROM Drs,".$thumbs_table." WHERE ".$thumbs_table.".DrID=Drs.DrID ORDER BY Dr ASC";
$rsDoctors = mysql_query($query_rsDoctors, $pacific) or die(mysql_error());
$row_rsDoctors = mysql_fetch_assoc($rsDoctors);
$totalRows_rsDoctors = mysql_num_rows($rsDoctors);
$colname_rsDrTitle = "-1";
if (isset($_GET['DrID'])) {
$colname_rsDrTitle = (get_magic_quotes_gpc()) ? $_GET['DrID'] : addslashes($_GET['DrID']);
}
mysql_select_db($database_pacific, $pacific);
$query_rsDrTitle = sprintf("SELECT Dr FROM Drs WHERE DrID = %s", GetSQLValueString($colname_rsDrTitle, "int"));
$rsDrTitle = mysql_query($query_rsDrTitle, $pacific) or die(mysql_error());
$row_rsDrTitle = mysql_fetch_assoc($rsDrTitle);
$totalRows_rsDrTitle = mysql_num_rows($rsDrTitle);
$colname_rsTypeTitle = "-1";
if (isset($_GET['thumbs_dir'])) {
$colname_rsTypeTitle = (get_magic_quotes_gpc()) ? $_GET['thumbs_dir'] : addslashes($_GET['thumbs_dir']);
}
mysql_select_db($database_pacific, $pacific);
$query_rsTypeTitle = sprintf("SELECT Type FROM Types WHERE thumbs_dir = %s", GetSQLValueString($colname_rsTypeTitle, "text"));
$rsTypeTitle = mysql_query($query_rsTypeTitle, $pacific) or die(mysql_error());
$row_rsTypeTitle = mysql_fetch_assoc($rsTypeTitle);
$totalRows_rsTypeTitle = mysql_num_rows($rsTypeTitle);
$crumb="nav";
$crumb2="update";
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title><?php include('includes/browser_title.php');?></title>
<link href="css/admin.css" rel="stylesheet" type="text/css" />
</head>
<body>
<?php include('includes/page_top.php');?>
<div id="contentWrap">
<div id="sidebar">
<?php include('includes/sidebar.php');?>
</div>
<div id="content">
<h1>
<?php echo $row_rsTypeTitle['Type'];?><br />
<?php echo $row_rsDrTitle['Dr'];?><br />
Case ID:<span style="color:#ff0000"><?php echo $row_rsCase['case_id']; ?></span></h1>
<form id="form1" name="form1" method="POST" action="<?php echo $editFormAction; ?>" enctype="multipart/form-data" onSubmit="FX_processPop();">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td valign="top">
Description<br />
<?php
$oFCKeditor = new FCKeditor('description') ;
$oFCKeditor->BasePath = '../fckeditor/' ;
$oFCKeditor->Value = ''.$row_rsCase['description'].'' ;
$oFCKeditor->Create() ;
?></td>
</tr>
<tr>
<td valign="top"> </td>
</tr>
<tr>
<td valign="top">Current thumbnail image 1 (before - facing front): <br />
<strong><?php echo $row_rsCase['thumb1']; ?>.jpg</strong></td>
</tr>
<tr>
<td valign="top"><label>
<input name="thumb1" type="file" id="thumb1" />
</label></td>
</tr>
<tr>
<td valign="top">Current thumbnail image 2 (after - facing front): <br />
<strong><?php echo $row_rsCase['thumb2']; ?>.jpg</strong></td>
</tr>
<tr>
<td valign="top"><label>
<input name="thumb2" type="file" id="thumb2" />
</label></td>
</tr>
<tr>
<td valign="top">Current thumbnail image 3 (before - side view): <br />
<strong><?php echo $row_rsCase['thumb3']; ?>.jpg</strong></td>
</tr>
<tr>
<td valign="top"><label>
<input name="thumb3" type="file" id="thumb3" />
</label></td>
</tr>
<tr>
<td valign="top">Current thumbnail image 4 (after - side view): <br />
<strong><?php echo $row_rsCase['thumb4']; ?>.jpg</strong></td>
</tr>
<tr>
<td><label>
<input name="thumb4" type="file" id="thumb4" />
</label></td>
</tr>
<tr>
<td valign="top"> </td>
</tr>
<tr>
<td valign="top"><em>Leave "as is" if you do not wish to assign a different Doctor to this case </em></td>
</tr>
<tr>
<td valign="top"><label>Doctor
<select name="DrID" id="DrID">
<?php
do {
?>
<option value="<?php echo $row_rsDoctors['DrID']?>"<?php if ($row_rsCase['DrID']=="".$row_rsDoctors['DrID']."") {echo "selected=\"selected\"";} ?>><?php echo $row_rsDoctors['Dr']?></option>
<?php
} while ($row_rsDoctors = mysql_fetch_assoc($rsDoctors));
$rows = mysql_num_rows($rsDoctors);
if($rows > 0) {
mysql_data_seek($rsDoctors, 0);
$row_rsDoctors = mysql_fetch_assoc($rsDoctors);
}
?>
</select>
</label></td>
</tr>
<tr>
<td valign="top"> </td>
</tr>
<tr>
<td valign="top"> </td>
</tr>
<tr>
<td valign="top">
<input name="case_id" type="hidden" id="case_id" value="<?php echo $row_rsCase['case_id']; ?>" />
<input name="thumbs_table" type="hidden" id="thumbs_table" value="<?php echo $thumbs_table; ?>" />
<input name="thumbs_dir" type="hidden" id="thumbs_dir" value="<?php echo $thumbs_dir; ?>" />
<input type="submit" name="Submit" value="Continue >>">
<input type="reset" name="Submit2" value="Clear Form & Start Over"></td>
</tr>
<tr>
<td valign="top"> </td>
</tr>
<tr>
<td valign="top"> </td>
</tr>
<tr>
<td valign="top"> </td>
</tr>
<tr>
<td valign="top"> </td>
</tr>
<tr>
<td valign="top"> </td>
</tr>
<tr>
<td valign="top"> </td>
</tr>
<tr>
<td valign="top"> </td>
</tr>
</table>
<input type="hidden" name="FX_upload" value="form1">
<input type="hidden" name="MM_update" value="form1">
</form>
</div>
</div>
<!--Raven Analytics Do Not Remove-->
<script type="text/javascript">
var ravenProt = (("https:" == document.location.protocol) ? "https://" : "http://");
document.write(unescape("%3Cscript src='" + ravenProt + "raven-seo-tracker.com/rt.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
var ravenTracker = _raven._init("0BFADC00");
ravenTracker._track();
</script>
<!--End Raven-->
</body>
</html>
<?php
//mysql_free_result($rsCase);
//mysql_free_result($rsDoctors);
mysql_free_result($rsDrTitle);
mysql_free_result($rsTypeTitle);
//mysql_free_result($rsType);
?>
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
135:
136:
137:
138:
139:
140:
141:
142:
143:
144:
145:
146:
147:
148:
149:
150:
151:
152:
153:
154:
155:
156:
157:
158:
159:
160:
161:
162:
163:
164:
165:
166:
167:
168:
169:
170:
171:
172:
173:
174:
175:
176:
177:
178:
179:
180:
181:
182:
183:
184:
185:
186:
187:
188:
189:
190:
191:
192:
193:
194:
195:
196:
197:
198:
199:
200:
201:
202:
203:
204:
205:
206:
207:
208:
209:
210:
211:
212:
213:
214:
215:
216:
217:
218:
219:
220:
221:
222:
223:
224:
225:
226:
227:
228:
229:
230:
231:
232:
233:
234:
235:
236:
237:
238:
239:
240:
241:
242:
243:
244:
245:
246:
247:
248:
249:
250:
251:
252:
253:
254:
255:
256:
257:
258:
259:
260:
261:
262:
263:
264:
265:
266:
267:
268:
269:
270:
271:
272:
273:
274:
275:
276:
277:
278:
279:
280:
281:
282:
283:
284:
285:
286:
287:
288:
289:
290:
291:
292:
293:
294:
295:
296:
297:
298:
299:
300:
301:
302:
303:
304:
305:
306:
307:
308:
309:
310:
311:
312:
313:
314:
315:
316:
317:
318:
319:
320:
321:
322:
323:
324:
325:
326:
327:
328:
329:
330:
331:
332:
333:
334:
335:
336:
337:
338:
339:
340:
341:
342:
343:
344:
345:
346:
347:
348:
349:
350:
351:
352:
353:
354:
355:
356:
357:
358:
359:
360:
361:
362:
363:
364:
365:
366:
367:
368:
369:
370:
371:
372:
373:
374:
375:
376:
377:
378:
379:
380:
381:
382:
383:
384:
385:
386:
387:
388:
389:
390:
391:
392:
393:
394:
395:
396:
397:
398:
399:
400:
401:
402:
403:
404:
405:
406:
407:
408:
409:
410:
411:
412:
413:
414:
415:
416:
417:
418:
419:
420:
421:
422:
423:
424:
425:
426:
427:
428:
429:
430:
431:
432:
433:
434:
435:
436:
437:
438:
439:
440:
441:
442:
443:
444:
445:
446:
447:
448:
449:
450:
451:
452:
453:
454:
455:
456:
457:
458:
459:
460:
461:
462:
463:
464:
465:
466:
467:
468:
469:
470:
471:
472:
473:
474:
475:
476:
477:
478:
479:
480:
481:
482:
483:
484:
485:
486:
487:
488:
489:
490:
491:
492:
493:
494:
495:
496:
497:
498:
499:
500:
501:
502:
503:
504:
505:
506:
507:
508:
509:
510:
511:
512:
513:
514:
515:
516:
517:
518:
519:
520:
521:
522:
523:
524:
525:
526:
527:
528:
529:
530:
531:
532:
533:
534:
535:
536:
537:
538:
539:
540:
541:
542:
543:
544:
545:
546:
547:
548:
549:
550:
551:
552:
553:
554:
555:
556:
557:
558:
559:
560:
561:
562:
563:
564:
565:
566:
567:
568:
569:
570:
571:
572:
573:
574:
575:
576:
577:
578:
579:
580:
581:
582:
583:
584:
585:
586:
587:
588:
589:
590:
591:
592:
593:
594:
595:
596:
597:
598:
599:
600:
601:
602:
603:
604:
605:
606:
607:
608:
609:
610:
611:
612:
613:
614:
615:
616:
617:
618:
619:
620:
621:
622:
623:
624:
625:
626:
627:
628:
629:
630:
631:
632:
633:
634:
635:
636:
637:
638:
639:
640:
by: hernst42Posted on 2009-09-29 at 13:00:39ID: 25452812
You migth add at the beginning fckeditor.php to see the error or look into the error-log of your webserver.
ini_set('display_errors', 1);
error_reporting(E_ALL);