每个用户在 TinyMCE 的 iBrowser 中都有自己的图像文件夹
我使用 iBrowser 将图像上传到 TinyMCE 编辑器中。它使用 ilibs_dir 配置参数来设置存储图像的文件夹。我想将其与我拥有许多用户的网站集成。如何为每个用户设置不同的文件夹?我的用户 ID 存储在发出 TinyMCE 编辑器的 PHP 脚本中的 $userId 值中。
I use iBrowser to upload images into TinyMCE editor. It uses ilibs_dir config param to set folder where images will be stored. I would like to integrate it with my site that has many users. How can i set different folder of each users? I have my user ID stored in $userId value in my PHP script that emits the TinyMCE editor.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不应该为每个用户创建不同的文件夹,而应该让 PHP 管理它。您可以/应该将图像存储在 1 个文件夹中,并将其保存到 MySQL 数据库,该图像来自哪个用户。然后,当 TinyMCE 请求图像时,让 php 检查用户是否拥有该图像,如果是,则提供该图像。
您可以提供给 TinyMCE 的图像列表也可以由 PHP 创建,并将 JSON 列表中的图像列表提供给 TinyMCE ( http://www.tinymce.com/wiki.php/Configuration:external_image_list_url )
这样你就可以完全控制图像,而且也很多更安全。
编辑:为您提供了如何使用 PHP 创建列表的示例:
此输出文件应通过脚本文件作为 JavaScript 文件包含在网站中。
You should not create a different folder for each user, but instead let PHP manage it. You could/should store the images in 1 folder, and save it to a MySQL database which image is from which user. Then when TinyMCE requests an image, let php check if the user owns that image, and if so, give it.
The image list you can supply to TinyMCE can also be created by PHP, and supply the image list in JSON list to TinyMCE ( http://www.tinymce.com/wiki.php/Configuration:external_image_list_url )
This way you have total control over the images, and it is also much more secure.
edit: Got an example for you how to create the list with PHP:
This outputted file should be included in the website through a script file as a JavaScript file.