服务器2025年10月13日
在ubuntu下使用Qt 编译时候遇上了cannot find -lGL错误,使用命令 sudo apt-get install libqt4-dev或者sudo apt-get install libgl1-mesa-dev或者libgl1-mesa-dev或者libglu1-mesa-dev可以解决问题 之前可以先apt-get install upd...
后端开发2025年08月02日
在windows实验ruby on rails rubygem devise,在注册用户时报cannot load such file —bcrypt_ext错误,下面是解决方法: 1、首先安装Devki 下载地址 - http://rubyinstaller.org/downloads/ 2、将bin路径配置到环境变量path 3、在命令端(cmd)执行...
服务器2025年07月17日
由于是本地yum源安装软件,无法联网,因此使用yum安装软件时报了错,解决方法是: 打开vi /etc/resolv.conf文件 把里面的内容改成: nameserver 8.8.8.8 修改完之后,需要重启网卡 centos6的网卡重启方法:service network restart centos7的网卡重启方法:systemctl restart...
数据库2025年07月05日
/** * 接口方法 */ public void excuteInputDB(SynchServiceConfig synchServiceConfig) throws Exception { try { // if(!"".equals(queryQdParaWayinfo())) // { // CLOB clob = oracl...
后端开发2025年06月27日
报错如下: /usr/lib/ruby/1.9.1/rubygems/custom_require.rb:36:in `require': cannot load such file -- redis (LoadError) from /usr/lib/ruby/1.9.1/rubygems/custom_require.rb:36:in `require...
后端开发2023年05月13日
在服务器上测试时,竟然提示本地没有出现的错误: Warning: Cannot modify header information - headers already sent by.... 这样的语句,很显然,造成这个原因是因为setcookie造成的,查了一下网上,有如下的解释: cookie本身在使用上有一些限制,例如: 1.呼叫setcookie的...