posts - 404,  comments - 115,  views - 118万
< 2025年1月 >
29 30 31 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 1
2 3 4 5 6 7 8
  2017年1月17日
摘要: 1、检查是否安装了libxml 包 > rpm -qa|grep libxml2 2、如果没有则安装 > yum install libxml2 > yum install libxml2-devel 3、检查xml2-config文件是否存在 > find / -name "xml2-config 阅读全文
posted @ 2017-01-17 20:03 怀素真 阅读(5128) 评论(0) 推荐(0) 编辑
摘要: 1、下载php源码包 在 http://php.net/downloads.php 下载 php-5.6.11.tar.gz 2、进入到php源码包中,configure > ./configure --prefix=/data/php \ > --with-apxs2=/data/apache/bin/apxs \ > --with-mysql=/data/mysql \ > --with-... 阅读全文
posted @ 2017-01-17 20:03 怀素真 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 1、打开apache配置文件,添加AddType。找到DirectoryIndex并添加index.php AddType application/x-httpd-php .php AddType application/x-httpd-php-source .phps 2、重启apache ,创建 阅读全文
posted @ 2017-01-17 20:03 怀素真 阅读(1587) 评论(0) 推荐(0) 编辑
摘要: 在运行phpize时出现的错误 > /data/php/bin/phpize Configuring for: PHP Api Version: 20131106 Zend Module Api No: 20131226 Zend Extension Api No: 220131226 Cannot find autoconf. Please check your autoconf inst... 阅读全文
posted @ 2017-01-17 20:03 怀素真 阅读(708) 评论(0) 推荐(0) 编辑
摘要: 1、通过vi打开apache的配置文件httpd.conf > vi /data/apache/conf/httpd.conf 2、找到#ServerName www.example.com:80这行,去掉前面的#号,修改如下: ServerName localhost:80 或者 ServerNa 阅读全文
posted @ 2017-01-17 20:03 怀素真 阅读(9196) 评论(0) 推荐(0) 编辑
摘要: 1、检查是否安装ssh > rpm -qa|grep ssh 2、安装ssh服务 > yum install ssh 配置 /etc/ssh/sshd_config 端口 22 3、启动ssh > service sshd start|restart 4、ssh命令 ssh 主机 > ssh loc 阅读全文
posted @ 2017-01-17 20:03 怀素真 阅读(195) 评论(0) 推荐(0) 编辑
摘要: 1、用户相关命令 su 切换用户 root -> 普通用户 不需要密码 普通用户之间 需要密码 普通用户->root 需要密码 newgrp 切换组身份 whoami 查看当前登录名称 id 查看用户信息 groups 查看用户组信息 chfn 设置用户备注信息 finger 查看用户备注信息 2、 阅读全文
posted @ 2017-01-17 20:03 怀素真 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 1、用户隶属于用户组的。 2、用户与用户组配置文件 1)用户组配置文件 /etc/group 第一列:用户组的组名 第二列:组密码(真正的密码存储在了gshadow中) 第三列:用户组组ID,用户组唯一标识 组ID为0的是超级用户组 组ID为1-499是系统用户组 组ID大于500是用户自定义组 第 阅读全文
posted @ 2017-01-17 20:03 怀素真 阅读(134) 评论(0) 推荐(0) 编辑
摘要: yii的layouts的使用 我们在控制器中使用render()时,yii会默认的载入布局。 1.在protected/componets下的Controller.php中修改$layout变量, 来指定自定义布局文件。 例: $layout='//layouts/mylayout'; 2.在protected/views/layouts下创建mylayout.php布局文件。 3.在... 阅读全文
posted @ 2017-01-17 20:02 怀素真 阅读(1208) 评论(0) 推荐(0) 编辑
摘要: 1.在官网上下载composer的安装程序。 https://getcomposer.org/ 2.双击运行Composer-Setup.exe程序,选择你自已的php安装目录打到php.exe。 3.一直下一步就行了,安装程序会自动帮你添加到win环境变量里。 4.在控制台下输入composer。 阅读全文
posted @ 2017-01-17 20:02 怀素真 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 问题的原因是,你本地的数据库版本过高,而远程的数据库版本低。 解决方法:在连接时加上 --skip-secure-auth 参数就可以了。 mysql -h主机 -u用户名 -p密码 --skip-secure-auth 解决方法:在连接时加上 --skip-secure-auth 参数就可以了。 阅读全文
posted @ 2017-01-17 20:02 怀素真 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 在mysql控制台下输入 show variables like 'char%'; 命令来查看mysql的字符集设置。 character_set_client (客户端通知数据库服务器它的编码方式) 1.客户端即dos窗口发送的数据是gbk编码。 2.MySQL使用character_set_cl 阅读全文
posted @ 2017-01-17 20:02 怀素真 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 在tp配置文件中有一个URL_CASE_INSENSITIVE选项,设置为true,表示大小写不敏感。 'URL_CASE_INSENSITIVE' => true 阅读全文
posted @ 2017-01-17 20:02 怀素真 阅读(1693) 评论(0) 推荐(0) 编辑
摘要: 方法一: 直接把js、css、img放到网站公共目录/Public/下。 然后直接在模板文件中使用__PUBLIC__进行替换。 方法二: 在模块配置文件config.php中配置指定的路径,如下: array( '__SITEIMG__' => 'http://www.xxx.com/img', '__SITEJS__' => 'http://www.... 阅读全文
posted @ 2017-01-17 20:02 怀素真 阅读(344) 评论(0) 推荐(0) 编辑
摘要: 1.确保apache已开启rewrite。 2.在.htaccess文件中添加如下: RewriteEngine On RewriteCond %{HTTP_REFERER} !^http://XXX.com/.*$ [NC] RewriteCond %{HTTP_REFERER} !^http:/ 阅读全文
posted @ 2017-01-17 20:02 怀素真 阅读(1276) 评论(0) 推荐(0) 编辑
摘要: 1.在apache配置文件httpd.conf中找到如下行: #LoadModule rewrite_module modules/mod_rewrite.so 去掉该行前面的#号 2.在httpd.conf中寻找AllowOverride None 并设置成 AllowOverride All 3.在进行rewrite的web主目录下创建.htaccess文件,并添加上如下: Opt... 阅读全文
posted @ 2017-01-17 20:02 怀素真 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 我估计的原因是: vm会在网上邻居(LAN或高速internet)下创建两个 vmware network adapter vmnet8 vmware network adapter vmnet1 而你的本地连接无法关闭,关闭则弹出"此时无法停用连接...",所以vm就一直卡在这里。 你可以强制拔掉 阅读全文
posted @ 2017-01-17 20:02 怀素真 阅读(533) 评论(0) 推荐(0) 编辑
摘要: mysql并非只有主键才能自增长,而是设为键的列就可以设置自增长。 如下: CREATE TABLE t1 ( id INT, col1 INT auto_increment NOT NULL ); 结果如下: 如果把col1列设为键,就可以创建自增。 CREATE TABLE t1 ( id IN 阅读全文
posted @ 2017-01-17 20:02 怀素真 阅读(10200) 评论(0) 推荐(0) 编辑
摘要: 现在有三个表,结构如下: cate表 CREATE TABLE `cate` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'id', `name` char(20) DEFAULT '' COMMENT '分类名', PRIMARY 阅读全文
posted @ 2017-01-17 20:02 怀素真 阅读(2429) 评论(1) 推荐(1) 编辑
摘要: 1.在sublime text官网下载安装文件并安装 http://www.sublimetext.com/ 2.安装sublime的package control 参考网址:https://packagecontrol.io/installation#st3 3.sublime常用的插件 Emmet html/css神器 SublimeLinter ... 阅读全文
posted @ 2017-01-17 20:02 怀素真 阅读(223) 评论(0) 推荐(0) 编辑
点击右上角即可分享
微信分享提示