Question

upgrade server from php4 to php5 - fckeditor is now not displaying

Asked by: phillystyle123

Hello,

I think I've encountered this before but not sure how to fix it. I've upgraded my server from php4 to php5. fckeditor was displaying fine when i was using php4 but now with php5, it's not displaying - no 404 error or anything - just a giant space where fckeditor is supposed to display. I might add that this is a fairly recent build of fckeditor. Below is the code for fckeditor.php, fckeditor_php5.php and one of my html pages (one that's supposed to be displaying the editor)

thanks!!!!!

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 .= "&amp;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 .= '&amp;' ;
			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">&nbsp;</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">&nbsp;</td>
</tr>
<tr>
<td valign="top"><em>Leave &quot;as is&quot; 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">&nbsp;</td>
</tr>
<tr>
<td valign="top">&nbsp;</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 >>">
  &nbsp;
  <input type="reset" name="Submit2" value="Clear Form &amp; Start Over"></td>
</tr>
<tr>
<td valign="top">&nbsp;</td>
</tr>
<tr>
<td valign="top">&nbsp;</td>
</tr>
<tr>
<td valign="top">&nbsp;</td>
</tr>
<tr>
<td valign="top">&nbsp;</td>
</tr>
<tr>
<td valign="top">&nbsp;</td>
</tr>
<tr>
<td valign="top">&nbsp;</td>
</tr>
<tr>
<td valign="top">&nbsp;</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:

Select allOpen in new window

This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.

Subscribe now for full access to Experts Exchange and get

Instant Access to this Solution

  • Plus...
  • 30 Day FREE access, no risk, no obligation
  • Collaborate with the world's top tech experts
  • Unlimited access to our exclusive solution database
  • Never be left without tech help again

Subscribe Now

Asked On
2009-09-29 at 12:49:30ID24771395
Topics

PHP Scripting Language

,

JavaScript

,

PHP Installation

Participating Experts
3
Points
375
Comments
9

Trusted by hundreds of thousands everyday for fast, accurate and reliable tech support.

  • "The time we save is the biggest benefit of Experts Exchange to Warner Bros. What could take multiple guys 2 hours or more each to find is accessed in around 15 minutes on Experts Exchange." Mike Kapnisakis, Warner Bros.
  • "Our team likes having a resource that is more secure than just using Google and most experts using this service really know their stuff. It's nice to look here first versus using Google." Dayna Sellner, Lockheed Martin
  • "Anytime that I've been stumped with a problem, 9 out of 10 times Experts Exchange has either the accepted solution or an open discussion of the potential solution to the problem." Kenny Red, eBay Inc.

See what Experts Exchange can do for you.

Got a question?

We've got the answer.

Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.

Screenshot of Experts Exchange Knowledgebase

Need individual assistance?

Our experts are ready to help.

If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.

Screenshot of Experts Exchange Knowledgebase

Want to learn from the best?

Read articles from industry experts.

Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.

Screenshot of an Article

Working on a long term project?

Store your work and research.

Save solutions to your questions, answers you’ve discovered through searching plus helpful articles in your personal knowledgebase for easy future access.

Screenshot of Experts Exchange Knowledgebase

Access the answers to your technology questions today.

Subscribe Now

30-day free trial. Register in 60 seconds.

What Makes Experts Exchange Unique?

Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Trusted by the world's most respected brands.

image of each brand's logo

Faithfully serving IT professionals since 1996.

Experts Exchange Logo

Try it out and discover for yourself.

Subscribe Now

30-day free trial. Register in 60 seconds.

Related Solutions

  1. fedela core 3.0 come with php5 or php4
    Please suggest fedela core 3.0 come with php5 or php4
  2. Migrating PHP4 scripts to PHP5
    Hi I have a lot of php4 scripts, and we are just upgrading to php5. I have read there that you can turn on compatibility with php4 in the php.ini. Can you tell me if this means the scripts are compatible with both php4 and php5, or just php4, and are there any downsides in...
  3. What are the differences between PHP4 and PHP5?
    What are the differences between PHP4 and PHP5?
  4. Migrating PHP4 to PHP5
    Hi, I was wondering what are some other differences to php5 vs php4 besides the object orientedness of php5. I know that was the main staple of php5, but I'm wanting to migrate some php4 applications and I'm wondering if any function names have changed etc...
  5. php4 to php5
    how to migrated php4 to php5 on plesk 8

