lnmp环境不支持require 解决方法】的更多相关文章

lnmp环境配置: 3处改动地方---->排查过程: 从phpinfo.php中查找php.ini-----所在位置 /usr/local/php/etc/php.ini 1.display_errors = On; //由off改为on 2.session.save_path = "/tmp" //开启 sesssion tmp~~~~ 123 vim enable-php-pathinfo.conf -----find---->fastcgi.conf 124 vim…
max-height,min-height在IE下不支持的解决方法 max-width:160px; max-height:160px; _width:expression(this.width > 160 ? "160px": true); /* IE6 */ _height:expression(this.height > 160 ? "160px": true); /* IE6 */…
原文:WPF PasswordBox不支持绑定解决方法 PasswordBox的Password属性因为安全原因不支持直接绑定,可以使用依赖属性实现.直接插入代码 public class PasswordBoxHelper { public static readonly DependencyProperty PasswordProperty = DependencyProperty.RegisterAttached("Password", typeof(string), typeo…
兼容firefox,ie,谷歌,阻止浏览器冒泡事件,Firefox不支持event解决方法 // 获取事件function getEvent(){ if(window.event) {return window.event;} func=getEvent.caller; while(func!=null){ var arg0=func.arguments[0]; if(arg0){ if((arg0.constructor==Event || arg0.constructor ==MouseEv…
**************************** 就是从数据库中取出来时,在存入linux的文件里时,在字符流时制定编码格式.代码如下: FileOutputStream fos=new FileOutputStream(new File(filePath),true); Writer ut=new OutputStreamWriter(fos,"UTF-8"); out.write(s); out.write("\n"); out.flush(); fos…
一.安装Rvm 1.下载安装Rvm $ curl -L https://get.rvm.io | bash -s stable 此时可能出现错误:"gpg: 无法检查签名:找不到公钥" 解决方法: $ gpg --keyserver subkeys.pgp.net --recv 4F6C1E86 //下划线上应改为你所缺少的公钥 $ gpg --export --armor 4F6C1E86 | sudo apt-key add - //下划线上应改为你所缺少的公钥 2.载入Rvm环境…
LNMP无法删除或更改权限,显示:rm: cannot remove `.user.ini’: Operation not permitted 无法删除“.user.ini”文件解决方法,运行后删除即可 chattr -i /www/wwwroot/yoursite/.user.ini 如果是需要修改文件,记得修改完以后运行: chattr +i /www/wwwroot/yoursite/.user.ini chattr命令:有时候你发现用root权限都不能修改某个文件,大部分原因是曾经用ch…
最近在搞centos,遇见的一些问题,记录一下 首先是安装问题 安装过程参考http://www.cnblogs.com/seesea125/archive/2012/02/25/2368255.html 见下图 enter确认的话,重启后会一直卡在centos页面 解决方法就是: 在安装过程第一步中将 Install system with basic video driver 改为 Install or upgrade an existing system即可…
IE 中可以直接使用event 对象,而FF 中则不可以,解决方法之一如下: var theEvent = window.event || arguments.callee.caller.arguments[0]; 第二种是将event 作为参数来传递: function xxx(e){var theEvent = window.event || e;} srcElement 和target 在IE 中srcElement 表示产生事件的源,比如是哪个按钮触发的onclick 事件,FF 中则是…
今天要修改一个老DLL文件,安装了vb6,用起来很不爽. VB6编辑器 和 VBA编辑器 (Office 中的VB编辑器)都不支持鼠标滚动. 但 MS 已经提供了补丁http://download.microsoft.com/download/e/f/b/efb39198-7c59-4ace-a5c4-8f0f88e00d34/vb6mousewheel.exe. 微软这个不好下载,备用的 http://ishare.iask.sina.com.cn/f/25099135.html 下载补丁后,…