I have the editor installed on about 10 user accounts on my server. I noticed the upgrade release for version 2.5.1, so I upgraded all of the accounts to the current version. All of the user accounts work fine now, except one user's account.
On the problem account, the /FCKeditor/_samples/php/sample01.php file, which worked fine under an older version (I think 2.5, but it may have been slightly older). Now it no longer works. Th post comes up empty or if a value is coded in $oFCKeditor->Value that value is passed unchanged. The server is using php 5.
I'm at a loss to help the user, I'm not sure its a server issue as FCK works fine in all of the other accounts. There are no php.ini override files or any thing else different about this account that would prevent FCK from working.
I created this very simple test code to test:
The value of FCKeditor1 always reflect "ne" and te reflect whatever is put in the input box. FCK simply ignores any input. Where should I look for answers?
On the problem account, the /FCKeditor/_samples/php/sample01.php file, which worked fine under an older version (I think 2.5, but it may have been slightly older). Now it no longer works. Th post comes up empty or if a value is coded in $oFCKeditor->Value that value is passed unchanged. The server is using php 5.
I'm at a loss to help the user, I'm not sure its a server issue as FCK works fine in all of the other accounts. There are no php.ini override files or any thing else different about this account that would prevent FCK from working.
I created this very simple test code to test:
<?
include("../FCKeditor/fckeditor.php");
if($_POST){
$FCKeditor1= $_POST['FCKeditor1'];
$te = $_POST['te'];
echo "FCKeditor1:".$FCKeditor1;
echo "<br>te:".$te;
exit;
};
?>
<form name="form1" method="post" action="">
<?php
$oFCKeditor = new FCKeditor('FCKeditor1') ;
$oFCKeditor->BasePath = '/FCKeditor/';
$oFCKeditor->Value = "ne";
$oFCKeditor->Create() ;
?>
<input name="te" type="text" id="te">
<input name="Submit" type="submit" class="large" value="Update Text">
</form>The value of FCKeditor1 always reflect "ne" and te reflect whatever is put in the input box. FCK simply ignores any input. Where should I look for answers?
