zfaka 發卡源碼數據庫批量轉換
ALTER TABLE t_admin_login_log ENGINE=MYISAM; ALTER TABLE t_admin_user ENGINE=MYISAM; ALTER TABLE t_config ENGINE=MYISAM; ALTER TABLE t_config_cat ENGINE=MYISAM; ALTER TABLE t_email...
让网站内容自动生成网址访问二维码
将下面代码添加到主题single模板的适当位置即可(其他的主题或者网站源码加入到文章的适当位置即可): 国内: <img src='http://qr.liantu.com/api.php?w=200text=<?php the_permalink()...
人人商城子商户后台不能上传视频的解决方法
需要修改的文件路径: addons/ewei_shopv2/plugin/merch/core/web/manage/goods/post.php 处理方案: 模板修改文件路径: addons/ewei_shopv2/plugin/merch/template/web/manage/goods/tab/basi...
Chevereto Nginx 伪静态规则
location / { if (-f $request_filename/index.html){ rewrite (.*) $1/index.html break; } if (-f $request_filename/index.php){ rewrite (.*) $1/index.php; } if (!-f $request_filename){...
图片自适应浏览器大小
<center><img src='https://xxx.com/banner.jpg' class='img-responsive' alt='TOP'></a></center></br> 通过添加 img-responsive class 可以让 Bootstrap 3 中...
BeDesk Nginx静态化規則
location / { try_files $uri $uri/ /index.php?$query_string; } 或者 if (!-d $request_filename){ set $rule_0 1$rule_0; } if ($rule_0 =...
Xenforo Nginx Apache 靜態化
location ~ \.php$ { try_files $uri =404; include /etc/nginx/fastcgi_params; fastcgi_pass unix:/run/php/php7.0-fpm.sock; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_...
html5视频文件防止下载
1、 $('#videoID').bind('contextmenu',function() { return false; }); 2、 <style type='text/css'> video::-webkit-media-controls-enclosure { overflow:hidden; ...
XiunoBBS静态化规则
XiunoBBS 只需要一条规则: 将 *.htm* 转发到 index.php?*.htm* 即可。 Xiuno BBS 4.0 需要编辑 conf/conf.php 编辑 'url_rewrite_on'=>1, 清空 tmp 目录 Nginx: 打开 nginx 配置文件 /usr/...
網頁底部的版權年份自動更新
對於html5的頁面而言,最簡單最短的代碼寫法: <script>document.write(new Date().getFullYear())</script> 如果非要有一個開始的年份: © Copyright 2017<script>...
html移动端文字展示自适应
方法一:纯css方法, 精确度高,IOS 和 安卓 字体大小同等比例 1.1 以16px为基准,在根元素html下,字体为62.5% 1.2 此时1rem=10px; /* css代码 */ html { /* 10÷16=62.5% */ font-size: 62.5%;...