Free Tech Articles

  1. WARNING: 5 Reasons why you should NEVER fix a computer for free.
    It is in our nature to love the puzzle. We are obsessed. The lot of us. We love puzzles. We love the challenge. We thrive on finding the answer. We hate disarray. It bothers us deep in our soul. W...
  2. SCCM OSD Basic troubleshooting
    SCCM 2007 OSD is a fantastic way to deploy operating systems, however, like most things SCCM issues can sometimes be difficult to resolve due to the sheer volume of logs to sift through and the dispe...
  3. Migrate Small Business Server 2003 to Exchange 2010 and Windows 2008 R2
    This guide is intended to provide step by step instructions on how to migrate from Small Business Server 2003 to Windows 2008 R2 with Exchange 2010. For this migration to work you will need the fo...
  4. Create a Win7 Gadget
    This article shows you how to create a simple "Gadget" -- a sort of mini-application supported by Windows 7 and Vista. Gadgets can be dropped anywhere on the desktop to provide instant information, ...
  5. Outlook continually prompting for username and password
    There have been a lot of questions recently regarding Outlook prompting for a username and password whilst using Exchange 2007. There are a few reasons why this would happen and I will try to cover t...
  6. Backup Exchange 2010 Information Store using Windows Backup
    There seems to be quite a lot of confusion around the ability to backup Exchange 2010 using the built in Windows Backup feature. This stems from the omission of this feature prior to Exchange 2007 s...

Cloud Class Webinars

  1. Avoiding Bugs in Microsoft Access
    Alison Balter takes and in-depth look at avoiding bugs in Access. In this webinar you will learn about using the immediate window to debug your applications, invoking the debugger, using breakpoints to troubleshoot, stepping through code, setting the next statement to execute, ...
  2. Top 10 Best New Features in Visio 2010
    Scott Helmers gives live demonstrations of the top 10 new features in Visio 2010. This webinar will teach you how to create compelling diagrams by adding shapes to the page with a single click, linking the shapes in a diagram to data in Excel (or SQL Server, or SharePoint), ...
  3. IT Consultant Business Secrets Revealed
    Michael Munger, Experts Exchange tech pro and IT consultant, pulls back the curtain on his very successful businesses and answers question on every IT consultant and business owner should know about. He shares secrets on what he did to solve the 5 most common problems in IT, ...
  4. Disaster Recovery and Business Continuity
    Quest CTO, Mike Billon, gives an overview of the steps involved in building a dunamic disaster recovery plan. Through case studies and an examination of software/hardware tooles for monitoring and testing, you'll gain a better understandin of where you are, where you want ...
  5. Organize Your Visio Diagrams with Containers and Lists
    Scott Helmers uses cross functional flowcharts, wireframe diagrams, data graphic legends and seating charts to teach you: how to ustilize all three new structured diagram components in Visio 2010, the best practices for organizeing shapes in previous version of Visio, how to organize ...
  6. How to Us Objects, Properties, Events and Methods in Microsoft Access
    Alison Dalter gives an in-depbth look at objects, properties, events and methods in Microsoft Access. In this webinar you will learn about using the object browser, referring to objects, working with properties and methods, working with object variables, understanding the ...

Join the Community

Give a Little. Get a Lot.

Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.

Join the Community

Answers

 

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);

 

by: phillystyle123Posted on 2009-09-29 at 13:16:11ID: 25453008

ah!

here's what i'm getting:

Notice: Undefined variable: row_rsCase in /home/pacific/www/admin/insert1.php on line 180


//line 180
 
$oFCKeditor->Value = ''.$row_rsCase['description'].'' ;

                                              
1:
2:
3:

