• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

Question 7.4 How to install "event" Module (Plugin) in PHP Version?

You can use this method for CentOS or adapt it for Ubuntu/Debian:

# yum install plesk-php74-devel gcc make libevent-devel
# /opt/plesk/php/7.4/bin/pecl install event
# echo "extension=event.so" > /opt/plesk/php/7.4/etc/php.d/event.ini
# plesk bin php_handler --reread

Then check that event module is loaded:

# /opt/plesk/php/7.4/bin/php -m | grep event
event
 
Back
Top