问题一、
安装pureftpd后,选择了User manager for PureFTPd以web方式进行用户管理,访问web页面标题、图标未正常显示,内容显示如下
\n"); $LFile = "english.php"; } require("language/".$LFile); // Read the language file ?>\n"); $LFile = "english.php"; } require("language/".$LFile); // Read the language file ?>
问题是,php的短标签为开启。
vi <php-dir>/etc/php.ini 找到
; This directive determines whether or not PHP will recognize code between
; <? and ?> tags as PHP source which should be processed as such. It's been
; recommended for several years that you not use the short tag "short cut" and
; instead to use the full <?php and ?> tag combination. With the wide spread use
; of XML and use of these tags by other languages, the server can become easily
; confused and end up parsing the wrong code in the wrong context. But because
; this short cut has been a feature for such a long time, it's currently still
; supported for backwards compatibility, but we recommend you don't use them.
; Default Value: On
; Development Value: Off
; Production Value: Off
; http://php.net/short-open-tag
short_open_tag = off
将short_open_tag = off 改为short_open_tag = on
重启php后正常。
问题二、
在上传时,nginx提示“413 Request Entity Too Large”这是nginx 限制了文件大小
vi /usr/local/nginx/conf/nginx.conf
找到http{}段,添加 client_max_body_size 20m;
重启NGINX
kill -hup `cat /usr/local/nginx/nginx.pid `
恢复正常。