Select allOpen in new window

 

by: phillystyle123Posted on 2009-09-29 at 13:26:43ID: 25453125

but then again, i'm not getting any error on some pages and still not fckeditor. again, this all worked fine in php4 but it's a fairly recent build of fckeditor.

query:
$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);


calling fckeditor:
//top of page
<?php
include_once("../fckeditor/fckeditor.php") ;
?>
<?php
$oFCKeditor = new FCKeditor('description') ;
$oFCKeditor->BasePath = '../fckeditor/' ;
$oFCKeditor->Value = ''.$row_rsCase['description'].'' ;
$oFCKeditor->Create() ;
?>

 

by: phillystyle123Posted on 2009-10-06 at 14:41:07ID: 25510229

Still having issues getting fckeditor to show up - i recently upgraded from php4 to php5 - no luck -

<?php
$oFCKeditor = new FCKeditor('description') ;
$oFCKeditor->BasePath = '../fckeditor/' ;
$oFCKeditor->Value = ''.$row_rsCase['description'].'' ;
$oFCKeditor->Create() ;
?>
 
source code for entire page:
 
<?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'];
$typeid=$_GET['TypeID'];
 
// *** 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/upload.inc");
}
// *** END Simply Upload ***
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") 
{
  if (PHP_VERSION < 6) {
    $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;
}
}
//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
$editFormAction = $_SERVER['PHP_SELF'];
if (isset($_SERVER['QUERY_STRING'])) {
  $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
}
 
if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
  $insertSQL = sprintf("INSERT INTO ".$thumbs_table." (thumb1, thumb2, thumb3, thumb4, DrID, TypeID, `description`, Patient_Name,Patient_Age, Patient_Height, Patient_Weight, Patient_Kids, Incision_Type, Placement_Type, Implant_Type, Size_ccs, Cup_Size_Before, Cup_Size_After) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s)",
                       GetSQLValueString($_POST['thumb1'], "text"),
                       GetSQLValueString($_POST['thumb2'], "text"),
                       GetSQLValueString($_POST['thumb3'], "text"),
                       GetSQLValueString($_POST['thumb4'], "text"),
                       GetSQLValueString($_POST['DrID'], "int"),
                       GetSQLValueString($_POST['TypeID'], "int"),
                       GetSQLValueString($_POST['description'], "text"),
						GetSQLValueString($_POST['Patient_Name'], "text"),
						GetSQLValueString($_POST['Patient_Age'], "text"),
						GetSQLValueString($_POST['Patient_Height'], "text"),
						GetSQLValueString($_POST['Patient_Weight'], "text"),
						GetSQLValueString($_POST['Patient_Kids'], "text"),
						GetSQLValueString($_POST['Incision_Type'], "text"),
						GetSQLValueString($_POST['Placement_Type'], "text"),
						GetSQLValueString($_POST['Implant_Type'], "text"),
						GetSQLValueString($_POST['Size_ccs'], "text"),
						GetSQLValueString($_POST['Cup_Size_Before'], "text"),
						GetSQLValueString($_POST['Cup_Size_After'], "text"));
 
  mysql_select_db($database_pacific, $pacific);
  $Result1 = mysql_query($insertSQL, $pacific) or die(mysql_error());
 
  $insertGoTo = "insert2.php";
  if (isset($_SERVER['QUERY_STRING'])) {
    $insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
    $insertGoTo .= $_SERVER['QUERY_STRING'];
  }
  header(sprintf("Location: %s", $insertGoTo));
}
 
 
mysql_select_db($database_pacific, $pacific);
$query_rsDoctors = "SELECT Drs.DrID, Dr FROM Drs, TypesDrs WHERE TypesDrs.TypeID=".$typeid." AND Drs.DrID=TypesDrs.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_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);
 
