现在位置: 首页
+0°

spark contactgroup记录收起打开状态

2012年10月17日 spark  ⁄ 共 275字
  在org.jivesoftware.spark.ui的ContactList类里面                        String prop = props.getProperty(newContactGroup.getGroupName());             if (prop != null) {                 boolean isCollapsed = Boolean.valueOf(prop);                 newContactGroup.setCollapsed(isCollapsed);             }
阅读全文
+0°

phpweb商城模块产品模块提交时候死机

2012年09月16日 phpweb  ⁄ 共 581字
 今天遇到了phpweb商城模块发送的时候,电脑死机情况。 最终研究发现 是由于以下代码引起的:     if ( $memberprice != "" && is_array( $memberprice ) )   {     while ( list( $key, $val ) = $key )   //  原来是  while ( list( $key, $val ) = key )       {       $msql->query( "select id from {P}_shop_memberprice where `membertypeid`='{$key}' and `gid`='{$id}' limit 0,1" );       if ( $msq...
阅读全文
+0°

Linux/Ubuntu 10.04 + Nginx + MySql + php(FastCGI) + Phpmyadmin + WordPress

2012年09月13日 lnmp  ⁄ 共 4933字
0、准备工作   Shell   sudo apt-get update 1 sudo apt-get update   1、安装并开启Nginx   Shell   sudo apt-get intsall nginx sudo /etc/init.d/nginx start #此时访问localhost如出现"Welcome to Nginx!"页面则表明安装成功 1 2 3 sudo apt-get intsall nginx sudo /etc/init.d/nginx start #此时访问localhost如出现"Welcome to Nginx!"页面则表明安装成功   2、安装m...
阅读全文
+0°

ubuntu php5.2 nginx fastcgi环境搭建

2012年09月13日 linux  ⁄ 共 6385字
  第一步:因为Ubuntu 10.04下Zend Optimizer 3.3.9都还没有开始支持php5.3,所以把ubuntu10.4的php5.3降级到php5.2 步骤: 1 增加karmic源 x@y:~$sudo vi /etc/apt/sources.list.d/karmic.list deb http://archive.Ubuntu.com/ubuntu/ karmic main restricted universe multiverse deb-src http://archive.Ubuntu.com/ubuntu/ karmic main restricted universe multiverse deb http://archive.Ubuntu.com/ubuntu/ karmic...
阅读全文
+0°

如何为你的phpweb网站添加谷歌翻译插件

2012年08月30日 phpweb  ⁄ 共 129字
第一、注册gogole账号 第二、访问http://translate.google.com/manager 网站 第三、登陆后获取js代码 第四 复制代码到 base/templates/header.html   复制到 <!-reload-!> </head> 上边就ok
阅读全文
+0°

openfire 在ubuntu下配置各种问题汇总

2012年08月30日 linux, openfire  ⁄ 共 422字
一 、mysql乱码 解决方法:openfire.xml 进行配置如下        <serverURL>jdbc:mysql://localhost:3306/openfire?useUnicode=true&amp;characterEncoding=utf8</serverURL>   二、问题        org.jivesoftware.database.DbConnectionManager - Unable to get a connection from the database pool (attempt 2 out of 10). com.mysql.jdbc.CommunicationsException: Communications link failure due to underl...
阅读全文
+0°

ubuntu 双线双网卡双IP实现方式

2012年08月29日 linux  ⁄ 共 1684字
ubuntu双网卡双IP.不同网关.不同子网.如何同时ping通两块网卡的解决方法, 服务器环境如下:、 系统:ubuntu9.04 X64 server 电信IP(TEL):114.80.227.34 netmask 255.255.255.128 gateway 114.80.227.33 联通IP(CNC):112.65.227.2 netmask 255.255.255.0 gateway 112.65.227.1 1.配置网卡信息 # vi /etc/network/interfaces auto lo iface lo inet loopback # The primary network interface auto eth0 iface eth0 inet s...
阅读全文
+0°

phpweb会员添加医院预约次数限制。

2012年08月28日 phpweb  ⁄ 共 3566字
  为会员添加其他权限。 第一步: 在pwn_member_secure 里 INSERT INTO `pwn_member_secure` VALUES ('170', 'hospital', '预定次数', 'cishu', '1');     第二步: 修改界面 member admin下的member_type_rights.php 与member_rights.php 在          else  if ( $securetype == "cishu" )                    {                                      echo "rn";                                      echo "...
阅读全文
+0°

phpweb底部添加通栏。底部通栏

2012年08月28日 phpweb  ⁄ 共 535字
在base templates foot.htm 第一行添加如下代码 {#adminMenu#}{#winpop#} <DIV style="   MARGIN-TOP: -25px; CLEAR: both; FONT-SIZE: 12px"><!--container2--> <DIV  style="TEXT-ALIGN: center;  BACKGROUND: url(/base/templates/images/bottom_pic.jpg) no-repeat center top; PADDING-TOP: 62px"><!--bottom-->    <p>     <!--bottom-->     </p>   <p>&nbsp;</...
阅读全文
+0°

” Openfire Classes Home not found. Define system property “openfireHome” or create and add the openfire_init.xml file to the classpath

2012年08月27日 openfire  ⁄ 共 3118字
官方解决方法: I''ve spent far too many hours trawling these forums trying to find a solution to this installation problem on a linux server:   " Openfire Classes Home not found. Define system property "openfireHome" or create and add the openfire_init.xml file to the classpath"   SOLUTION: edit the file openfire_install_directory/bin/openfire (using any text editor)   insert th...
阅读全文
×