去评论
dz插件网

一次性开启discuz所有版块的 [audio] [video] [flash] 等多媒体代码

admin
2020/07/08 10:13:48
开启全部版块的sql语句是:
  1. update cdb_forums set allowmediacode =1
开启指定版块的sql语句是:
  1. update cdb_forums set allowmediacode =1 where fid in(fid1,fid2)
取消所有的多媒体代码的sql语句:
  1. update cdb_forums set allowmediacode =0
取消指定板块的多媒体代码的sql语句:
  1. update cdb_forums set allowmediacode =0 where fid in(fid1,fid2)