//queries for breast fields
mysql_select_db($database_pacific, $pacific);
$query_rsAgeRange = "SELECT age_range_id, age_range FROM age_range ORDER BY age_range ASC";
$rsAgeRange = mysql_query($query_rsAgeRange, $pacific) or die(mysql_error());
$row_rsAgeRange = mysql_fetch_assoc($rsAgeRange);
$totalRows_rsAgeRange = mysql_num_rows($rsAgeRange);
 
mysql_select_db($database_pacific, $pacific);
$query_rsHeightRange = "SELECT height_range_id, height_range FROM height_range ORDER BY height_range ASC";
$rsHeightRange = mysql_query($query_rsHeightRange, $pacific) or die(mysql_error());
$row_rsHeightRange = mysql_fetch_assoc($rsHeightRange);
$totalRows_rsHeightRange = mysql_num_rows($rsHeightRange);
 
mysql_select_db($database_pacific, $pacific);
$query_rsWeightRange = "SELECT weight_range_id, weight_range FROM weight_range ORDER BY weight_range_id ASC";
$rsWeightRange = mysql_query($query_rsWeightRange, $pacific) or die(mysql_error());
$row_rsWeightRange = mysql_fetch_assoc($rsWeightRange);
$totalRows_rsWeightRange = mysql_num_rows($rsWeightRange);
 
mysql_select_db($database_pacific, $pacific);
$query_rsKids = "SELECT kids_id, kids FROM kids ORDER BY kids_id ASC";
$rsKids = mysql_query($query_rsKids, $pacific) or die(mysql_error());
$row_rsKids = mysql_fetch_assoc($rsKids);
$totalRows_rsKids = mysql_num_rows($rsKids);
 
mysql_select_db($database_pacific, $pacific);
$query_rsIncisionType = "SELECT incision_type_id, incision_type FROM incision_type ORDER BY incision_type ASC";
$rsIncisionType = mysql_query($query_rsIncisionType, $pacific) or die(mysql_error());
$row_rsIncisionType = mysql_fetch_assoc($rsIncisionType);
$totalRows_rsIncisionType = mysql_num_rows($rsIncisionType);
 
mysql_select_db($database_pacific, $pacific);
$query_rsPlacementType = "SELECT placement_type_id, placement_type FROM placement_type ORDER BY placement_type ASC";
$rsPlacementType = mysql_query($query_rsPlacementType, $pacific) or die(mysql_error());
$row_rsPlacementType = mysql_fetch_assoc($rsPlacementType);
$totalRows_rsPlacementType = mysql_num_rows($rsPlacementType);
 
mysql_select_db($database_pacific, $pacific);
$query_rsImplantType = "SELECT implant_type_id, implant_type FROM implant_type ORDER BY implant_type ASC";
$rsImplantType = mysql_query($query_rsImplantType, $pacific) or die(mysql_error());
$row_rsImplantType = mysql_fetch_assoc($rsImplantType);
$totalRows_rsImplantType = mysql_num_rows($rsImplantType);
 
mysql_select_db($database_pacific, $pacific);
$query_rsCupSizeBefore = "SELECT cup_size_before_id, cup_size_before FROM cup_size_before ORDER BY cup_size_before ASC";
$rsCupSizeBefore = mysql_query($query_rsCupSizeBefore, $pacific) or die(mysql_error());
$row_rsCupSizeBefore = mysql_fetch_assoc($rsCupSizeBefore);
$totalRows_rsCupSizeBefore = mysql_num_rows($rsCupSizeBefore);
 
mysql_select_db($database_pacific, $pacific);
$query_rsCupSizeAfter = "SELECT cup_size_after_id, cup_size_after FROM cup_size_after ORDER BY cup_size_after ASC";
$rsCupSizeAfter = mysql_query($query_rsCupSizeAfter, $pacific) or die(mysql_error());
$row_rsCupSizeAfter = mysql_fetch_assoc($rsCupSizeAfter);
$totalRows_rsCupSizeAfter = mysql_num_rows($rsCupSizeAfter);
 
