大约有 3,000 项符合查询结果(耗时:0.0062秒) [XML]

https://www.tsingfun.com/it/tech/1643.html 

PHP连接MySQL报错:Fatal error: Call to undefined function mysql_connec...

...改、测试,终于找到解决方法。 很简单,只要在httpd.conf文件里在LoadModule php5_module "c:/php/php5apache2_2.dll"下面追加如下语句即可: PHPIniDir "c:/php" 之后,重新启动apache,再执行测试程序,OK。 【补充】 有的教程里说需要把libMysq...
https://www.tsingfun.com/it/tech/1684.html 

Outlook 开机自动启动 - 更多技术 - 清泛网 - 专注C/C++及内核技术

Outlook 开机自动启动把Outlook快捷方式拷贝到启动文件夹中即可。Win7:开始菜单 -> 启动Win10下:C: Users xxx AppData Roaming Microsoft Windows Start Me...把Outlook快捷方式拷贝到启动文件夹中即可。 Win7:开始菜单 -> 启动 Win10下:...
https://www.tsingfun.com/it/tech/1792.html 

Win7以上操作系统清理系统图标缓存脚本 - 更多技术 - 清泛网 - 专注C/C++及内核技术

...l\Microsoft\Windows\Explorer\thumbcache_sr.db" 保存上述脚本到文本文件中,把文件后缀面改为.bat,双击执行即可。清理 图标缓存
https://www.tsingfun.com/it/tech/1817.html 

解决TortoiseSVN出错:svn there has been a problem contacting the serve...

...has been a problem contacting the server在使用TortoiseSVN,查看某个文件的历史时(view log),...TortoiseSVN出错:svn there has been a problem contacting the server 在使用TortoiseSVN,查看某个文件的历史时(view log),出现上述错误。 解决方法: [...
https://www.tsingfun.com/it/tech/1907.html 

MFC Dialog对话框DoModal()、Create失败的原因解析 - 更多技术 - 清泛网 - ...

...oModal()、Create失败报错,十之八九是由于rc、.h相关的资源文件冲突导致。常见的有资源ID重复、自定义控件Class类找不...MFC Dialog对话框DoModal()、Create失败报错,十之八九是由于rc、.h相关的资源文件冲突导致。常见的有资源ID重复...
https://www.tsingfun.com/it/tech/1978.html 

configure: error: Unable to find gd.h anywhere under /usr/local/gd - ...

... 解决方式: 1.在gd库的安装路径下搜索没有发现gd.h文件,但是在/etc/include下有gd.h文件 2.在网上搜索发现重装gd库可解决 3.重新安装gd库,在安装时出现: configure.ac:64: error: possibly undefined macro: AM_ICONV If this token and others a...
https://www.tsingfun.com/it/tech/1988.html 

Linux下将Mysql和Apache加入到系统服务 - 更多技术 - 清泛网 - 专注C/C++及内核技术

...al mysql share mysql mysql.server etc init.d mysqld  #把msql的脚本文件拷到系统的启动...MySQL加入到系统服务里面 cp /usr/local/mysql/share/mysql/mysql.server /etc/init.d/mysqld #把msql的脚本文件拷到系统的启动目录下 cd /etc/init.d/ chkconfig --add mysqld...
https://www.tsingfun.com/it/tech/2007.html 

IOS 设备忘记root密码怎么找回 - 更多技术 - 清泛网 - 专注C/C++及内核技术

... 然后打开iFile找到etc/scroll目录 找到’master.passwd’文件 使用Text Viewer,按编辑按钮打开编辑器 找到类似于root:UlGASB5XWDrOc:0:0::0:0: 我们需要编辑的UlGASB5XWDrOc这一段 使用’crypt’函数进行算新密码,这里推荐一个网页 Cr...
https://www.tsingfun.com/it/te... 

[解决]CTRL: PTY read or GRE write failed - 更多技术 - 清泛网 - 专注C/C++及内核技术

...ection finished 于是把打开调试模式,修改/etc/ppp/pptp-options 文件,找到 #取消如下行前# debug #执行 service pptpd restart 取消行前的注释,重启pptpd服务进入调试模式 分析日志后发现是logwtmp版本的与pptpd版本不一致的原因导...
https://www.tsingfun.com/it/tech/2230.html 

linux 只读权限的代码 - 更多技术 - 清泛网 - 专注C/C++及内核技术

linux 只读权限的代码linux里,最高权限是777,那么只读文件权限数字是多少呢?答案是 444。即:chmod 444 xxx.xxlinux里,最高权限是777,那么只读文件权权限数字是多少呢?答案是 444。 #只读 chmod 444 file 关于chmod详细的用法请移...