-
0answer views
Windows下Rsync服务注册命令
命令如下: D:\Soft\CwRsyncServer\bin\cygrunsrv.exe -I RsyncServerName -p /cygdrive/D/Soft/CwRsyncServer/bin/cygrunsrv.exe -1 /cygdrive/D/Soft/CwRsyncServer/l...
04-03 -
0answer views
Ubuntu下安装Chrome提示:依赖关系不满足:libudev0(>=147)的解决办法
原文:http://forum.ubuntu.org.cn/viewtopic.php?t=422922 在网上搜索了下,从上面链接找到了解决办法。 下载安装libudev0后就可以安装Chrome了。 32位下载这个:http:...
05-11 -
0answer views
Windows部分服务一直卡在”启动”或”停止”状态的解决办法。
找到文件 “C:\WINDOWS\system32\activeds.dll” 增加Users用户组的读取和运行权限,重启系统即可。
09-03 -
0answer views
PHP将指定图片插入透明PNG中,实现水印效果!
将图片B.png(16px * 16px),嵌入图片A.png中,生成一个图片C.png。 <?php $im = imagecreatefrompng(‘A.png’); $im2 = imagecreatefrompng(‘B.p...
04-09 -
0answer views
ZendStudio 8及以上版本无法加载esftp插件的解决办法
一直使用ZendStudio作为PHP开发工具,在6和7版本上一直使用了esftp这个插件,觉得非常好用。 但是自从ZendStudio8发布以后,此工具无法正常使用了。后来终于在网上发现...
03-26 -
0answer views
PHP命令行获取用户输入
echo “请输入您的姓名:”; $input = trim(fgets(STDIN)); echo “欢迎您,{$input}!”;
03-30 -
0answer views
Windows下注册MongoDB为服务
命令如下: mongod.exe –logpath “D:\Soft\mongodb2\logs” –logappend –dbpath “E:\database\mongodb\2” –directoryp...
04-03 -
0answer views
Ubuntu 安装 install_flash_player_11_linux.i386.tar.gz
原文地址:http://hi.baidu.com/kaka_lo/item/fd243d336ca808a2b611db77 1. 解压 install_flash_player_11_linux.i386.tar.gz ,并进入目录 2. sudo cp libflashplayer....
10-12 -
0answer views
FileZilla下载文件时保留被下载文件原来的修改时间.
菜单->传输->保留传输文件的时间戳.
05-27 -
0answer views
命令行配置Windows网卡IP地址
0. 如何获取网络连接的名称? netsh interface ip show interfaces 1. 重置IP地址: netsh interface ip set address “本地连接” static 192.168.1.10 255.2...
06-21