- 欢迎访问无限星辰技术博客,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站
QQ群
- 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏无限星辰吧
- 好集导航开张了,传送门:好集导航
解决方法:
a.去除恶意文件的执行权限
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
chmod 000 /tmp/gates.lod /tmp/moni.lod
service sendmail stop
chkconfig --level 345 sendmail off
chmod -x /u……继续阅读 »
1.安装相关库文件(没有的话就安装,有就不用安装了)
1
# yum install bison gcc gcc-c++ autoconf automake zlib* libxml* ncurses-devel libtool-ltdl-devel*# yum install bison gcc gcc-c++ autoconf automake zli……继续阅读 »
安装openssh-clients软件包后就可以使用SCP命令了。 代码如下 [root@localhost ~]# yum install openssh-clients
……继续阅读 »
第一步:首先将msvcr71.dll, SQLDMO.DLL, Resources/2052/sqldmo.rll,Resources/1033/sqldmo.rll 拷贝到C:/Program Files/Microsoft SQL Server/80/Tools/Binn目录。下载SQLDMO文件 第二步:打开开始,在运行中输入 regsvr32 ……继续阅读 »
用官方论坛上网友的教程修改分页代码只有在静态下会生效,伪静态不生效问题出在帝国分页代码有好几个文件放在,其中伪静态就在\e\class\connect.php下修改
搜索:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
3……继续阅读 »
php:
if(!eregi(“(xxx.com)$”,preg_replace(“/http:\/\/([^\/]+)\/(.*)/is”,”\\1″,$WEBURL))){
header(“HTTP/1.1 404 Not Found”);exit;
}
……继续阅读 »
帝国官方Ajax评论插件显示头像解决方案1.编辑/e/extend/infocomment/index.php搜索:$query="select plid,saytime,sayip,username,zcnum,fdnum,userid,saytext from {$dbtbpre}enewspl_".$n_r['restb']." where pubid……继续阅读 »
在一些会员可以投稿的网站,在文章内容显示投稿会员的头像,使用以下代码直接调用即可:
1
2
3
4
< ?php
$userr=sys_ShowMemberInfo($userid,'userpic');
?>
<img src="<?=$userr[userpic]?$userr[userpic&……继续阅读 »
1.新建脚本
1
vi backup.shvi backup.sh
脚本如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/bin/bash
#backup.sh
#备份至/home/bak/webbackup/
……继续阅读 »
iis6 httpd.ini
[ISAPI_Rewrite]<br />3600 = 1 hour<br /><br />CacheClockRate 3600<br />RepeatLimit 32<br />RewriteRule /$ /? [L]<br />RewriteRule……继续阅读 »