Visual Studio 常见编译错误

3-11 1,129 views

fatal error LNK1561: entry point must be defined 这是因为编译器找不到main函数 error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MTd_St...
阅读全文 0

Nginx 自动将http跳转到https

3-04 25,871 views

在需要跳转的server配置上加一句 return 301 https://$server_name$request_uri; server { listen 80; server_name my.domain.com; ...
阅读全文 11

Photoshop 显示像素单位

2-16 1,358 views

打开ps,点击菜单栏的窗口,选择信息。 在弹出的信息框里点击右上角的小三角,选择面板选项。 在弹出框的标尺单位,选择像素 回到舞台,点击裁剪工具,任...
阅读全文 0

Use UNC path in Filezilla server

2-13 213,738 views

Filezilla is widely used for ftp servers, it's open source and easy to setup. It also support SSL encrypted FTP connections which is nice for data...
阅读全文 393

如何不让google.com跳转到google.com.hk

2-08 2,061 views

作者:叶落孤舟 链接:https://www.zhihu.com/question/20460191/answer/16011213 来源:知乎 著作权归作者所有,转载请联系作者获得授权。 自从google的...
阅读全文 0

php 获取一个timestamp

2-07 1,115 views

function timestamp(){ list($usec, $sec) = explode(" ", microtime()); return (double)(((float)$usec + (float)$sec)*10000); }
阅读全文 0

wordpress搬家换域名

2-04 48,277 views

很多朋友开始接触wordpress都是在本地安装调试好了,再上传到服务器正常运营,我也是一样当我在本地测试好了准备将网站上线,在搬家到服务器的时候遇到过的...
阅读全文 49

nginx windos安装使用

2-04 775 views

php-cgi 启动脚本 @echo off set p=php-cgi.exe for /f %%i in ('tasklist') do ( if %%i==%p% echo php-cgi.exe has already been running, don't nee...
阅读全文 0

ubuntu 安装 vsftpd

1-05 864 views

安装:sudo apt-get install vsftpd 启动:sudo service vsftpd restart 建立目录:sudo mkdir /home/uftp 建立用户:sudo useradd -d /home/uftp -s /bin/...
阅读全文 0

文件名过长不能读写

1-04 918 views

本地路径添加\\?\ \\?\d:\a\b\... 网络路径添加\\?\UNC\ \\?\UNC\192.168.0.36\share\....
阅读全文 0