Jump to content

Fckeditor empty non-editable textarea when on Wampserver


cheeseus

Recommended Posts

Hello,

 

I have encountered a problem and I am not even sure it's stricty PHP-related. The problem is with website I want to migrate to a better hosting provider and I also have to edit the code to make it PHP 5 compatible.

 

I have a news editing panel that uses FCKEditor. There are 3 fields: date, news title, and news text. The first two are OK, but the textarea is empty and non-editable, i.e. I cannot click in it to put the cursor inside.

 

The problem only exists on my local Wampserver (PHP 5.3.0). When I upload all the files to the old hosting server (PHP 5.2.5) the textarea is editable.

 

Here is the code that loads the news editing page:

<?php

class page extends admin{

function page(){

	if(isset($_GET['do'])) {
		if($_GET['do']=='del'){
			mysql_query("DELETE FROM news WHERE id = '$_GET[id]'");
			mysql_query("DELETE FROM news_text WHERE parent = '$_GET[id]'");
			$this->loc("?nav=news");
		}

		if(!empty($_POST['date'])){
			$sql="UPDATE news SET ".$this->post_insert(array("date"))." WHERE id = '$_GET[id]'";
			mysql_query($sql);
			echo $sql;
			$parent=$_GET['id'];

			//insert lang values
			$this->update_langs("news_text",array("name","content"),$parent);
			$this->loc();
		}
	}
}

// Sub menu Buttos
var $sub_menus=array(
	array("Списък новини","news"),
	array("Добави новина","add_news")
);

//Sub menu generation
function sub_menu(){
	for($i=0;$i<sizeof($this->sub_menus);$i++){
		echo "<li><a href=\"?nav=".$this->sub_menus[$i][1]."\">".$this->sub_menus[$i][0]."</a></li>";
	}
}

// Language form template
function lang_form($name,$id){
	echo '
		<fieldset>
			<legend>'.$name.'</legend>
			<div class="line"><label>Име: </label> 
			<input name="name_'.$id.'" class="text" style="width:450px;" 
					value="'.$this->get_sql_value("SELECT * FROM news_text WHERE parent='$_GET[id]' AND lang='$id'","name").'" type="text" />
			</div>
			<div class="line"><label>Съдържание: </label></div>';
			$oFCKeditor = new FCKeditor('content_'.$id);
			$oFCKeditor->BasePath = 'includes/fckeditor/';
			$oFCKeditor->Height= '500px';
			$oFCKeditor->Value= $this->get_sql_value("SELECT * FROM news_text WHERE parent = '$_GET[id]' AND lang='$id'","content");
			$oFCKeditor->Create();
		echo'
		</fieldset>';
}

}

$p=new page();
?>

<div id="left">
<ul>
	<li><h1>Опции:</h1></li>
	<?php echo $p->sub_menu(); ?>
</ul>
</div>

<div id="center">
<h1>Amalipe.com / Администрация / Новини / Редакция на новина</h1>
<form name="add" id="add" action="" method="post">	
	<fieldset>
		<legend>Основна информация</legend>
		<div class="line"><label>Дата: </label> 
		<input name="date" class="text" type="text" value="<?php echo $p->get_value("news","date"); ?>" /></div>
	</fieldset>
	<?php $p->lang_forms(); ?>
	<input value="Промени" class="btn" type="submit" />
</form>
</div>

 

The encoded characters you see in the code are Cyrillic names.

 

At first I thought this had something to do with the FCKEditor version so I upgraded it to the last one (FCKeditor_2.6.6) but nothing changed.

 

On my local Wampserver I have two PHP versions - 5.2.9-2 and 5.3.0 - neither works. I have also added 5.2.5 to see if this changes anything but no, it doesn't - the textarea is still empty and non-editable.

 

I hope I can get some help!

 

 

Link to comment
Share on other sites

Problem solved. I don't know how.

 

I switched to PHP 5.2.5 a couple of times. Clicked through the different menu items for editing, e.g. News, Programs, Projects, and when I returned to News, the textarea suddenly became editable.

 

I then switched back to PHP 5.3.0 and it was still editable.

 

I will not close the topic as Solved yet, because the problem is unknown and will appreciate any comments that may help me, or other users who happen to encounter this problem.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.