$crumb="nav";
$crumb2="insert";
?><!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>New case for procedure type: <?php echo $row_rsTypeTitle['Type'];?></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 width="27%" valign="top">Patient Name</td>
    <td valign="top">Patient Age</td>
    </tr>
  <tr>
    <td valign="top"><input type="text" name="Patient_Name" id="Patient_Name" value="" /></td>
    <td valign="top"><select name="Patient_Age" id="Patient_Age">
      <option value="value">-Not Sure-</option>
      <?php
do {  
?>
      <option value="<?php echo $row_rsAgeRange['age_range_id']?>"><?php echo $row_rsAgeRange['age_range']?></option>
      <?php
} while ($row_rsAgeRange = mysql_fetch_assoc($rsAgeRange));
  $rows = mysql_num_rows($rsAgeRange);
  if($rows > 0) {
      mysql_data_seek($rsAgeRange, 0);
	  $row_rsAgeRange = mysql_fetch_assoc($rsAgeRange);
  }
?>
    </select></td>
  </tr>
  <tr>
    <td valign="top">Patient Height</td>
    <td valign="top">Patient Weight</td>
  </tr>
  <tr>
    <td valign="top"><select name="Patient_Height" id="Patient_Height">
      <option value="value">-Not Sure-</option>
      <?php
do {  
?>
      <option value="<?php echo $row_rsHeightRange['height_range_id']?>"><?php echo $row_rsHeightRange['height_range']?></option>
      <?php
} while ($row_rsHeightRange = mysql_fetch_assoc($rsHeightRange));
  $rows = mysql_num_rows($rsHeightRange);
  if($rows > 0) {
      mysql_data_seek($rsHeightRange, 0);
	  $row_rsHeightRange = mysql_fetch_assoc($rsHeightRange);
  }
?>
    </select></td>
    <td valign="top"><select name="Patient_Weight" id="Patient_Weight">
      <option value="">-Not Sure-</option>
      <?php
do {  
?>
      <option value="<?php echo $row_rsWeightRange['weight_range_id']?>"><?php echo $row_rsWeightRange['weight_range']?></option>
      <?php
} while ($row_rsWeightRange = mysql_fetch_assoc($rsWeightRange));
  $rows = mysql_num_rows($rsWeightRange);
  if($rows > 0) {
      mysql_data_seek($rsWeightRange, 0);
	  $row_rsWeightRange = mysql_fetch_assoc($rsWeightRange);
  }
?>
    </select></td>
  </tr>
  <tr>
    <td valign="top">Patient Kids</td>
    <td valign="top">Incision Type</td>
  </tr>
  <tr>
    <td valign="top"><select name="Patient_Kids" id="Patient_Kids">
      <option value="">-Not Sure-</option>
      <?php
do {  
?>
      <option value="<?php echo $row_rsKids['kids_id']?>"><?php echo $row_rsKids['kids']?></option>
      <?php
} while ($row_rsKids = mysql_fetch_assoc($rsKids));
  $rows = mysql_num_rows($rsKids);
  if($rows > 0) {
      mysql_data_seek($rsKids, 0);
	  $row_rsKids = mysql_fetch_assoc($rsKids);
  }
?>
    </select></td>
    <td valign="top"><select name="Incision_Type" id="Incision_Type">
      <option value="">-Not Sure-</option>
      <?php
do {  
?>
      <option value="<?php echo $row_rsIncisionType['incision_type_id']?>"><?php echo $row_rsIncisionType['incision_type']?></option>
      <?php
} while ($row_rsIncisionType = mysql_fetch_assoc($rsIncisionType));
  $rows = mysql_num_rows($rsIncisionType);
  if($rows > 0) {
      mysql_data_seek($rsIncisionType, 0);
	  $row_rsIncisionType = mysql_fetch_assoc($rsIncisionType);
  }
?>
    </select></td>
  </tr>
  <tr>
    <td valign="top">Placement Type</td>
    <td valign="top">Implant Type</td>
  </tr>
  <tr>
    <td valign="top"><select name="Placement_Type" id="Placement_Type">
      <option value="value">-Not Sure-</option>
      <?php
