PHP fckeditor问题?

PHP fckeditor问题?,php,fckeditor,Php,Fckeditor,如何更正下面列出的以下错误。我正在使用PHP和MySQL 我得到以下错误 Not Found The requested URL /fckeditor/editor/fckeditor.html was not found on this server. 我按照上的说明操作此错误是由于指向fckeditor的路径错误造成的。i、 e.$oFCKeditor->BasePath的值在您的代码中是错误的。因此,服务器生成404错误,因为在服务器上找不到该文件 默认情况下,在教程中,它使用相对于主

如何更正下面列出的以下错误。我正在使用PHP和MySQL

我得到以下错误

Not Found

The requested URL /fckeditor/editor/fckeditor.html was not found on this server.

我按照

上的说明操作此错误是由于指向fckeditor的路径错误造成的。i、 e.
$oFCKeditor->BasePath的值在您的代码中是错误的。因此,服务器生成404错误,因为在服务器上找不到该文件


默认情况下,在教程中,它使用相对于主机名的绝对路径。换句话说,它希望fckeditor位于
www.example.com/fckeditor/
中。但是,如果您不是这样,例如您的fckeditor位于
www.example.com/mysite/fckeditor/
,则应将
$oFCKeditor->BasePath
的值改为
/mysite/fckeditor/
。此外,如果服务器基于UNIX,请确保大小写正确。

此错误是由于指向fckeditor的路径错误造成的。i、 e.
$oFCKeditor->BasePath的值在您的代码中是错误的。因此,服务器生成404错误,因为在服务器上找不到该文件

默认情况下,在教程中,它使用相对于主机名的绝对路径。换句话说,它希望fckeditor位于
www.example.com/fckeditor/
中。但是,如果您不是这样,例如您的fckeditor位于
www.example.com/mysite/fckeditor/
,则应将
$oFCKeditor->BasePath
的值改为
/mysite/fckeditor/
。此外,如果服务器基于UNIX,请确保大小写正确