摘要: [root@localhost ~]# yum -y install epel-release Running Transaction Installing : epel-release-6-8.noarch 1/1 Verifying : epel-release-6-8.noarch 1/1 I 阅读全文
posted @ 2018-03-29 14:24 cq_小林子 阅读(465) 评论(0) 推荐(0)
摘要: 纠结了一上午,简单的问题使用了几种方法处理,最后还是失败,后来查阅了芈老头的资料才看到这么一篇文章,这里值得推荐给新手看一下。 https://www.cnblogs.com/Showshare/p/different-between-attr-and-prop.html 里面主要讲了jquery中 阅读全文
posted @ 2017-11-16 11:48 cq_小林子 阅读(415) 评论(0) 推荐(0)
摘要: 如果你是已经安装好后,要重新配置,配置后又登陆不上,请看下这个表(opproperty)里面的xmpp.domain,这个里面的值和admin.authorizedJIDs里面用户名的@后面的一致否。。 阅读全文
posted @ 2017-02-13 15:49 cq_小林子 阅读(156) 评论(0) 推荐(0)
摘要: tarc 将文件备份出来(创建)v 将过程输出x 解压备份r 追加到已经存在的包中t 查看解压的时候可以指定路径 也可以不指定路径 如果指定路径的话 比如 tar zxvf 111.tar.gz /tmp/安装的话肯定是源码包编译安装了 进入你解压的文件目录./configure --prefix= 阅读全文
posted @ 2016-12-26 10:22 cq_小林子 阅读(5271) 评论(0) 推荐(0)
摘要: Linux系统:CentOS 6.5 1.简单部署LAMP平台 # yum -y install httpd mysql mysql-server php php-mysql php-pdo # rpm -ivh php-mbstring-5.3.3-26.el6.x86_64.rpm //此包安装 阅读全文
posted @ 2016-12-26 10:21 cq_小林子 阅读(131) 评论(0) 推荐(0)
摘要: 原文地址:https://www.centos.bz/2011/04/linux-centos-phpmyadmin-install/ 安装好PHP,Apache和MySQL程序后,为了管理MySQL数据库,我们需要安装phpMyAdmin程序。下面是关于如何在centos安装phpMyAdmin程 阅读全文
posted @ 2016-12-26 10:08 cq_小林子 阅读(130) 评论(0) 推荐(0)
摘要: 一、魔术函数(13个)1、__construct() 实例化对象时被调用, 当__construct和以类名为函数名的函数同时存在时,__construct将被调用,另一个不被调用。 2、__destruct() 当删除一个对象或对象操作终止时被调用。 3、__call() 对象调用某个方法, 若方... 阅读全文
posted @ 2015-08-07 14:21 cq_小林子 阅读(119) 评论(0) 推荐(1)