do {  
?>
      <option value="<?php echo $row_rsPlacementType['placement_type_id']?>"><?php echo $row_rsPlacementType['placement_type']?></option>
      <?php
} while ($row_rsPlacementType = mysql_fetch_assoc($rsPlacementType));
  $rows = mysql_num_rows($rsPlacementType);
  if($rows > 0) {
      mysql_data_seek($rsPlacementType, 0);
	  $row_rsPlacementType = mysql_fetch_assoc($rsPlacementType);
  }
?>
    </select></td>
    <td valign="top"><select name="Implant_Type" id="Implant_Type">
      <option value="" >-Not Sure-</option>
      <?php
do {  
?>
      <option value="<?php echo $row_rsImplantType['implant_type_id']?>"><?php echo $row_rsImplantType['implant_type']?></option>
      <?php
} while ($row_rsImplantType = mysql_fetch_assoc($rsImplantType));
  $rows = mysql_num_rows($rsImplantType);
  if($rows > 0) {
      mysql_data_seek($rsImplantType, 0);
	  $row_rsImplantType = mysql_fetch_assoc($rsImplantType);
  }
?>
    </select></td>
  </tr>
  <tr>
    <td valign="top">Cup Size Before</td>
    <td valign="top">Cup_Size_After</td>
  </tr>
  <tr>
    <td valign="top"><select name="Cup_Size_Before" id="Cup_Size_Before">
      <option value="">-Not Sure-</option>
      <?php
do {  
?>
      <option value="<?php echo $row_rsCupSizeBefore['cup_size_before_id']?>"><?php echo $row_rsCupSizeBefore['cup_size_before']?></option>
      <?php
} while ($row_rsCupSizeBefore = mysql_fetch_assoc($rsCupSizeBefore));
  $rows = mysql_num_rows($rsCupSizeBefore);
  if($rows > 0) {
      mysql_data_seek($rsCupSizeBefore, 0);
	  $row_rsCupSizeBefore = mysql_fetch_assoc($rsCupSizeBefore);
  }
?>
    </select></td>
    <td valign="top"><select name="Cup_Size_After" id="Cup_Size_After">
      <option value="" >-Not Sure-</option>
      <?php
do {  
?>
      <option value="<?php echo $row_rsCupSizeAfter['cup_size_after_id']?>"><?php echo $row_rsCupSizeAfter['cup_size_after']?></option>
      <?php
} while ($row_rsCupSizeAfter = mysql_fetch_assoc($rsCupSizeAfter));
  $rows = mysql_num_rows($rsCupSizeAfter);
  if($rows > 0) {
      mysql_data_seek($rsCupSizeAfter, 0);
	  $row_rsCupSizeAfter = mysql_fetch_assoc($rsCupSizeAfter);
  }
?>
    </select></td>
  </tr>
  <tr>
    <td valign="top">Size ccs</td>
    <td valign="top">&nbsp;</td>
  </tr>
  <tr>
    <td valign="top"><input type="text" name="Size_ccs" id="Size_ccs" value="" /></td>
    <td valign="top">&nbsp;</td>
  </tr>
  <tr>
    <td colspan="2" valign="top">&nbsp;</td></tr>
<tr>
<td colspan="2" valign="top">
Description<br />
<?php
$oFCKeditor = new FCKeditor('description') ;
$oFCKeditor->BasePath = '../fckeditor/' ;
$oFCKeditor->Value = ''.$row_rsCase['description'].'' ;
$oFCKeditor->Create() ;
?></td>
</tr>
<tr>
<td colspan="2" valign="top">&nbsp;</td>
</tr>
 
<tr>
<td colspan="2" valign="top"><label>Thumb 1
<input name="thumb1" type="file" id="thumb1" />
</label></td>
</tr>
 
<tr>
<td colspan="2" valign="top"><label>Thumb 2
<input name="thumb2" type="file" id="thumb2" />
</label></td>
</tr>
 
<tr>
<td colspan="2" valign="top"><label>Thumb 3
<input name="thumb3" type="file" id="thumb3" />
</label></td>
</tr>
 
