- 在浏览器地址栏输入这个网址:chrome://net-internals/#hsts
- 在这个地方输入你的地址,就是会自动变成https的地址,不要加任何前缀和后缀,直接就是地址就行,参考我下面的图片,然后点击右边的delete即可
- 重启浏览器,重新输入不加https的地址,比如
千万不能在输入https开头的这个网址了,不然又得重新执行一遍上面的1,2操作http://www.baidu/
= array();
}
$post['classname'] = 'post';
}
function comment_format(&$post)
{
global $conf, $uid, $gid, $forumlist;
if (empty($post)) return;
$forum = $post['fid'] ? forum_read($post['fid']) : '';
$thread = well_thread_read_cache($post['tid']);
if ($thread) {
//$post['fid'] = $thread['fid'];
$post['closed'] = $thread['closed'];
$post['subject'] = $thread['subject'];
$post['url'] = $thread['url'];
} else {
$post['closed'] = 0;
$post['subject'] = lang('thread_not_exists');
$post['url'] = '';
}
$post['create_date_fmt'] = humandate($post['create_date']);
//$post['message'] = stripslashes(htmlspecialchars_decode($post['message']));
$user = user_read_cache($post['uid']);
$post['username'] = array_value($user, 'username');
$post['user_avatar_url'] = array_value($user, 'avatar_url');
$post['user'] = $user ? user_safe_info($user) : user_guest();
isset($post['floor']) || $post['floor'] = 0;
// 权限判断
$post['allowupdate'] = 2 == array_value($forum, 'comment', 0) && ($uid == $post['uid'] || forum_access_mod($post['fid'], $gid, 'allowupdate'));
$post['allowdelete'] = group_access($gid, 'allowuserdelete') && $uid == $post['uid'] || forum_access_mod($post['fid'], $gid, 'allowdelete');
$post['user_url'] = url('user-' . $post['uid'] . ($post['uid'] ? '' : '-' . $post['pid']));
if ($post['files'] > 0) {
list($attachlist, $imagelist, $filelist) = well_attach_find_by_pid($post['pid']);
// 使用图床 评论使用图床,mysql会过多,写死链接到内容是减轻mysql的过多的方法
if (2 == $conf['attach_on']) {
foreach ($imagelist as $key => $attach) {
$url = $conf['upload_url'] . 'website_attach/' . $attach['filename'];
// 替换成图床
$post['message'] = FALSE !== strpos($post['message'], $url) && $attach['image_url'] ? str_replace($url, $attach['image_url'], $post['message']) : $post['message'];
}
}
$post['filelist'] = $filelist;
} else {
$post['filelist'] = array();
}
$post['classname'] = 'post';
}
function comment_format_message(&$val)
{
global $conf;
if (empty($val)) return;
// 使用云储存
if (1 == $conf['attach_on'] && 1 == $val['attach_on']) {
$val['message'] = str_replace('="upload/', '="' . file_path($val['attach_on']), $val['message']);
} elseif (2 == $conf['attach_on'] && 2 == $val['attach_on']) {
// 使用图床
list($attachlist, $imagelist, $filelist) = well_attach_find_by_tid($val['tid']);
foreach ($imagelist as $key => $attach) {
$url = $conf['upload_url'] . 'website_attach/' . $attach['filename'];
// 替换成图床
$val['message'] = FALSE !== strpos($val['message'], $url) && $attach['image_url'] ? str_replace($url, $attach['image_url'], $val['message']) : $val['message'];
}
} else {
$val['message'] = str_replace('="upload/', '="' . file_path($val['attach_on']), $val['message']);
}
//$val['message'] = stripslashes(htmlspecialchars_decode($val['message']));
}
// 把内容中使用了云储存的附件链接替换掉
function comment_message_replace_url($pid, $message)
{
global $conf;
if (0 == $conf['attach_on']) {
$message = FALSE !== strpos($message, '="../upload/') ? str_replace('="../upload/', '="upload/', $message) : $message;
$message = FALSE !== strpos($message, '="/upload/') ? str_replace('="/upload/', '="upload/', $message) : $message;
} elseif (1 == $conf['attach_on']) {
// 使用云储存
$message = str_replace('="' . $conf['cloud_url'] . 'upload/', '="upload/', $message);
} elseif (2 == $conf['attach_on']) {
// 使用图床 评论使用图床,mysql会过多,写死链接到内容是减轻mysql的过多的方法
list($attachlist, $imagelist, $filelist) = well_attach_find_by_pid($pid);
foreach ($imagelist as $key => $attach) {
$url = $conf['upload_url'] . 'website_attach/' . $attach['filename'];
// 替换回相对链接
$message = $attach['image_url'] && FALSE !== strpos($message, $attach['image_url']) ? str_replace($attach['image_url'], $url, $message) : $message;
}
}
return $message;
}
function comment_filter($val)
{
unset($val['userip']);
return $val;
}
function comment_highlight_keyword($str, $k)
{
$r = str_ireplace($k, '' . $k . '', $str);
return $r;
}
//
//
function comment_message_format(&$s) { if (xn_strlen($s) < 100) return; $s = preg_replace('#.*?#is', '', $s); $s = str_ireplace(array('
', '
', '
', '', '', '', '', '' . ''), "\r\n", $s); $s = str_ireplace(array(' '), " ", $s); $s = strip_tags($s); $s = preg_replace('#[\r\n]+#', "\n", $s); $s = xn_substr(trim($s), 0, 100); $s = str_replace("\n", '
', $s); } // 对内容进行引用 function comment_quote($quotepid) { $quotepost = comment_read($quotepid); if (empty($quotepost)) return ''; $uid = $quotepost['uid']; $s = $quotepost['message']; $s = comment_brief($s, 100); $userhref = url('user-' . $uid); $user = user_read_cache($uid); $r = ''; return $r; } // 获取内容的简介 0: html, 1: txt; 2: markdown; 3: ubb function comment_brief($s, $len = 100) { $s = strip_tags($s); $s = htmlspecialchars($s); $more = xn_strlen($s) > $len ? ' ... ' : ''; $s = xn_substr($s, 0, $len) . $more; return $s; } ?>' . $user['username'] . ' ' . $s . '
解决浏览器自动变成https问题 解决浏览器自动变成https问题
- 在浏览器地址栏输入这个网址:chrome://net-internals/#hsts
- 在这个地方输入你的地址,就是会自动变成https的地址,不要加任何前缀和后缀,直接就是地址就行,参考我下面的图片,然后点击右边的delete即可
- 重启浏览器,重新输入不加https的地址,比如
千万不能在输入https开头的这个网址了,不然又得重新执行一遍上面的1,2操作http://www.baidu/
与本文相关的文章
- QT实现浏览器功能
- 微信浏览器唤起微信登录
- 关于浏览器静止音频自动播放的问题
- Edge浏览器兼容性问题(以登录教资系统为例子)
- Edge浏览器访问知乎 提示浏览器版本过低
- 谷歌强烈推荐!浏览器助手,让你的浏览器至少提升10个档次!
- css属性值无效,属性在浏览器控制台以黄色感叹号显示怎么办?
- Chrome 浏览器自动安装插件问题解决
- google-chrome 浏览器 Linux rpm 版本 下载安装
- 基于浏览器扩展程序脚本和IDM提高下载速度
- 如何下载与Chrome浏览器的版本相匹配的ChromeDriver
- 浏览器B站播放时,IDM没有显示下载浮动条
- 解决CentOS7无法安装Chrome浏览器
- 浏览器的选择建议,按照这些建议选,总能找到合适的
- 适用于Chrome类浏览器的喜马拉雅音频下载插件
- 极简主义的远程文件浏览器Mikochi
- Windows下配置浏览器使用Kerberos (SPNEGO)
- 浏览器弹不出上网登录页面
- 【软件工具 】非常好用的浏览器新标签页合集
- 用公司的WiFi会有可能被监控到上网记录吗?(浏览器搜索记录会被监控吗?)
评论列表(0)
- 暂无评论