码迷,mamicode.com
首页 >  
搜索关键字:enable    ( 5784个结果
lamp安装
LAMP(linux,apache,mysql,php)下载镜像文件根据64位或32为的系统下载http://mirrors.sohu.com/mysqlapache的编译参数:./configure--prefix=/usr/local/apache--enable-so--enable-rewrite=shared--enable-expires=shared--enable-deflate=shared(支持静态文件压缩功能)--wit..
分类:其他好文   时间:2016-07-11 01:24:25    阅读次数:183
对同一个项目下的多个数据库Context进行迁移Migrations
PM> Enable-Migrations -MigrationsDirectory "Migrations\ContextA" -ContextTypeName MyProject.Models.ContextA PM> Enable-Migrations -MigrationsDirectory ...
分类:数据库   时间:2016-07-10 16:49:09    阅读次数:184
apache 开启压缩功能
apache如何开启压缩功能。 1,首先先确认是安装deflatte模块。如果未安装,可以重新编译apache添加参数--enable-deflate=shared ,或者扩展安装deflate模块,如何安装扩展模块可参考链接:http://www.cnblogs.com/lin1/p/564858 ...
分类:Web程序   时间:2016-07-10 15:20:17    阅读次数:222
各种坑之遇险记
how to access share folder in ubuntu virtualbox sudo adduser [username] vboxsf enable root and ssh root login step 1: sudo passwd root step 2: sudo pa ...
分类:其他好文   时间:2016-07-09 16:29:52    阅读次数:146
iOS:*** does not contain bitcode. You must rebuild it with bitcode enabled (Xcode setting ENABLE_BITCODE), obtain an updated library from the vendor, or disable bitcode for this target. for architectu
Xcode7 报错: *** does not contain bitcode. You must rebuild it with bitcode enabled (Xcode setting ENABLE_BITCODE), obtain an updated library from the v ...
分类:移动开发   时间:2016-07-08 18:00:14    阅读次数:300
读php手册一点点心得(1)
1. 要输出大段文本时,跳出PHP解析模式通常比将文本通过echo或print输出更有效率(手册) 2. note :为了代码的发行及一致性,确保不要使用短标记,短标记仅通过php.ini配置文件中的指令short_open_tag打开后才可能使用,或者在PHP编译时加入了--enable-shor ...
分类:Web程序   时间:2016-07-08 17:48:27    阅读次数:226
phpstrom 与 xdebug 配合实现PHP单步调试
不说废话,直接开始。 第一步: 安装并配置xdebug zend_extension="xxxxx" // xdebug地址 xdebug.remote_enable = On xdebug.remote_connect_back = 1 xdebug.remote_host= client_ip_ ...
分类:Web程序   时间:2016-07-08 01:26:47    阅读次数:229
php多进程pcntl学习
pcntl在windows下无法使用,linux编译php时加上参数--enable-pcntl 即可。第一次使用pcntl模块,遇到了一些坑也慢慢填上了,这里简单记录下。 1. 子进程之间变量无法共享。 2. 子进程完成,记得加上exit(),子进程退出,否则会有坑。 ...
分类:Web程序   时间:2016-07-07 19:47:26    阅读次数:240
Linux安装FTP
1.先用rpm-qa|grepvsftpd命令检查是否已经安装,如果ftp没有安装,使用yuminstall-yvsftpd安装。2.启动:/etc/init.d/vsftpdstart开机启动:chkconfig--level35vsftpdon3.设置ftp权限vi/etc/vsftpd/vsftpd.conf将anonymous_enable=YES改为anonymous_enable=NO;关闭selinux(修..
分类:系统相关   时间:2016-07-07 14:30:46    阅读次数:245
apache安装扩展模块
apache 安装扩展模块 1,首先要确认你是否加载了mod_so模块,这个就是你在编译前参数配置的时候添加-enable-so(启用DSO)。如果你没有这模块的话,是无法安装扩展模块的。 /usr/local/apache2/bin/apachectl -l 在列出来的内容如果有mod_so,则说 ...
分类:Web程序   时间:2016-07-07 06:13:35    阅读次数:1587
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!