nginx showing blank PHP pages

前端 未结 17 2232
走了就别回头了
走了就别回头了 2020-12-04 05:56

I have setup an nginx server with php5-fpm. When I try to load the site I get a blank page with no errors. Html pages are served fine but not php. I tried turning on disp

17条回答
  •  佛祖请我去吃肉
    2020-12-04 06:20

    These hints helped me with my Ubuntu 14.04 LTS install,

    In addition I needed to turn on the short_open_tag in /etc/php5/fpm/php.ini

    $ sudo kate /etc/php5/fpm/php.ini
    
    short_open_tag = On
    
    $ sudo service php5-fpm restart
    $ sudo service nginx reload
    

提交回复
热议问题