star7th / showdoc

ShowDoc is a tool greatly applicable for an IT team to share documents online一个非常适合IT团队的在线API文档、技术文档工具
https://www.showdoc.com.cn
Other
12.18k stars 2.18k forks source link

请问如何全局替换呀 #1287

Closed sknpy closed 3 years ago

sknpy commented 3 years ago

最近换了个图床,想要全局替换个链接,请问怎么操作呀

star7th commented 3 years ago

showdoc使用sqlite数据库。数据库文件是安装目录下的Sqlite/showdoc.db.php。你可以网络搜索如何在命令行中使用 sqlite数据库.或者使用SQLiteStudio等可视化工具

打开数据库后,执行 update page set page_content = replace(page_content,'原始host','新host');和 update upload_file set real_url= replace(real_url,’原始host’,’新host’);

sknpy commented 3 years ago

多谢,已解决!