Home > Backend Development > PHP Tutorial > ueditor v1.3.6 怎么修改图片上传路径

ueditor v1.3.6 怎么修改图片上传路径

WBOY
Release: 2016-06-13 11:55:19
Original
952 people have browsed it

ueditor v1.3.6 如何修改图片上传路径
ueditor v1.3.6 如何修改图片上传路径 php文件的 (我想要把图片存储在根目录下的upfile里)谢谢
------解决方案--------------------
ueditor.config.js

window.UEDITOR_HOME_URL = "/Editor/"; (因为做了好几天了,<br /> 这一句设置是否有用,我已经忘了,,没办法,年纪大了,做过就忘,)<br /> //图片上传配置区<br /> ,imageUrl:URL+"php/imageUp.php"             //图片上传提交地址<br /> ,imagePath: ""                     //图片修正地址,引用了fixedImagePath,如有特殊需求,可自行配置<br /> ,savePath: [ 'images' ]    //图片保存在服务器端的目录, 默认为空, 此时在上传图片时会向服务器请求保存图片的目录列表,                                   <br /> ////////////////////////<br /> //图片在线管理配置区<br /> ,imageManagerUrl:URL + "php/imageManager.php"       //图片在线管理的处理地址<br /> ,imageManagerPath: ""              //图片修正地址,同imagePath<br /> ////////////////////<br /> //附件上传配置区<br /> ,fileUrl:URL+"php/fileUp.php"               //附件上传提交地址<br /> ,filePath: ""                   //附件修正地址,同imagePath<br /> //,fileFieldName:"upfile"                    //附件提交的表单名,若此处修改,需要在后台对应文件修改对应参数<br />
Copy after login

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template