LAMP环境下的隐藏文件
    Linux环境下有些系统文件或者以'.'开头的文件是默认隐藏的,Linux系统的服务器也同样,简言之就是使用FTP或者远程登录的编辑器,进行编辑时,无从下手,因为看不到!    最常见的就是配置伪静态时,修改.htaccess文件。    解决方案:       使用Filezilla链接,其他的FTP软件类似,配置:     【服务器】-->【强制显示隐藏文件】-->Filezilla自动重新
....
Redis的安装和配置
    Redis是常用基于内存的Key-Value数据库,比Memcache更先进,支持多种数据结构,高效,快速。用Redis可以很轻松解决高并发的数据访问问题;做为时时监控信号处理也非常不错。    1. Redis在Windows中安装    在Windows系统上安装Redis数据库是件非常简单的事情,下载可执行安装文件(exe),双击安装即可。下载地址:                   &n
....
stream_socket_enable_crypto(): this stream does not support SSL/crypto
    PHP调用邮件类时报错    stream_socket_enable_crypto(): this stream does not support SSL/crypto    就是php.ini下openssl扩展默认情况下是没有打开:    wamp下:     ;extension=php_openssl.dll    Lamp下:     sudo apt-get install openssl libcurl3-openssl-dev #需要先安装openssl     #进入php源码解压目录     cd /path/to/php/ext/openssl     /usr
....
邮箱类的调用
Warning: stream_socket_client() has been disabled for security reasons in /.......    在调用mail类时报错,一般是服务器禁用了stream_socket_client()函数,可以试试先和空间上商讨,一般会失败;换空间或者升级空间,当然会需要一定的时间和代价,此时可以考虑使用fsockopen替换;    需要注意的就是两个用法不同,以下是参考代码对比:fsockopen($host, 80, $errno, $errstr, 30); fsockopen($host, $port, $errno, $errstr, $connection_timeout); stream_
....
Nginx配置详解
server { listen 80 default_server; listen [::]:80 default_server ipv6only=on; root /usr/share/nginx/html; index index.php index.html index.htm; # Make site accessible from http://localhost/ server_name localhost; location / { # First attempt to serve request as file, then # as directory, then fall back to displaying a 404. #try_files $uri $uri/ =404; try_files $uri $uri/ /index.php; # Uncomment to enable naxsi on this location # include /etc/nginx/naxsi.rules
....
Nginx显示localhost目录
    nginx 运行localhost,默认不能目录结构,不是因为index.html,删除之后同样不能.想要显示目录,需要配置/etc/nginx/sites-enabled/default,如图:    autoindex on;    另外两个参数:     autoindex_exact_size off;    默认为on,显示出文件的确切大小,单位是bytes。    改为off后,显示出文件的大概大小,单位是kB或者MB或者GB    autoindex_localtime on;    默认为o
....