Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
希望你能帮我解决我的问题。我使用JUSTBOILME作为TINYMCE文本编辑器的图像上传器。我将它合并到 PHP 中。我的问题是,当我尝试使用just煮我插件将图像上传到tinymce的文本编辑器时出现错误。我遇到错误......“上传路径似乎无效。” 我已将 is_allowed 设置为 true。我正在使用本地主机。为此使用 localhost 有什么问题吗?提前谢谢你..
这实际上取决于您的网站是否在子文件夹中。如果您进一步向下查看 config.php 页面,您将看到一个$_SERVER['DOCUMENT_ROOT']作业。我在我的索引页面上回应了这一点,这导致我需要在行中包含我的子文件夹$config['img_path'] = '/subFolderName/images/uploads';确保你没有尾部斜杠
$_SERVER['DOCUMENT_ROOT']
$config['img_path'] = '/subFolderName/images/uploads';