预览模式: 普通 | 列表

更新

sql="select * from sta"
    call joekoe_cms.exec("",-1)
    rs.open sql,conn,1,3
    rs.addnew
    rs("ip")=user_ip
    ……
    rs.update
    rs.close

查看更多...

分类:Cms | 固定链接 | 评论: 6 | 引用: 0 | 查看次数: 588

网摘统计修正

set rs=joekoe_cms.exec("select count(*) as Num from zhai where UserID='"&UserID&"' and ' '+Tags+' ' like '% "&TagArray(i)&" %'",1)    

引用内容 引用内容
call joekoe_cms.exec("update tags set num="&num&" where tag='"&TagArray(i)&"'",0)

查看更多...

分类:Cms | 固定链接 | 评论: 8 | 引用: 0 | 查看次数: 625

Linux下常用配置文件及常用命令介绍

Linux下常用配置文件及常用命令介绍


/etc/sysconfig/network 包括主机基本网络信息,用于系统启动

/etc/sysconfig/network-script/ 此目录下是系统启动最初始化网络的信息

/etc/sysconfig/network-script/ifcfg-eth0 网络配置信息

/etc/xinetd.conf 定义了由超级进程XINETD启动的网络服务

/etc/protocols 设定了主机使用的协议以及各个协议的协议号

/etc/services 设定了主机的不同端口的网络服务

// 网络配置工具

# redhat-config-network 

/* 使用ifconfig命令配置并查看网络接口情况 */

//配置eth0的IP,同时激活设备

# ifconfig eth0 192.168.168.119 netmask 255.255.255.0 up

//配置eth0别名设备 eth0:1 的IP,并添加路由

# ifconfig eth0:1 192.168.168.110

# route add –host 192.168.168.110 dev eth0:1

//激活(禁用)设备

# ifconfig eth0:1 up(down)

//查看所有(指定)网络接口配置

# ifconfig (eth0)

/* 使用route 命令配置路由表 */

//添加到主机路由

# route add –host 192.168.168.110 dev eth0:1

# route add –host 192.168.168.119 gw 192.168.168.1

//添加到网络的路由

# route add –net IP netmask MASK eth0

# route add –net IP netmask MASK gw IP

# route add –net IP/24 eth1

//添加默认网关

# route add default gw IP

//删除路由

# route del –host 192.168.168.110 dev eth0:1

/* 常用命令 */

# traceroute www.pconline.com.cn

# ping www.pconline.com.cn

//显示网络接口状态信息

# netstat –I

//显示所有监控的服务器的Socket和正在使用Socket的程序信息

# netstat –lpe

//显示内核路由表信息

# netstat –r

# netstat –nr

//显示TCP/UDP传输协议的连接状态

# netstat –t

# netstat –u

//更改主机名

# hostname myhost

//查看ARP缓存

# arp

//添加

# arp –s IP MAC

//删除

# arp –d IP

/* 运行级别与网络服务 */

//查看当前运行级别

# runlevel

//运行级别的切换

# init

# telinit

查看更多...

分类:Down | 固定链接 | 评论: 7 | 引用: 0 | 查看次数: 759

"subnet Mask"是什么意思

是"子网掩码"的意思 

port 端口

查看更多...

分类:Pc | 固定链接 | 评论: 7 | 引用: 0 | 查看次数: 1046

管理后台经常自动退出

服务器端系统超时时间设定过短造成的
分类:Cms | 固定链接 | 评论: 7 | 引用: 0 | 查看次数: 699

[私密日志] 私密日志

该日志是私密日志,只有管理员或发布者可以查看!
分类:Cms | 固定链接 | 评论: 5 | 引用: 0 | 查看次数: 627

[私密日志] 私密日志

该日志是私密日志,只有管理员或发布者可以查看!
分类:Cms | 固定链接 | 评论: 7 | 引用: 0 | 查看次数: 603

书库调用

