-
Notifications
You must be signed in to change notification settings - Fork 1k
How To Install a new Plugin
Plugins are utilities that provide additional functionality to your AVideo. To install a plugin you just need to put the plugin zip file. Once a plugin is installed, you may activate it or deactivate it from the Plugins menu in your plugin manager.
You can buy our commercial plugins here https://youphp.tube/marketplace/
To install a plugin you have two options:
To use this button, make sure you have the unzip app on your server
sudo apt-get install unzip
You will also need to make the plugin dir writable before upload
chown www-data:www-data /var/www/html/AVideo/plugin/ && chmod 755 /var/www/html/AVideo/plugin/
If you are still not sure how to do it, take a look at this video: https://tutorials.avideo.com/video/110/donwloading-and-installing-a-plugin
Unzip the file and upload this to the plugin directory on your AVideo server. Usually the directory is /var/www/html/AVideo/plugin/
.
The Folder must be the same name as the file inside, for example, if you are uploading the Video Resolution Switcher plugin, you should have a directory name called
VideoResolutionSwitcher
|_ VideoResolutionSwitcher.php
|_ Other files ...
Sometimes you upload a new plugin version and nothing changes. this is probably regarding a permission problem.
In this case is recommended you do delete the plugin folder, then upload it again...
for example, you can delete the folder with the command:
rm -R /var/www/html/AVideo/plugin/Notifications/
then you can use the form to upload the plugin again.