In order to PostTube plugin work properly, you need to install/enable below features.
How to install “php-mbstring” on Ubuntu
- sudo apt-get update -y
- sudo apt-get install -y php-mbstring
- sudo service apache2 restart
How to install “cURL” on Ubuntu
- sudo apt-get install curl
- sudo service apache2 restart
How to install “zip” extension on Ubuntu
- php –version
- Once you learned your PHP version then run below command. If your PHP version 7.1 then command should be like this;
- sudo apt-get install php7.1-zip
- sudo service apache2 restart
How to install “BCMath” extension on Ubuntu
- sudo apt install php-bcmath
- sudo service apache2 restart
How to install “php-xml” extension on Ubuntu
- sudo apt install php-xml
- sudo service apache2 restart
How to enable “shell_exec” function on Ubuntu
- Open your php.ini file.
- Find “disable_functions”.
- Remove shell_exec from disable_functions list.
How to install “ffmpeg 4.x.x” on Ubuntu
- sudo add-apt-repository ppa:jonathonf/ffmpeg-4
- sudo apt install ffmpeg