Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/php/259.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/wordpress/11.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
CentOS服务器上的PHP模块-我需要哪些?_Php_Wordpress_Module_Webserver_Centos - Fatal编程技术网

CentOS服务器上的PHP模块-我需要哪些?

CentOS服务器上的PHP模块-我需要哪些?,php,wordpress,module,webserver,centos,Php,Wordpress,Module,Webserver,Centos,我刚刚将LAMP的所有组件安装到我的CentOS Web服务器上。 现在,我可以选择几个库来安装: 我的需求:我只想运行一个Webserver并在其上安装Wordpress 我的问题:我需要什么模块? [root@***** ~]# yum search php- Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * base: * extras: * updates: =========

我刚刚将LAMP的所有组件安装到我的CentOS Web服务器上。 现在,我可以选择几个库来安装:

我的需求:我只想运行一个Webserver并在其上安装Wordpress

我的问题:我需要什么模块?

[root@***** ~]# yum search php-
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
 * base: 
 * extras: 
 * updates: 
============================================== N/S Matched: php- ==============================================
php-bcmath.x86_64 : A module for PHP applications for using the bcmath library
php-cli.x86_64 : Command-line interface for PHP
php-common.x86_64 : Common files for PHP
php-dba.x86_64 : A database abstraction layer module for PHP applications
php-devel.x86_64 : Files needed for building PHP extensions
php-embedded.x86_64 : PHP library for embedding in applications
php-enchant.x86_64 : Human Language and Character Encoding Support
php-fpm.x86_64 : PHP FastCGI Process Manager
php-gd.x86_64 : A module for PHP applications for using the gd graphics library
php-imap.x86_64 : A module for PHP applications that use IMAP
php-intl.x86_64 : Internationalization extension for PHP applications
php-ldap.x86_64 : A module for PHP applications that use LDAP
php-mbstring.x86_64 : A module for PHP applications which need multi-byte string handling
php-mysql.x86_64 : A module for PHP applications that use MySQL databases
php-odbc.x86_64 : A module for PHP applications that use ODBC databases
php-pdo.x86_64 : A database access abstraction module for PHP applications
php-pear.noarch : PHP Extension and Application Repository framework
php-pecl-apc.x86_64 : APC caches and optimizes PHP intermediate code
php-pecl-apc-devel.x86_64 : APC developer files (header)
php-pecl-memcache.x86_64 : Extension to work with the Memcached caching daemon
php-pgsql.x86_64 : A PostgreSQL database module for PHP
php-process.x86_64 : Modules for PHP script using system process interfaces
php-pspell.x86_64 : A module for PHP applications for using pspell interfaces
php-recode.x86_64 : A module for PHP applications for using the recode library
php-snmp.x86_64 : A module for PHP applications that query SNMP-managed devices
php-soap.x86_64 : A module for PHP applications that use the SOAP protocol
php-tidy.x86_64 : Standard PHP module provides tidy library support
php-xml.x86_64 : A module for PHP applications which use XML
php-xmlrpc.x86_64 : A module for PHP applications which use the XML-RPC protocol
php-zts.x86_64 : Thread-safe PHP interpreter for use with the Apache HTTP Server

我可能没有完整的清单,但这里有一些建议:

  • php-mysql
  • php pdo
  • php pecl
  • php xml

但是,如果我是您,我会安装,并从中安装您所需的所有扩展或模块。从一个源代码管理所有php库似乎更容易,因为我敢打赌,在某个时候,您可能希望使用一个无法通过yum存储库获得的php库。

谢谢您dsw88。我在一个在线教程中发现,我只需要以下php模块就可以让Wordpress工作:PHPGD。所以我只安装了php gd,现在它运行良好。谢谢你的帮助