无聊最寂寞
2010-5-21 11:37
张老师 请注意:nginx现0day漏洞 上传图片可入侵百万服务器 希望你能通过你的博客 向广大nginx管理员提醒!
http://www.80sec.com/nginx-securit.html
http://www.80sec.com/nginx-securit.html
张宴 回复于 2010-5-21 20:14
谢谢提醒
yueguang8421
2010-5-20 22:02
您好张老师,我有个问题想请教您,就是dr.com共享上网,客户机怎么设置啊?我按照您说的改了ip地址,但还是不行,为什么呢?
我的QQ849236690,邮箱是woshiyueguang001@163.com
谢谢张老师。
我的QQ849236690,邮箱是woshiyueguang001@163.com
谢谢张老师。
cin
2010-5-20 19:14
APMServ5.2.6加设了dedecms
safe_mode Off [×]On(本系统不支持在非win主机的安全模式下运行)
请问要怎么处理
safe_mode Off [×]On(本系统不支持在非win主机的安全模式下运行)
请问要怎么处理
为blog添加回复自动生成html的功能:
编辑inc/mod_visit.php 文件
找到 else { //Deal with ajax
然后再下面添加:
$site="http://book.shafa.in";
///make html
$postida=str_replace("'","",$plusquery_c);
$postida=str_replace(",","",$postida);
$deldira="post/".$postida;
$deldirs="post/";
if ($deldira != $deldirs) //is post root
{
if(is_dir($deldira)) removeDir($deldira);
$cur_chapcont=file_get_contents($site."/post/".$postida);
if(!is_dir($deldira)) mkdir($deldira);
$fp=fopen("post/".$postida."/index.html","w+");
fwrite($fp,$cur_chapcont);
if ($fp) fclose($fp);
}
///end make html
在文件末尾添加:
//删除目录
function removeDir($dirName)
{
$result = false;
if(! is_dir($dirName))
{
trigger_error("目录名称错误", E_USER_ERROR);
}
$handle = opendir($dirName);
while(($file = readdir($handle)) !== false)
{
if($file != '.' && $file != '..')
{
$dir = $dirName . DIRECTORY_SEPARATOR . $file;
is_dir($dir) ? removeDir($dir) : unlink($dir);
}
}
closedir($handle);
$result = rmdir($dirName) ? true : false;
return $result;
}
编辑inc/mod_visit.php 文件
找到 else { //Deal with ajax
然后再下面添加:
$site="http://book.shafa.in";
///make html
$postida=str_replace("'","",$plusquery_c);
$postida=str_replace(",","",$postida);
$deldira="post/".$postida;
$deldirs="post/";
if ($deldira != $deldirs) //is post root
{
if(is_dir($deldira)) removeDir($deldira);
$cur_chapcont=file_get_contents($site."/post/".$postida);
if(!is_dir($deldira)) mkdir($deldira);
$fp=fopen("post/".$postida."/index.html","w+");
fwrite($fp,$cur_chapcont);
if ($fp) fclose($fp);
}
///end make html
在文件末尾添加:
//删除目录
function removeDir($dirName)
{
$result = false;
if(! is_dir($dirName))
{
trigger_error("目录名称错误", E_USER_ERROR);
}
$handle = opendir($dirName);
while(($file = readdir($handle)) !== false)
{
if($file != '.' && $file != '..')
{
$dir = $dirName . DIRECTORY_SEPARATOR . $file;
is_dir($dir) ? removeDir($dir) : unlink($dir);
}
}
closedir($handle);
$result = rmdir($dirName) ? true : false;
return $result;
}
脚本无法下载哦