<tr>
<td colspan="2" valign="top"><label>Thumb 4
<input name="thumb4" type="file" id="thumb4" />
</label></td>
</tr>
<tr>
<td colspan="2" valign="top">&nbsp;</td>
</tr>
 
<tr>
<td colspan="2" valign="top"><label>Doctor
<select name="DrID" id="DrID">
<?php
do {  
?>
<option value="<?php echo $row_rsDoctors['DrID']?>"><?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 colspan="2" valign="top">&nbsp;</td>
</tr>
<tr>
<td colspan="2" valign="top">&nbsp;</td>
</tr>
<tr>
<td colspan="2" valign="top">
<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 name="TypeID" type="hidden" id="TypeID" value="<?php echo $_GET['TypeID']; ?>" />
 <input type="submit" name="Submit" value="Continue >>">
  &nbsp;
  <input type="reset" name="Submit2" value="Clear Form &amp; Start Over"></td>
</tr>
</table>
<input type="hidden" name="FX_upload" value="form1">
<input type="hidden" name="MM_insert" 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($rsDoctors);
 
mysql_free_result($rsAgeRange);
 
mysql_free_result($rsKids);
 
mysql_free_result($rsIncisionType);
 
mysql_free_result($rsPlacementType);
 
mysql_free_result($rsImplantType);
 
mysql_free_result($rsCupSizeBefore);
 
mysql_free_result($rsCupSizeAfter);
 
mysql_free_result($rsWeightRange);
 
mysql_free_result($rsHeightRange);
?>
                                              
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:

Select allOpen in new window

 

by: fiboPosted on 2009-10-07 at 16:49:22ID: 25521356

You should place session_start() at the beginning of your php script.
Your test with
if (!isset($_SESSION)) {
  session_start();
}

is not the right thing.

Place session_start in every script.

 

by: profyaPosted on 2009-10-08 at 03:34:35ID: 25523750

Since you have upgraded from php4 to php5 and because of the the fckeditor stopped from working the problem is either with your code that utilizing the fckeditor, or the problem is with the version of the fckeditor it self. Create a simple application to test if the problem is with your version of fckeditor or not, if the test application worked fine then you need to focus on the code that makes interface between your application and the fckeditor. If the problem is with the fckeditor it self, then you can download the latest version, modify your interface code and have fun.

If the problem is with your application's code, 90% it is because of either <? and <?php tag change, or because omission of register_globals setting. You can correct both of these problems via php.ini if you have access to, other wise you need upgrade your entire code.

 

by: phillystyle123Posted on 2009-10-09 at 12:48:37ID: 25538238

The problems were related to outdated php4 code, specifically:

changed all instances of this:

$HTTP_POST_VARS

to

$_POST

and changed all instances of this (this was all over my file upload script)

$HTTP_POST_FILES

to

$_FILES

20120131-EE-VQP-002

3 Ways to Join

30-Day Free Trial

The Experts

98% positive feedback on 31,087 answers since March 2000. angeliii is a Microsoft Most Valuable Professional for his work with MS SQL Server & Develoment.

He has also proven his knowledge of Visual Basic Programming, PHP Scripting and Oracle Databases.

The Experts

97% positive feedback on 10,752 answers since July 2000. lrmoore has more than 18 years experience in the networking industry.

The six-time Mircosoft MVPs specialties include firewalls, virtual private networking, and network management.

Testimonials

"...and excellent source for support... Kind of like having your very own IT dept." Electriciansnet

Testimonials

"I was apprehensive at signing up at first. However... it has already made my life as an IT administrator much easier." JaCrews

Testimonials

"WOW! You guys have great, active, and knowledgeable people on here." moore50

Business Clients

Business Clients

In the Press

"If you’ve got a question... Experts Exchange can supply an answer.”

In the Press

"...an invaluable aid for both IT professionals and those who require tech support."

In the Press

"where IT professionals provide quick answers on just about any topic"

Business Account Plans

Loading Advertisement...