我用的是linux的ubuntun版本
加载以后尽然报了一个
ForbiddenYou don't have permission to access /sportsLeague/admin/fck/FCKeditor/editor/fckeditor.html on this server.
Apache/2.2.17 (Ubuntu) Server at localhost Port 80
这样的错误?很让我费解,有高人帮我解决下吗? 谢谢了php 代码是
require("fck/FCKeditor/fckeditor.php");
$FCK=new FCKeditor("content");
$FCK->Width="540";
$FCK->Heiht="350";
$FCK->ToolbarSet="Default";
$FCK->BasePath="fck/FCKeditor/";
$editor=$FCK->CreateHtml();
$smarty->assign("editor",$editor);
$smarty->display("newsAdminAdd.html");html代码是
<table cellpadding="0" cellspacing="0" width="600" border="0">
<tr>
<td>新闻标题</td>
<td><input type="text" name="title"></td>
</tr>
<tr>
<td>新闻内容</td>
<td>{$editor}</td>
</tr>
</table>