English 中文(简体)
• 如何在原产地安装PHP推广设备?
原标题:How to install PHP extensions on nginx?

我最近发现了NginX,并决定在我的服务器上尝试。 我拥有NginX,能够操作并能够使用PHP和超文本文档。 但现在,我想设法安装断层。 在试图安装和检查要求时,我被一项要求拦截。

PHP 推广 残疾人

博士要求你使项目组合能够在以下清单中延期(见系统要求网页提供更多信息):

gd

我曾尝试安装apt-getstalment php5-gd,并说已经安装。 因此,我建立了<代码>phpinfo()文档,并检查了该编码是否能够获得,我发现该文本。 这是否与NginX或PHP有关? 我为解决这一问题做了些什么?

最佳回答

由于你正在使用Nginx,这必须意味着你正在使用PHP-FPM。

在安装后,你需要:

sudo /etc/init.d/php-fpm restart 

service php5-fpm restart

新版

因此,PHP将重新延期。

问题回答

如果您的网络服务器的设置符合要求,则只安装了网址的加盖延伸和重新启用网址描述口译员和网络服务器。

sudo apt-get install php5-gd
sudo /etc/init.d/php-fastcgi stop
sudo /etc/init.d/php-fastcgi start
sudo /etc/init.d/nginx stop
sudo /etc/init.d/nginx start

http://library.linode.com/web-servers/nginx/php-fastcgi/ubuntu-10.04-lucid”rel=“nofollow” http://library.linode.com/web-servers/nginx/php-fastcgi/ubuntu-10.04-lucid

For future me if I forget this.

如果是贴在<条码>/etc/php/fpm上的。 然后,你可能意外地失去与<代码>conf.d的连接线,这意味着 g和PDO的负荷文档与FLPM相隔。

如果你刚刚利用与PHP5-FPM相关的基本会议,这将是一个问题。 如果您有某种习俗,你可以把档案放在另一处。

解决办法: 重塑link线。

cd /etc/php5/fpm
sudo ln -s /etc/php5/conf.d /etc/php5/fpm/conf.d

PHP extensions have only to do with PHP. Your choice of webserver (apache, nginx, etc) do not affect them. Most likely you just need to enable the gd extension. If you are on Ubuntu, check /etc/php5/conf.d folder and add a gd.ini with the following line:

extension=gd.so

如果你使用第7号标准,并且你可以发现第/etc/init.d/php-fpm,你可以尝试为我工作的<编码>systemctlstart php-fpm<>。

我在将<代码>苏多的吸收项目安装为 php5-gd上遇到了同样的问题。 建议使用<条码>代谢/代码>。 简单地更新所有包裹。

After updating, I run sudo apt-get instal php5-gd and it did all heavy lifting for me, including restarting php5-fpm and correctly installing everything in between.





相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签