DirectAdmin如何安裝XmlRPC
Xml-RPC是一個遠程過程調用(remote procedure call,RPC)的分布式計算協議,通過XML將調用函數封裝,並使用HTTP協議作爲傳送機制。
在DirectAdmin上安裝XmlRPC模塊:
① 在服務器上運行以下命令以檢查配置文件的位置:
./build used_configs
PHP(默認)配置文件:/usr/local/directadmin/custombuild/configure/fpm/configure.php70
② 轉到路徑:
cd /usr/local/directadmin/custombuild/configure/fpm
③ 複制備份:
cp configure.php70 configure.php70_ORG
④ 編輯configure.php70文件
⑤ 將–with-xmlrpc \添加到配置文件中,例如:
#!/bin/sh ./configure \ --prefix=/usr/local/php55 \ --program-suffix=55 \ --enable-fpm \ --with-config-file-scan-dir=/usr/local/php55/lib/php.conf.d \ --with-curl=/usr/local/lib \ --with-gd \ --enable-gd-native-ttf \ --with-gettext \ --with-jpeg-dir=/usr/local/lib \ --with-freetype-dir=/usr/local/lib \ --with-libxml-dir=/usr/local/lib \ --with-kerberos \ --with-openssl \ --with-mcrypt \ --with-mhash \ --with-mysql=mysqlnd \ --with-mysql-sock=/var/lib/mysql/mysql.sock \ --with-mysqli=mysqlnd \ --with-pcre-regex=/usr/local \ --with-pdo-mysql=mysqlnd \ --with-pear \ --with-png-dir=/usr/local/lib \ --with-xsl \ --with-zlib \ --with-zlib-dir=/usr/local/lib \ --with-xmlrpc \ --enable-zip \ --with-iconv=/usr/local \ --enable-bcmath \ --enable-calendar \ --enable-ftp \ --enable-sockets \ --enable-soap \ --enable-mbstring \ --with-icu-dir=/usr/local/icu \ --enable-intl
注意:如果要在配置文件之間添加模塊,請添加\。然而,如果您在配置結尾處添加模塊,則不需要\。
⑥ 完成更改後,請轉到以下路徑:
cd /usr/local/directadmin/custombuild
⑦ 執行以下命令:
./build php n
模塊開始編譯安裝。
⑧ 完成後您可以通過運行命令進行檢查:
php -m | grep xmlrpc
未經允許不得轉載:犄角旮旯 » DirectAdmin如何安裝XmlRPC
評論列表