sub book()
dim cid,dateandtime,title,b_name,sql1,rs1,articleid,b_id,sql3,rs3,classid,temp1,sql2,c_name,zuozhe,c_id,rs2,tiime
%>

<table cellspacing=0 cellpadding=4 class=table>
<tr><td class=td> 最新更新</td></tr>
<tr class=bg_td><td align=center>
<table border=0 width='100%'>
<%
  sql="select * from bb_class order by tiime desc"
  set rs=joekoe_cms.exec(sql,1)
  for i=1 to 6
  if rs.eof then exit for
  zuozhe=rs("zuozhe")
  tiime=rs("tiime")
%>
<tr>
<%
cid=rs("c_id")
sql3="select * from jk_class where c_id="&cid
set rs3=joekoe_cms.exec(sql3,1)
b_id=rs("b_id")
response.write"<td> [<a href='book_list.asp?id="&rs3("c_id")&"'>"&rs3("c_name")&"</a>]  <a href='book_view.asp?b_id="&b_id&"'>"&rs("b_name")&"</a>  "
rs3.close
sql2="select * from b_article where b_id="&b_id&" and page=1 order by articleid desc"
set rs2=joekoe_cms.exec(sql2,1)
if rs2.eof and rs2.bof then
  response.write "暂无内容更新"
else
  dateandtime=rs2("dateandtime")
  title=rs2("title")
  articleid=rs2("articleid")
  c_id=rs2("c_id")
  rs2.close
  sql1="select * from bc_class where c_id="&c_id
  set rs1=joekoe_cms.exec(sql1,1)
  c_name=rs1("c_name")
  rs1.close
  response.write"   <a href='book_jie.asp?b_id="&b_id&"&aid="&articleid&"'><font class=gray>"&c_name&"  "&title&"</font></a></td>"
end if
  response.write"<td><a href='book_show.asp?word="&zuozhe&"'><font class=blue>"&zuozhe&"</font></td><td class=tims align=right><"&mid(tiime,6,4)&"></td>"
response.write"</tr>"
rs.movenext
  next
  rs.close
  response.write"</table>"&...

查看更多...

分类:Cms | 固定链接 | 评论: 8 | 引用: 0 | 查看次数: 659

逆风音乐插件 图文调用

sub main_center_music(cs_tnum,cs_cnum)
  dim tmp1,tmp_topic,tmp_url
  tmp1=vbcrlf&"<tr align=center>"
  sql="select top 4 id,name,singer,s_id,n_id,lang,ptim,words,hits,pic from music_disk order by id desc"
  set rs=joekoe_cms.exec(sql,1)
  do while not rs.eof
    tmp_topic=rs(1)
    tmp_url="music_disk_view.asp?id="&rs(0)
    tmp1=tmp1&vbcrlf&"<td>" & _
         vbcrlf&" <table border=0 cellspacing=0 cellpadding=0>" & _
         vbcrlf&" <tr><td align=center>"&pic_fk(rs("pic"),4,tmp_url)&"</td></tr>" & _
         vbcrlf&" <tr><td align=center height="&dim_num(6)&"><a href='"&tmp_url&"' target=_blank>"&joekoe_cms.code_html(tmp_topic,1,cs_cnum)&"</a></td></tr>" & _
         vbcrlf&" </table>" & _
         vbcrlf&"</td>"
    rs.movenext
  loop
  rs.close
  tmp1=tmp1&vbcrlf&"</tr>"
  tmp1="<table border=0 cellspacing=0 cellpadding=0 width='519'>"&tmp1&vbcrlf&"</table>"
  response.write vbcrlf&"<table cellspacing=0 cellpadding=0 class=table>" & _
                 vbcrlf&"<tr><td align=center>"&tmp1&"</td></tr>" & _
                 vbcrlf&"</table>"&ukong
end sub

查看更多...

分类:Cms | 固定链接 | 评论: 7 | 引用: 0 | 查看次数: 655