标签:
testlink折腾的最久的部分就是图片上传的部分了。已经吐血了。
tesklink使用的图片上传插件是第三方插件FCKEDITOR,09年已经更名为CKEditor.
百度释义:
FCKeditor是一个专门使用在网页上属于开放源代码的所见即所得文字编辑器,用JavaScript编写。它志于轻量化,不需要太复杂的安装 步骤即可使用。它可和PHP、JavaScript、ASP、ASP.NET、ColdFusion、Java、以及ABAP等不同的编程语言相结合。 “FCKeditor”名称中的“FCK” 是这个编辑器的作者的名字Frederico Caldeira Knabben的缩写。
ckeditor官网demo:http://ckeditor.com/demo
ckeditor:http://ckeditor.com/
ckfinder:https://cksource.com/ckfinder
在Apache的网站根目录下,新建文件夹web_editor,将ckeditor和ckfinder解压后拷贝到该目录下:
在web_editor目录下,新建一个index.html
<html> <head> <meta http-equiv="Content-type" content="text/html; charset=UTF-8"> <title>yyd</title> </head> <body> <form action="post.php" method="post"> <textarea name="editor1">yyd</textarea> <input type="submit" name="submit" value="Submit" /> </form> </body> </html>
CKEditor和CKFinder配置-上传图片功能-为了testlink使用
标签:
原文地址:http://www.cnblogs.com/for-you/p/4878407.html