小黄 发布的文章

wampserver mysql 改密码不成功的解决办法

问题:ERROR 1348 (HY000): Column 'Password' is not updatable打开mysql命令行运行如下命令:ALTER USER 'root'@'localhost' IDENTIFIED BY '1234'; flush privileges;

curl的get和post的使用方法

get:public function get_curl(){ $url = ""; $parameter = array(); $ch = curl_init(); //设置选项,包括URL curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETU...

js iframe的宽度实现自适应的方法

我是以宽度600为判断的标准:function autoWidth(){ var w=window.outerWidth; if(w<600){ jQuery('.rtecenter iframe').css('width','100%'); }else{ jQuery('.rtecenter iframe').css('widt...

自动加载类中spl_autoload_register()函数的用法

function ServerAutoload($className){ $classFile = strtolower($className).'.php'; $basedir = array(); // 加载站点类 $basedir[] = 'Web'; // 加载Common相关类 $basedir[] = 'Common'; /...

PHPExcel 基本用法详解

我用的是PHPExcel-1.8大家可以到这里下载下载地址:地址代码如下: require_once 'PHPExcel-1.8/Classes/PHPExcel.php'; $objPHPExcel = new PHPExcel(); $objPHPExcel->getProperties()->setCreator("M...

一个实用的php验证码类

本文实例为大家分享了一个实用的php验证码类,供大家参考,具体内容如下//验证码类 class ValidateCode { private $charset = 'abcdefghkmnprstuvwxyzABCDEFGHKMNPRSTUVWXYZ23456789';//随机因子 private $code;//验证码 private $codelen = 4...

https网站无法加载http路径的js和css

在https的网站中引用http路径的js或css会不起作用,如:<script src="http://www.xxx.com/xxx.js"></script>解决办法:将http:去掉,改为<script src="//www.xxx.com/xxx.js"></script>

css自动适应手机的宽度设置方法

.wap{width: 47.3333333%;} @media (max-width: 768px){ .wap{widht:100%;} }背景图片自适应:background-position:50% 50%;

css 动画效果

css 动画效果增加区块动感:.fadeInUp{ animation:fadeInUp 1s; -moz-animation:fadeInUp 1s; /* Firefox */ -webkit-animation:fadeInUp 1s; /* Safari and Chrome */ -o-animation:fadeInUp 1s; /* Opera */ } @keyframes ...

解决Apache的错误日志巨大的问题

1、可以通过降低log级别的办法来减少日志读写。编辑conf文件夹下的httpd.conf,找到如下内容:# # LogLevel: Control the number of messages logged to the error_log. # Possible values include: debug, info, notice, warn, error, crit, # alert...

Linux实时查看日志,访问前10IP

查看日志中访问次数最多的前10个IPcat access_log |cut -d ' ' -f 1 |sort |uniq -c | sort -nr | awk '{print $0 }' | head -n 10 |less查看日志中出现100次以上的IPcat access_log |cut -d ' ' -f 1 |sort |uniq -c | awk '{if ($1 > ...

php如何返回json数据

模板输出js获取json为空,当时就觉得很疑惑然后查资料js获取就用了eval('('+data+')')转化为对象才可以。今天无意看到这个问题,原来是当初json输出的时候没有加上header。header('Content-Type:application/json; charset=utf-8'); $arr = array('a'=>1,'b'=>2); exit(jso...

strpos判断字符串是否存在

在编程的过程中我们经常会遇到需要判断一个字符是否存在这个字符串中这时我们就可以运用下面这个函数来判断:$str='abcdef'; $s='a'; if(strpos($str,$s)===false){ echo "字符串不包含子串"; }else{ echo "字符串包含子串"; }

memcache缓存类

class memcached{ private $local_cache = array(); private $m; private $client_type; protected $errors = array(); public function __construct() { if (OP...

linux常用命令下载,压缩,解压, 导出导入数据库

我使用的是SecureCRT软件连接linux1、下载本地目录路径设置:选项》会话选项》SFTP会话》本地目录命令:sz dbname.sql2、压缩命令:tar -zcvf file.tar.gz file/3、解压命令:unzip -o -d file file.zip4、导出命令:mysqldump -uroot -p dbname> dbname.sql或者命令:mysqldu...

Vmware Linux设置固定IP

linux图像界面下Applications>System Tools>Settings>Network点击图片指定的按钮选择IPv4Addresses:填写当前ip地址Netmask:255.255.255.0Gateway:192.168.168.4DNSServer:8.8.8.8保存就OK!

vim 修改文件出现错误“E45: 'readonly' option is set (add ! to override)”

方法1、如果是root权限,可以:wq! 强行保存退出方法2、vi 进入的时候 选择E(edit anyway ) 就可以保存并退出vi

帝国cms定时设置自动刷新手机端页面的方法

<?php define('EmpireCMSAdmin','1'); require("../class/connect.php"); require("../class/db_sql.php"); require("../class/functions.php"); require LoadLang("pub/f...

https跳转到自定义404页面的方法

最近发现网站http能正常跳转自定义404页面,但是https就不能跳转到自定义404页面。解决办法:ErrorDocument 400 /errpage/400.html ErrorDocument 403 /errpage/403.html ErrorDocument 404 /errpage/404.html ErrorDocument 503 /errpage/503.html在.h...

帝国cms被非法上传脚步图片的解决办法

啊里云警报帝国cms网站突然莫名其妙的多了一些脚步图片,一头蒙蔽的我查看了网站的日志,发现原来是黑客通过post方法提交脚步图片到我网站目录。攻击的路径:e/DoInfo/ecms.php应付对策加上登录认证:$mloginauthr=qCheckLoginAuthstr(); if(!$mloginauthr['islogin']){ die('非法提交'); }继续观察。。。