大约有 1,159 项符合查询结果(耗时:0.0091秒) [XML]

https://bbs.tsingfun.com/thread-64-1-1.html 

LINUX下用PHPIZE安装PHP GD扩展 - PHP - 清泛IT论坛,有思想、有深度

本帖最后由 zqp2013 于 2015-4-26 14:39 编辑 环境:LNMP in centOS 6.4。linux下PHP的扩展可以用phpize的方法,比较简单地进行启用。以下以PHP-GD2 库安装为例子。sudo yum install php-gd2  png jpeg freetype   //YUM安装扩展cd /app/php-5.4.13...
https://bbs.tsingfun.com/thread-843-1-1.html 

Git基本命令 - 脚本技术 - 清泛IT论坛,有思想、有深度

在~/.ssh/config中使用vim配置主机信息。Host XXX     uesr git     HostName www.XXX.com     Port 8000 从服务器上下载项目git clone Host:projectName.git Host为1中的XXX,projectName为服务器上的项目名称 更新本地代码git commit -a ...
https://bbs.tsingfun.com/thread-27-1-1.html 

IIS配置常见问题汇总(持续更新 ) - 环境配置 - 清泛IT论坛,有思想、有深度

1. HTTP 错误 404.3 - Not Found 由于扩展配置问题而无法提供您请求的页面。如果该页面是脚本,请添加处理程序。如果应下载文件,请添加 MIME 映射。 原因:没有安装IIS的ASP.NET组件 解决:添加/删除程序,IIS,勾选安装“.net扩...
https://bbs.tsingfun.com/thread-870-1-1.html 

Windows没有telnet怎么办? - 环境配置 - 清泛IT论坛,有思想、有深度

一、打开控制面板,点”卸载程序“: 二、启用功能列表中找到“Telnet客户端”并勾上,点“确定”: 三、telnet命令OK:
https://bbs.tsingfun.com/thread-820-1-1.html 

nsis指定默认安装路径,记住上次安装路径 - 脚本技术 - 清泛IT论坛,有思想...

!define PRODUCT_DEFAULT_PATH "C:\Test" .... InstallDir "${PRODUCT_DEFAULT_PATH}" InstallDirRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\App Paths\Test.exe" "Path" InstallDir 指定$INSTDIR值为"C:\Test";InstallDirRegKey &nbsp...
https://bbs.tsingfun.com/thread-794-1-1.html 

虚拟机安装CentOS出错:EDD:Error 8000 reading sector 2106934 - 环境配置...

EDD:Error 8000 reading sector 2106934 No DEFAULT or UI configuration directive found! boot: Getting closer! When i start to install every thing seem to be fine. 1.Select language k 2.select location k 3.configure keyboard k 4.network config k then it gets stuck on a purple screen with n...
https://bbs.tsingfun.com/thread-619-1-1.html 

js定时器setInterval()与setTimeout()区别 - 建站技术 - 清泛IT论坛,有思想、有深度

setInterval (表达式, 延时时间):每隔一个延时时间就执行一次表达式。 setTimeout(表达式, 延时时间):只执行一次表达式就停止了。 一般在其表达式中使用setTimeout()可以实现setInterval一样的效果: showTime(); function showTime() {   ...
https://bbs.tsingfun.com/thread-309-1-1.html 

Win7以上操作系统清理系统图标缓存脚本 - 脚本技术 - 清泛IT论坛,有思想、有深度

本帖最后由 沧海一粟 于 2015-07-21 13:43 编辑 rem 关闭Windows外壳程序explorer taskkill /f /im explorer.exe rem 清理系统图标缓存数据库 attrib -h -s -r "%userprofile%\AppData\Local\IconCache.db" del /f "%userprofile%\AppData\Local\IconCache.db" attrib...
https://bbs.tsingfun.com/thread-550-1-1.html 

JS卷动效果的调用函数:startmarquee - 建站技术 - 清泛IT论坛,有思想、有深度

本帖最后由 沧海一粟 于 2015-10-12 16:28 编辑 jquery.sgallery.js function startmarquee(lh,speed,delay,index) { /* 函数startmarquee的参数: lh:文字一次向上滚动的距离或高度; speed:滚动速度; delay:滚动停顿的时间间隔; index:可以使...
https://bbs.tsingfun.com/thread-26-1-1.html 

required file `./ltmain.sh' not found - 脚本技术 - 清泛IT论坛,有思想、有深度

本帖最后由 zqp2013 于 2015-1-27 15:23 编辑 在linux下编译c/c++程序出错: $ automake --add-missing .... configure.in:18: required file `build/ltmain.sh' not found .... 解决方案(libtoolize配置即可): $libtoolize --version -libtoolize (GNU libtool) 1.4.2 ........