If you want to send remote XML procedure calls to be made over HTTP, php-xmlrpc
library can help you to achieve that. Let’s see how to install PHP Xmlrpc on Amazon Linux 2.
Prerequisites
- Amazon Linux 2
- sudo privileges
- PHP installed
Install PHP Xmlrpc on Amazon Linux 2
Step 1. Enable the desired PHP version.
sudo amazon-linux-extras enable php{version}
For example:
sudo amazon-linux-extras enable php7.4
Step 2. Install php-xmlrpc.
sudo yum clean metadata
sudo yum install php php-xmlrpc
Step 3. Restart your web server service.
sudo systemctl restart nginx
sudo systemctl restart php-fpm
Step 4. Create the phpinfo file.
echo "<?php phpinfo(); ?>" > /var/www/html/info.php
Step 5. Verify the installation.
http://server_ip/info.php
Conclusion
Feel free to leave a comment below and if you find this tutorial useful, follow our official channel on Telegram.