phpbb 和文件系统存储
我可以将图像文件保存在 phpbb 的文件系统(无数据库)上吗?
谢谢
Can I save the images file on filesystem (no db) in phpbb?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我可以将图像文件保存在 phpbb 的文件系统(无数据库)上吗?
谢谢
Can I save the images file on filesystem (no db) in phpbb?
thanks
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
实际上头像存储在“/images/avatars/upload”目录中。附加到消息的标准图像以散列格式存储在“/files”目录中。您生成的任何缩略图都以“thumbs_[hashed-code]”形式存储在同一“/files”目录中。
皮特
Actually Avatars are stored in "/images/avatars/upload" directory. Standard images attached to messages are stored in "/files" directory in a hashed format. Any thumbnails you generate are stored as "thumbs_[hashed-code]" in that same "/files" directory.
Pete
图像(上传的头像和附件)由 phpBB 存储在文件系统中,更具体地说存储在
store
目录中。Images (uploaded avatars and attachements) are stored on the filesystem by phpBB, more specifically within the
store
directory.