2024年10月28日
调用图片广告:
示例代码:
[e:loop={"select * from xxx_enewsad where classid=3 and t=0 order by adid desc limit 3",0,24}]
<a href="<?= $bqr['url'] ?>" target="_blank" title="<?= $bqr['title'] ?>">
<img src="<?= $bqr['picurl'] ?&g
2024年10月28日
执行SQL语句
使用以下SQL语句:
UPDATE [!db.pre!]ecms_news SET newstime=truetime WHERE ismember=0 AND username='moban5';
在后台的“系统 - 备份与恢复数据 - 执行SQL语句”中运行该语句。
2024年10月28日
问题:系统用户管理授权栏目只列出最高二级栏目。
解决办法:
打开 /dede/sys_admin_user_add.php 和 /dede/sys_admin_user_edit.php 文件,添加以下函数:
function getalltype($reid = 0, $step = '', $typeids = array()) {
global $dsql, $result;
$dsql->SetQuery("SELE
2024年10月28日
灵动标签循环写法:
<?=$bqr['ftitle'] ? $bqr['ftitle'] : $bqr['title']?>
内容模板标题直接调用:
<?=$navinfor['ftitle'] ? $navinfor['ftitle'] : $navinfor['title']?>
2024年10月28日
问题:PbootCMS模板检测到文件超过50个。
答案:
检查模板文件是否存在互相包含导致无限循环的情况。
例如,head.html 中调用了 head.html 会导致无限循环。
删除多余的调用即可解决问题。