码迷,mamicode.com
首页 > 2015年10月20日 > 全部分享
css transition过渡
css过渡效果transition设置过渡,transition的属性包括如下图:属性描述transition简写属性,用于在一个属性中设置四个过渡属性。transition-property规定应用过渡的CSS属性的名称。transition-duration定义过渡效果花费的时间。默认是0。transition-timing-function规定过渡效..
分类:Web程序   时间:2015-10-20 19:48:52    阅读次数:244
php 加速器eaccelerator-0.9.6.1 安装及配置
tarjxfeaccelerator-0.9.6.1.tar.bz2 cdeaccelerator-0.9.6.1/ mkdir-p/usr/local/eaccelerator_cache /usr/bin/phpize ./configure--enable-eaccelerator=shared--with-php-config=/usr/bin/php-config make makeinstall echo‘[eaccelerator]‘>>/etc/php.ini echo‘..
分类:Web程序   时间:2015-10-20 19:50:31    阅读次数:242
kernel 配置优化
net.ipv4.ip_forward=0 net.ipv4.conf.default.rp_filter=1 net.ipv4.conf.default.accept_source_route=0 kernel.sysrq=0 kernel.core_uses_pid=1 net.ipv4.tcp_syncookies=1 net.ipv4.tcp_tw_reuse=1 net.ipv4.tcp_tw_recycle=1 net.ipv4.tcp_fin_timeout=30 net.ipv4.tcp_ma..
分类:其他好文   时间:2015-10-20 19:51:01    阅读次数:259
Centos7+Apache2.4+Domino9实现HTTP协议邮件代理
说到Centos我们大家都知道,已经更新到了Centos7.1版本了,Centos7比之前的Centos6.x版本内容更新比较大,最显著的是命令有明显差异。当然除了OS升级以外,services也有变化的,比如防火墙,从iptables到firewalld的转变,对于Centos版本的不同功能不是今天介绍的主题,我们介..
分类:Web程序   时间:2015-10-20 19:48:02    阅读次数:1228
finished with non-zero exit value -1073741819
androidaapt.exe停止工作错误如下Error:Executionfailedfortask‘:app:processDebugResources‘.>com.android.ide.common.process.ProcessException:org.gradle.process.internal.ExecException:Process‘command‘G:\SDK\SDK\build-tools\21.0.0\aapt.exe‘‘finishedwithnon-zer..
分类:其他好文   时间:2015-10-20 19:47:35    阅读次数:679
centos7 编译python 退格 删除 字符不识别
环境:Centos7源码编译Python3.5问题:无法退格、删除现象:删除或退格时出现^H^H^H^H^H^[[C^[[C解决方案:yuminstallreadline*/usr/local/python3/bin/python3.5#试验后发现还是不能解决问题yumlist|grep‘readline‘yuminstallreadline-devel-y./configure--help./configure--p..
分类:编程语言   时间:2015-10-20 19:48:38    阅读次数:206
在Linux中怎样将MySQL迁移到 MariaDB 上
自从甲骨文收购MySQL后,由于甲骨文对MySQL的开发和维护更多倾向于闭门的立场,很多MySQL的开发者和用户放弃了MySQL。在社区驱动下,促使更多人移到MySQL的另一个叫MariaDB的分支。在原有MySQL开发人员的带领下,MariaDB的开发遵循开源的理念,并确保它的二进制格式与MySQL兼容..
分类:数据库   时间:2015-10-20 19:49:16    阅读次数:294
zabbix通过jmx监控tomcat
实验目的:zabbix监控tomcat实验环境:zabbix2.4.4tomcat6.0.4.1服务器端:已经安装好LAMP+zabbix_server客户端:已经安装好zabbix_agentdtomcatzabbix服务端配置:(重新编译zabbix_server)yum-yinstalljavajava-devel./configure--prefix=/usr/local/zabbix/--enable-server..
分类:其他好文   时间:2015-10-20 19:49:40    阅读次数:295
配置Nginx支持ThinkPHP
location/{root/usr/share/nginx/html;indexindex.htmlindex.htm;if(!-e$request_filename){rewrite^/index.php(.*)$/index.php?s=$1last;rewrite^(.*)$/index.php?s=$1last;break;}}
分类:Web程序   时间:2015-10-20 19:47:58    阅读次数:153
Exchange 2013如何自建管理员角色
以一例说明:创建一个管理员角色,使其只有创建邮箱没有删除邮箱的权限创建管理员角色C:\Windows\system32>New-ManagementRole-Name"ITOperator"-Parent"MailRecipientCreation"创建"ITOperator"角色继承"MailRecipientCreation"的所有权限2.删除角色中的权限项C:\Windows\sys..
分类:其他好文   时间:2015-10-20 19:47:42    阅读次数:147
ssh_exchange_identification: Connection closed by remote hos
ssh访问某机器时,会得到以下错误信息:[root@stormnimbusopt]#sshhregion92ssh_exchange_identification:Connectionclosedbyremotehost得到以上错误提示,是因为要远程ssh访问的机器限制你的ssh访问。解决方法:修改/etc/hosts.allow文件,将你要ssh访问的机器ip添加进去,比..
分类:其他好文   时间:2015-10-20 19:48:30    阅读次数:132
简单的存储过程示例
declarecusCodevarchar2(255);cusIdnumber(19);bindStatusvarchar2(255);beginForcusin(select*fromgt_ali_ordertwhere(t.status_type=‘WAITACCEPT‘ort.status_type=‘ACCEPT‘)andt.gmt_commit>to_date(‘20150707000000‘,‘yyyyMMddhh24miss‘)andt.gmt_commit<to_date(‘201..
分类:其他好文   时间:2015-10-20 19:47:05    阅读次数:135
maven工程 看不到Maven dependencies
maven工程看不到Mavendependencies解决方案:1:备份之前的pom文件;2:删除pom文件;3:项目右键--Maven--EnableDependencyManagement;4:这样maven会给项目新建一个pom.xml;5:是不是已经看到了MavenDependencies;
分类:其他好文   时间:2015-10-20 19:48:15    阅读次数:141
搭建PHP服务器php-5.3.28.tar.gz
构建PHP运行环境PHP所用的软件:php-5.3.28.tar.gz优化模块:ZendGuardLoader-php-5.3-linux-glibc23-x86_64.tar.gz(两者之间版本一样)准备工作:卸载RPM安装的PHP[root@localhostphp]#rpm-ephpphp-cliphp-ldapphp-commonphp-mysql--nodeps2.安装zlib-devellibxml2-devel[roo..
分类:Web程序   时间:2015-10-20 19:47:42    阅读次数:348
如何开启PHP的PDO扩展模块
------------------------报错------------------------Fatalerror:Class‘PDO‘notfoundin/usr/share/nginx/html/Core/Library/Think/Db.class.phponline39:(Class‘PDO‘notfound错误位置FILE:/usr/share/nginx/html/Core/Library/Think/Db.class.phpLINE:39--------------------..
分类:Web程序   时间:2015-10-20 19:46:49    阅读次数:210
Jquery判断checkbox是否被选中
判断checkbox是否被选中方法一:if($("#checkbox-id")get(0).checked){//dosomething}选中:true没选:false$("#formal").get(0).checkedtrue$("#formal").get(0).checkedfalse方法二:if($(‘#checkbox-id‘).is(‘:checked‘)){//dosomething}选中:true没选:false$("#formal").i..
分类:Web程序   时间:2015-10-20 19:46:02    阅读次数:177
openstack swift做glance后端存储
在controller里操作vim/etc/glance/glance-api.conf[glance_store]default_store=swift默认为file改为swiftstores=file,http默认不用动swift_store_auth_version=2默认版本为2stores=glance.store.swift.Store,glance.store.filesystem.Store此项一定要加上,不然无法上传swift..
分类:编程语言   时间:2015-10-20 19:44:56    阅读次数:315
1055条   上一页 1 ... 11 12 13 14 15 16 17 ... 63 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!