{"id":9557,"date":"2025-12-05T14:34:53","date_gmt":"2025-12-05T09:04:53","guid":{"rendered":"https:\/\/pheonixsolutions.com\/blog\/?p=9557"},"modified":"2025-12-05T14:36:32","modified_gmt":"2025-12-05T09:06:32","slug":"how-to-install-avideo-youphptube-on-ubuntu-server","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-avideo-youphptube-on-ubuntu-server\/","title":{"rendered":"How to Install AVideo\/YouPHPTube on Ubuntu  Server"},"content":{"rendered":"\n<h2 class=\"wp-block-heading has-text-align-left\">Introduction :<strong> <\/strong><\/h2>\n\n\n\n<p>AVideo is an open-source video streaming and sharing platform that allows you to host and manage videos on your own server. It is widely used for creating private video portals, online courses, and internal company video libraries. In this guide, we\u2019ll walk through the steps to set up AVideo on a Linux server.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Server Requirements :<\/h3>\n\n\n\n<p>Before you start, make sure your server has:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Ubuntu  22.04 (recommended)<\/li>\n\n\n\n<li>4 GB RAM (minimum)<\/li>\n\n\n\n<li>2 vCPU or more<\/li>\n\n\n\n<li>50 GB disk space or more<\/li>\n\n\n\n<li>Root or sudo access<\/li>\n\n\n\n<li>A domain name pointed to the server<\/li>\n<\/ul>\n\n\n\n<p>Required packages:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Apache <\/li>\n\n\n\n<li>PHP 8 +<\/li>\n\n\n\n<li>MariaDB<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1 : Download AVideo on Ubuntu  Server <\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Log into your Ubuntu 20.04 server via SSH. Then go to the web root directory.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>$ cd \/var\/www\/<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Clone the AVideo streamer repository from Github.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>$sudo apt install git <br>$sudo git clone https:\/\/github.com\/WWBN\/AVideo.git<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Then go into the directory.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>$ cd AVideo\/<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Clone the AVideo encoder repository from Github.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>$ sudo git clone https:\/\/github.com\/WWBN\/AVideo-Encoder.git<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>It will be saved as&nbsp;AVideo-Encoder. We rename it to&nbsp;upload, so users can have a better idea of what this URL is for when uploading videos.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>$ sudo mv AVideo-Encoder upload<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Next, we need to make www-data (the web server user) as the owner of the web root.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>$ sudo chown www-data:www-data \/var\/www\/AVideo\/ -R<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: Install Dependencies<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>AVideo uses&nbsp;FFmpeg&nbsp;to encode videos. We can easily install FFmpeg from the default Ubuntu repository.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>$ sudo apt install ffmpeg<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>To read and write meta information in multimedia files, we need to install the&nbsp;libimage-exiftool-perl&nbsp;package.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>$ sudo apt install libimage-exiftool-perl<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>You also need to install some common PHP extensions.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>$ sudo apt install php php-cli php-common php-mysql php-curl php-gd php-xml \\ <br>php-mbstring php-zip php-readline php-intl php-bcmath php-opcache -y<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>To fetch videos from other sites, we need to install YouTube-DL. Though it\u2019s included in the Ubuntu repository, but it\u2019s outdated. We will install YouTube-DL from the Python Package Index, which always contains the latest version of YouTube-DL.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>$ sudo apt install python3-pip <br>$ sudo -H pip3 install youtube-dl<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>It\u2019s very important that you use the latest version, or you might not be able to download videos from other sites. We can create a Cron job to automatically check and install the latest version.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>$ sudo crontab -e<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Add the following line at the end of the Crontab file to try upgrading YouTube-DL daily.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>$ @daily sudo -H pip3 install &#8211;upgrade youtube-dl &gt; \/dev\/null<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Step 3: Create Database and User in MariaDB<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Log into MariaDB database server with the following command. Since MariaDB is now using&nbsp;unix_socket&nbsp;plugin to authentication user login, there\u2019s no need to enter MariaDB root password. We just need to prefix the&nbsp;mysql&nbsp;command with&nbsp;sudo.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>$ sudo mysql<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Create a new database for AVideo. After that, create a user account for the database and set a password for it. Once the user is created, give that user full permission to access and manage the AVideo database.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>$ CREATE DATABASE AVideo;<br>$ CREATE USER &#8216;AVideo&#8217;@&#8217;localhost&#8217; IDENTIFIED BY &#8216;your-password&#8217;;<br>$ GRANT ALL PRIVILEGES ON AVideo.* TO &#8216;AVideo&#8217;@&#8217;localhost&#8217;;<br>$ FLUSH PRIVILEGES;<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>For the AVideo Encoder, create a separate database dedicated to it. Then set up a new database user specifically for the encoder and assign a secure password. After creating the user, provide it with full permissions so it can access and manage the encoder\u2019s database properly.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>$ CREATE DATABASE AVideoEncoder;<br>$ CREATE USER &#8216;AVideoEncoder&#8217;@&#8217;localhost&#8217; IDENTIFIED BY &#8216;your-password&#8217;;<br>$ GRANT ALL PRIVILEGES ON AVideoEncoder.* TO &#8216;AVideoEncoder&#8217;@&#8217;localhost&#8217;;<br>$ FLUSH PRIVILEGES;<br>$ exit<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Step 4: Setting Up Web Server on Apache<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Create a new virtual host file <\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>$ sudo nano \/etc\/apache2\/sites-available\/avideo.conf<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Add the virtual host configuration inside the file, and replace the sample domain name with your actual domain. Make sure you have created the DNS A-record for that domain in your DNS manager. Also note that the document root path is case-sensitive, and you should not add a forward slash at the end.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>&lt;VirtualHost *:80&gt; <br>            ServerName  sample.yourdomain.com<br>            DocumentRoot \/var\/www\/AVideo<br>            &lt;Directory \/var\/www\/AVideo&gt;<br>                  DirectoryIndex index.php<br>                  Options +FollowSymLinks<br>                  AllowOverride All<br>                  Require all granted<br>            &lt;\/Directory&gt;<br>             ErrorLog ${APACHE_LOG_DIR}\/avideo.error.log<br>             CustomLog ${APACHE_LOG_DIR}\/avideo.access.log combined<br>&lt;\/VirtualHost&gt;<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Save and close the file. Then enable this virtual host and rewrite module and then ,Restart Apache for the changes to take effect.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>$ sudo a2ensite avideo.conf<br>$ sudo a2enmod rewrite<br>$ sudo systemctl restart apache2<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Now visit your domain in the browser, and it should redirect you to the AVideo setup wizard page. If you still see the default Apache welcome page instead of the setup wizard, you need to disable the default virtual host.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/12\/image-10.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"513\" src=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/12\/image-10-1024x513.png\" alt=\"\" class=\"wp-image-9638\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/12\/image-10-1024x513.png 1024w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/12\/image-10-300x150.png 300w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/12\/image-10-768x385.png 768w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/12\/image-10-599x300.png 599w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/12\/image-10.png 1247w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/a><\/figure>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>$ sudo a2dissite 000-default.conf<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Restart Apache.Before entering any information in the setup wizard, we need to enable HTTPS.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Step 5: Enabling HTTPS<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>To encrypt the HTTP traffic, we can enable HTTPS by installing a free TLS certificate issued from Let\u2019s Encrypt. Run the following command to install Let\u2019s Encrypt client (certbot) on Ubuntu<\/li>\n\n\n\n<li>If you use Apache, you also need to install the Certbot Apache plugin and run last command to obtain and install TLS certificate.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>$ sudo apt install certbot<br>$ sudo apt install python3-certbot-apache<br>$ sudo certbot &#8211;apache &#8211;agree-tos &#8211;redirect &#8211;hsts &#8211;staple-ocsp &#8211;email &lt;email-ID&gt; -d &lt;domain&gt;<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>The certificate should now be obtained and automatically installed.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 6: Finish Installation with the Setup Wizard<\/h3>\n\n\n\n<p>Now go to the domain ,setup wizard will appear. On the left side, you can see if your server meet the requirements.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/12\/image-4.png\"><img loading=\"lazy\" decoding=\"async\" width=\"425\" height=\"588\" src=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/12\/image-4.png\" alt=\"\" class=\"wp-image-9608\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/12\/image-4.png 425w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/12\/image-4-217x300.png 217w\" sizes=\"auto, (max-width: 425px) 100vw, 425px\" \/><\/a><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>As you can see, the PHP post_max_size should be at least 100M and upload_max_filesize should be at least 100M. We need to edit the php.ini file to change the two values. If you use Apache web server, then<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>$ sudo nano \/etc\/php\/8.1\/apache2\/php.ini<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Find the following two lines and change the values in it.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>post_max_size = 8M<\/td><td>post_max_size = 1024M<\/td><\/tr><tr><td>upload_max_filesize = 2M<\/td><td>upload_max_filesize = 1024M<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Save and close the file. Restart Apache for the changes to take effect.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>$ sudo systemctl restart apache2<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Now refresh the AVideo install wizard page. Your server should pass all requirements. Now on the right side, you can enter a title your video site, and set a system admin password. Enter the AVideo database name, user and password your created earlier. (Note: You should use the main database, not the encoder database. Also be aware of case-sensitive.)<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/12\/image-11.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"487\" src=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/12\/image-11-1024x487.png\" alt=\"\" class=\"wp-image-9639\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/12\/image-11-1024x487.png 1024w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/12\/image-11-300x143.png 300w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/12\/image-11-768x365.png 768w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/12\/image-11-631x300.png 631w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/12\/image-11.png 1339w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/a><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Click the Install now button and AVideo should be installed successfully.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/11\/image-19.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1016\" height=\"130\" src=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/11\/image-19.png\" alt=\"\" class=\"wp-image-9584\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/11\/image-19.png 1016w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/11\/image-19-300x38.png 300w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/11\/image-19-768x98.png 768w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/11\/image-19-850x109.png 850w\" sizes=\"auto, (max-width: 1016px) 100vw, 1016px\" \/><\/a><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Now we need to remove the&nbsp;\/var\/www\/AVideo\/install\/&nbsp;directory.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>sudo rm \/var\/www\/AVideo\/install\/ -r<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Click the Go to the main page button and you will see the AVideo main page.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/12\/image-6.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"478\" src=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/12\/image-6-1024x478.png\" alt=\"\" class=\"wp-image-9610\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/12\/image-6-1024x478.png 1024w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/12\/image-6-300x140.png 300w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/12\/image-6-768x358.png 768w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/12\/image-6-643x300.png 643w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/12\/image-6.png 1357w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/a><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>You can click the drop-down menu on the left and login as the&nbsp;admin&nbsp;user and with the password you set just a few moments ago.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/12\/image-7.png\"><img loading=\"lazy\" decoding=\"async\" width=\"935\" height=\"467\" src=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/12\/image-7.png\" alt=\"\" class=\"wp-image-9611\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/12\/image-7.png 935w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/12\/image-7-300x150.png 300w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/12\/image-7-768x384.png 768w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/12\/image-7-601x300.png 601w\" sizes=\"auto, (max-width: 935px) 100vw, 935px\" \/><\/a><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Step 7: Set Up the Encoder<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Go to&nbsp;https:\/\/yourdomain.com\/upload\/. You will be redirected to the Encoder setup wizard. If you are not automatically redirected, then you can manually enter the setup wizard URL.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>https:\/\/yourdomain.com\/upload\/install\/index.php\/<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The left hand side will show you if your server meet the requirements of AVideo Encoder.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><a href=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/11\/image-22.png\"><img loading=\"lazy\" decoding=\"async\" width=\"649\" height=\"885\" src=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/11\/image-22.png\" alt=\"\" class=\"wp-image-9589\" style=\"width:545px;height:auto\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/11\/image-22.png 649w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/11\/image-22-220x300.png 220w\" sizes=\"auto, (max-width: 649px) 100vw, 649px\" \/><\/a><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>As you can see the PHP&nbsp;max_execution_time&nbsp;should be at least 7200 and PHP&nbsp;memory_limit&nbsp;should be at least 512M. We need to edit the&nbsp;php.ini&nbsp;file to change the two values.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>$ sudo nano \/etc\/php\/8.1\/apache2\/php.ini<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Find the following two lines and change the values in it.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>max_execution_time = 30<\/td><td>max_execution_time = 7200<\/td><\/tr><tr><td>memory_limit = 128M<\/td><td>memory_limit = 512M<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Save and close the file. Restart Apache for the changes to take effect.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>$ sudo systemctl restart apache2<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Now refresh the AVideo Encoder install wizard page. Your server should pass all requirements. Now on the right side, you need to enter the AVideoEncoder database name, user and password your created earlier. Be aware of case-sensitive and enter the streamer site\u2019s admin password.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/12\/image-12.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"593\" src=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/12\/image-12-1024x593.png\" alt=\"\" class=\"wp-image-9640\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/12\/image-12-1024x593.png 1024w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/12\/image-12-300x174.png 300w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/12\/image-12-768x445.png 768w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/12\/image-12-518x300.png 518w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/12\/image-12.png 1097w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/a><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Click the Install Now button and AVideo Encoder will be installed and go to the main page.<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Remove the install directory.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td>$ sudo rm \/var\/www\/AVideo\/upload\/install\/ -r<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Step 8 : Change the Encoder URL<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>By default, AVideo uses the public encoder for uploading videos. To use your own encoder, sign in as admin in AVideo (not AVideo Encoder) and go to the admin panel from the left sidebar.<\/li>\n\n\n\n<li>Go to settings -&gt; site settings -&gt; advanced configuration. Change the Encoder URL to https:\/\/yourdomain.com\/upload\/. Save the settings, clear the cache directory and generate a new sitemap.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/12\/image-13.png\"><img loading=\"lazy\" decoding=\"async\" width=\"621\" height=\"570\" src=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/12\/image-13.png\" alt=\"\" class=\"wp-image-9641\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/12\/image-13.png 621w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/12\/image-13-300x275.png 300w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/12\/image-13-327x300.png 327w\" sizes=\"auto, (max-width: 621px) 100vw, 621px\" \/><\/a><\/figure>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Now log out and log back in. If you click the encode video and audio button on the upper-right corner, you will be taken to your own encoder to upload videos.\u00a0<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Step 9: Configure SMTP<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>You can test email sending by going to the admin panel -&gt; Setttings -&gt; Site Settings -&gt; Advanced Configuration, you can find SMTP configuration. Use the following settings.<\/li>\n<\/ul>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Enable SMTP. <\/li>\n\n\n\n<li>Enable SMTP Auth. <\/li>\n\n\n\n<li>Use tls in SMTP Secure. <\/li>\n\n\n\n<li>Use 587 as the SMTP port. <\/li>\n\n\n\n<li>Enter your mail server\u2019s hostname. <\/li>\n\n\n\n<li>Enter an SMTP username and password. <\/li>\n\n\n\n<li>Click the Save button to save the settings.<\/li>\n<\/ol>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/11\/image-25.png\"><img loading=\"lazy\" decoding=\"async\" width=\"558\" height=\"578\" src=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/11\/image-25.png\" alt=\"\" class=\"wp-image-9597\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/11\/image-25.png 558w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/11\/image-25-290x300.png 290w\" sizes=\"auto, (max-width: 558px) 100vw, 558px\" \/><\/a><\/figure>\n\n\n\n<p>Once all the details are filled correctly , then click the Test email to see if it\u2019s working.<\/p>\n\n\n\n<p>If everything working fine , this output will come .<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/11\/image-26.png\"><img loading=\"lazy\" decoding=\"async\" width=\"670\" height=\"380\" src=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/11\/image-26.png\" alt=\"\" class=\"wp-image-9598\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/11\/image-26.png 670w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/11\/image-26-300x170.png 300w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/11\/image-26-529x300.png 529w\" sizes=\"auto, (max-width: 670px) 100vw, 670px\" \/><\/a><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion :<\/h2>\n\n\n\n<p>AVideo provides a powerful and flexible solution for hosting and managing videos on your own server without relying on third-party platforms. With its Streamer and Encoder components working together, it delivers a complete end-to-end video platform from uploading and processing to organizing and publishing content. Its rich set of admin controls, user management options, and plugin support make it suitable for organizations that need privacy, custom branding, and full control over their media. By setting up AVideo, you gain a secure, scalable, and customizable video streaming environment tailored to your specific needs.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction : AVideo is an open-source video streaming and sharing platform that allows you to host and manage videos on your own server. It is widely used for creating private video portals, online courses, and internal company video libraries. In this guide, we\u2019ll walk through the steps to set up&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/how-to-install-avideo-youphptube-on-ubuntu-server\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">How to Install AVideo\/YouPHPTube on Ubuntu  Server<\/span><i class=\"fa fa-arrow-right\"><\/i><\/a><\/p>\n","protected":false},"author":531,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[1],"tags":[],"class_list":{"0":"post-9557","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-uncategorized","7":"h-entry","9":"h-as-article"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Pheonix Solutions - We Empower Your Business Growth<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/pheonixsolutions.com\/blog\/how-to-install-avideo-youphptube-on-ubuntu-server\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pheonix Solutions - We Empower Your Business Growth\" \/>\n<meta property=\"og:description\" content=\"Introduction : AVideo is an open-source video streaming and sharing platform that allows you to host and manage videos on your own server. It is widely used for creating private video portals, online courses, and internal company video libraries. In this guide, we\u2019ll walk through the steps to set up&hellip; Continue Reading How to Install AVideo\/YouPHPTube on Ubuntu Server\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/how-to-install-avideo-youphptube-on-ubuntu-server\/\" \/>\n<meta property=\"og:site_name\" content=\"PHEONIXSOLUTIONS\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/\" \/>\n<meta property=\"article:published_time\" content=\"2025-12-05T09:04:53+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-05T09:06:32+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/12\/image-10.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1247\" \/>\n\t<meta property=\"og:image:height\" content=\"625\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"kaviya D\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:site\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"kaviya D\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"10 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-avideo-youphptube-on-ubuntu-server\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-avideo-youphptube-on-ubuntu-server\\\/\"},\"author\":{\"name\":\"kaviya D\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/c0f709874f9abd5323f7f6472ab70a47\"},\"headline\":\"How to Install AVideo\\\/YouPHPTube on Ubuntu Server\",\"datePublished\":\"2025-12-05T09:04:53+00:00\",\"dateModified\":\"2025-12-05T09:06:32+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-avideo-youphptube-on-ubuntu-server\\\/\"},\"wordCount\":1671,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-avideo-youphptube-on-ubuntu-server\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/image-10-1024x513.png\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-avideo-youphptube-on-ubuntu-server\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-avideo-youphptube-on-ubuntu-server\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-avideo-youphptube-on-ubuntu-server\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-avideo-youphptube-on-ubuntu-server\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-avideo-youphptube-on-ubuntu-server\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/image-10-1024x513.png\",\"datePublished\":\"2025-12-05T09:04:53+00:00\",\"dateModified\":\"2025-12-05T09:06:32+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-avideo-youphptube-on-ubuntu-server\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-avideo-youphptube-on-ubuntu-server\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-avideo-youphptube-on-ubuntu-server\\\/#primaryimage\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/image-10.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/12\\\/image-10.png\",\"width\":1247,\"height\":625},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-install-avideo-youphptube-on-ubuntu-server\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install AVideo\\\/YouPHPTube on Ubuntu Server\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"name\":\"Pheonix Solutions\",\"description\":\"We Empower Your Business Growth\",\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\",\"name\":\"PheonixSolutions\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"width\":454,\"height\":300,\"caption\":\"PheonixSolutions\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/PheonixSolutions-209942982759387\\\/\",\"https:\\\/\\\/x.com\\\/pheonixsolution\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/c0f709874f9abd5323f7f6472ab70a47\",\"name\":\"kaviya D\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/88b1f9aa6c79d91f44972e86b6f0b3f8acc3bdb14260d73705e85a1968631cd8?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/88b1f9aa6c79d91f44972e86b6f0b3f8acc3bdb14260d73705e85a1968631cd8?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/88b1f9aa6c79d91f44972e86b6f0b3f8acc3bdb14260d73705e85a1968631cd8?s=96&r=g\",\"caption\":\"kaviya D\"},\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/author\\\/kaviya\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Pheonix Solutions - We Empower Your Business Growth","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-avideo-youphptube-on-ubuntu-server\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"Introduction : AVideo is an open-source video streaming and sharing platform that allows you to host and manage videos on your own server. It is widely used for creating private video portals, online courses, and internal company video libraries. In this guide, we\u2019ll walk through the steps to set up&hellip; Continue Reading How to Install AVideo\/YouPHPTube on Ubuntu Server","og_url":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-avideo-youphptube-on-ubuntu-server\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2025-12-05T09:04:53+00:00","article_modified_time":"2025-12-05T09:06:32+00:00","og_image":[{"width":1247,"height":625,"url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/12\/image-10.png","type":"image\/png"}],"author":"kaviya D","twitter_card":"summary_large_image","twitter_creator":"@pheonixsolution","twitter_site":"@pheonixsolution","twitter_misc":{"Written by":"kaviya D","Est. reading time":"10 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-avideo-youphptube-on-ubuntu-server\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-avideo-youphptube-on-ubuntu-server\/"},"author":{"name":"kaviya D","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/c0f709874f9abd5323f7f6472ab70a47"},"headline":"How to Install AVideo\/YouPHPTube on Ubuntu Server","datePublished":"2025-12-05T09:04:53+00:00","dateModified":"2025-12-05T09:06:32+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-avideo-youphptube-on-ubuntu-server\/"},"wordCount":1671,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-avideo-youphptube-on-ubuntu-server\/#primaryimage"},"thumbnailUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/12\/image-10-1024x513.png","inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/how-to-install-avideo-youphptube-on-ubuntu-server\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-avideo-youphptube-on-ubuntu-server\/","url":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-avideo-youphptube-on-ubuntu-server\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-avideo-youphptube-on-ubuntu-server\/#primaryimage"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-avideo-youphptube-on-ubuntu-server\/#primaryimage"},"thumbnailUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/12\/image-10-1024x513.png","datePublished":"2025-12-05T09:04:53+00:00","dateModified":"2025-12-05T09:06:32+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-avideo-youphptube-on-ubuntu-server\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/how-to-install-avideo-youphptube-on-ubuntu-server\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-avideo-youphptube-on-ubuntu-server\/#primaryimage","url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/12\/image-10.png","contentUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2025\/12\/image-10.png","width":1247,"height":625},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-install-avideo-youphptube-on-ubuntu-server\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install AVideo\/YouPHPTube on Ubuntu Server"}]},{"@type":"WebSite","@id":"https:\/\/pheonixsolutions.com\/blog\/#website","url":"https:\/\/pheonixsolutions.com\/blog\/","name":"Pheonix Solutions","description":"We Empower Your Business Growth","publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pheonixsolutions.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/pheonixsolutions.com\/blog\/#organization","name":"PheonixSolutions","url":"https:\/\/pheonixsolutions.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","contentUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","width":454,"height":300,"caption":"PheonixSolutions"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","https:\/\/x.com\/pheonixsolution"]},{"@type":"Person","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/c0f709874f9abd5323f7f6472ab70a47","name":"kaviya D","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/88b1f9aa6c79d91f44972e86b6f0b3f8acc3bdb14260d73705e85a1968631cd8?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/88b1f9aa6c79d91f44972e86b6f0b3f8acc3bdb14260d73705e85a1968631cd8?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/88b1f9aa6c79d91f44972e86b6f0b3f8acc3bdb14260d73705e85a1968631cd8?s=96&r=g","caption":"kaviya D"},"url":"https:\/\/pheonixsolutions.com\/blog\/author\/kaviya\/"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p7F4uM-2u9","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/9557","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/users\/531"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/comments?post=9557"}],"version-history":[{"count":16,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/9557\/revisions"}],"predecessor-version":[{"id":9643,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/9557\/revisions\/9643"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=9557"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=9557"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=9557"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}