在IE9,或IE10中ckfinder在IE10,IE9中的弹出框不能选择,或者不能上传解决方法 把弹出框嵌入到jquery dialog中.可以解决 I did: // javascript files Jquery you can download from jquery.com <script src=".....jquery-1.8.2.js" " type="text/javascript"></script <scr…
使用VS2010创建web应用程序时出现如下提示ASP.NET 4.0尚未在 Web 服务器上注册.为了使网站正确运行,可能需要手动将 Web 服务器配置为使用 ASP.NET 4.0,按 F1 可了解更多详细信息 解决方法: 首先设置IIS应用程序池 net framework版本为4.0 然后 开始->所有程序->附件->鼠标右键点击“命令提示符”->以管理员身份运行->%windir%\Microsoft.NET\Framework\v4.0.30319\aspnet…
在某次强行对机子断电后,再开机后发现docker没启动 运行service docker start显示docker start/running, process xxxx,之后不一会儿就停止了, 再运行service docker status显示docker stop/waiting 这时候使用docker -d或者docker daemon来查看错误 Warning: '-d' is deprecated, it will be removed soon. See usage. WARN[…
新建一个SQL Server Database Project,提示: Unable to open Database project This version of SQL Server Data Tools is not compatible with the database runtime components installed on this computer. 老外说因为安装了Microsoft SQL Server 2012 SP1导致,而我并没有安装它且两个月前创建项目是成功的…
报错:1130-host...is not allowed to connect to this mysql server 解决方法: 1.改表法 可能是你的账号不允许从远程登录,这个时候只要进入服务器,登入mysql后,更改 “mysql”数据库里的“user”表里的“host”项,从“localhost”改成“%”: mysql -u root -pvmwaremysql>use mysql; mysql>update user set host = '%' where user = 'r…
原因: By default, Safari Mobile does not use the :active state unless there is a touchstart event handler on the relevant element or on the <body>. 解决方法: 1.body标签上添加ontouchstart空方法(页面首个元素起作用) <body ontouchstart=""> </body> 2.docu…