OVOO - Live TV & Movie Portal CMS with Membership System

OVOO - Live TV & Movie Portal CMS with Membership System V3.3.3 - Nulled

No permission to download

Lokuu

New member
Mar 13, 2021
7
0
1
Hi guys. Thnx for your amazing work. I use this for only live tv and there is not an option to remove movie section. Can someone help me to remove movie page?
 

Attachments

  • 20210315_103558.jpg
    20210315_103558.jpg
    19.1 KB · Views: 39

Lokuu

New member
Mar 13, 2021
7
0
1
Hi. Can somenone tell me if the tv channels works on pc? I have my server and i can use m3u8 links. But when i use ovoo in pc channels dont works. When i use in phone ovoo channels works. Can someone tell me if have the same isue. Or someone have the solution?I have server from xui
 
T

TheReaperZ

Guest
Hello,

Does anyone have possible solution , i installed OVOO all ok but whatever i do i get "The requested URL was not found on this server. " cant login , cant nothing just have index page.

Is it maybe mistake i wrote database host "localhost" ?
 

RoyalC

Active member
Aug 16, 2019
245
38
28
Hello,

Does anyone have possible solution , i installed OVOO all ok but whatever i do i get "The requested URL was not found on this server. " cant login , cant nothing just have index page.

Is it maybe mistake i wrote database host "localhost" ?
did you have rewrite mode on ?
 
T

TheReaperZ

Guest
Ok i had issues with installing OVOO on Ubuntu 18 and with help @RoyalC here is tutorial how to install it (v328)


Code:
sudo apt install apache2
sudo ufw app info "Apache Full"
sudo ufw allow in "Apache Full"
sudo apt install curl
sudo apt install mysql-server
sudo apt install php libapache2-mod-php php-mysql
apt-get install php7.2-gd
apt-get install -y php-simplexml
apt install php7.2-mbstring
apt install php-curl

After that check allow_url_fopen
Code:
php -i | grep allow_url_fopen

then go and change formats and must be .php first by default is .html just rename index.html with index.php and where is .php write html
Code:
sudo nano /etc/apache2/mods-enabled/dir.conf
sudo systemctl restart apache2

Now extract downloaded OVOO v328 zip file on local machine then in folder OVOO328 everything inside zip it and name it whatever but in this tutorial we use ovoo.
after you compressed all files upload to /var/www/html

then install 7z
Code:
apt-get install p7zip-full

when you installed, go to html folder
Code:
cd /var/www/html

use cmd

Code:
7z x ovoo.zip

now go and create database , user...
Code:
mysql
CREATE DATABASE yourdbname;
CREATE USER 'youruser'@'localhost' IDENTIFIED WITH mysql_native_password BY 'PUTHEREYOURPASSWORD';
GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, INDEX, DROP, ALTER, CREATE TEMPORARY TABLES, LOCK TABLES ON yourdbname.* TO 'youruser'@'localhost';
GRANT FILE ON *.* TO 'youruser'@'localhost';
FLUSH PRIVILEGES;

then you will need to add timezone to php.ini

Code:
/etc/php/7.2/apache2/php.ini
in second line (under PHP )
Code:
date.timezone = "US/Central"
// you put your time zone but need to be right php format

Give permissions:


Code:
/var/www/html/application/config/config.php // 755
/var/www/html/application/config/database.php // 755
/uploads' directory is // 755

then rewrite
Code:
sudo a2enmod rewrite

.htaccess and /etc/apache2/sites-available/000-default.conf

you can use nano for both
in .htaccess add

Code:
<Directory /var/www/html>
        Options Indexes FollowSymLinks MultiViews
        AllowOverride All
        Require all granted
</Directory>

/etc/apache2/sites-available/000-default.conf

add same what you added in .htaccess just above closing tag </VirtualHost>

Code:
sudo systemctl restart apache2

thats all :)[/PHP]
 
  • Like
Reactions: RoyalC

ukgamer

Well-known member
Trusted Uploader
Mar 7, 2019
2,061
1,143
113
EmbedWorld Movie API
embedworld.xyz
Ok i had issues with installing OVOO on Ubuntu 18 and with help @RoyalC here is tutorial how to install it (v328)


Code:
sudo apt install apache2
sudo ufw app info "Apache Full"
sudo ufw allow in "Apache Full"
sudo apt install curl
sudo apt install mysql-server
sudo apt install php libapache2-mod-php php-mysql
apt-get install php7.2-gd
apt-get install -y php-simplexml
apt install php7.2-mbstring
apt install php-curl

After that check allow_url_fopen
Code:
php -i | grep allow_url_fopen

then go and change formats and must be .php first by default is .html just rename index.html with index.php and where is .php write html
Code:
sudo nano /etc/apache2/mods-enabled/dir.conf
sudo systemctl restart apache2

Now extract downloaded OVOO v328 zip file on local machine then in folder OVOO328 everything inside zip it and name it whatever but in this tutorial we use ovoo.
after you compressed all files upload to /var/www/html

then install 7z
Code:
apt-get install p7zip-full

when you installed, go to html folder
Code:
cd /var/www/html

use cmd

Code:
7z x ovoo.zip

now go and create database , user...
Code:
mysql
CREATE DATABASE yourdbname;
CREATE USER 'youruser'@'localhost' IDENTIFIED WITH mysql_native_password BY 'PUTHEREYOURPASSWORD';
GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, INDEX, DROP, ALTER, CREATE TEMPORARY TABLES, LOCK TABLES ON yourdbname.* TO 'youruser'@'localhost';
GRANT FILE ON *.* TO 'youruser'@'localhost';
FLUSH PRIVILEGES;

then you will need to add timezone to php.ini

Code:
/etc/php/7.2/apache2/php.ini
in second line (under PHP )
Code:
date.timezone = "US/Central"
// you put your time zone but need to be right php format

Give permissions:


Code:
/var/www/html/application/config/config.php // 755
/var/www/html/application/config/database.php // 755
/uploads' directory is // 755

then rewrite
Code:
sudo a2enmod rewrite

.htaccess and /etc/apache2/sites-available/000-default.conf

you can use nano for both
in .htaccess add

Code:
<Directory /var/www/html>
        Options Indexes FollowSymLinks MultiViews
        AllowOverride All
        Require all granted
</Directory>

/etc/apache2/sites-available/000-default.conf

add same what you added in .htaccess just above closing tag </VirtualHost>

Code:
sudo systemctl restart apache2

thats all :)[/PHP]

why not install a free panel and save all that hassle :)
 
T

TheReaperZ

Guest
why not install a free panel and save all that hassle :)
why should i put on free panel , when is better on dedicated server.
Have my streams Live tv selling for restream , and this is just testing to do subscription.

streaming on free panel is suck , bandwith low and shared.
 
T

TheReaperZ

Guest
But seems this panel is sucks, will play more tomorrow.

having issue wont start stream
 

ukgamer

Well-known member
Trusted Uploader
Mar 7, 2019
2,061
1,143
113
EmbedWorld Movie API
embedworld.xyz
why should i put on free panel , when is better on dedicated server.
Have my streams Live tv selling for restream , and this is just testing to do subscription.

streaming on free panel is suck , bandwith low and shared.

Yes I meant a free panel on a dedicated server, of cause it should be unlimited BW as standard and not shared

if your dedicated server can’t handle a panel then it no good and your going to have problems when it comes to a lot of viewers

I had 1 dedicated and 2 load balancer both with panel and can handle 3million viewers a day without any problems
 
T

TheReaperZ

Guest
Yes I meant a free panel on a dedicated server, of cause it should be unlimited BW as standard and not shared

if your dedicated server can’t handle a panel then it no good and your going to have problems when it comes to a lot of viewers

I had 1 dedicated and 2 load balancer both with panel and can handle 3million viewers a day without any problems

This on what i m playing OVOO is small server just figuring out :)

but i have xui panel for restreamers and have 16 servers few 10gbps and few 5gbps others 2gbps , only thing is this OVOO panel i cant start stream , i m sending line from my restream panel to OVOO m3u8 but wont start and this server is 1 gbps should be able to start stream
 

ukgamer

Well-known member
Trusted Uploader
Mar 7, 2019
2,061
1,143
113
EmbedWorld Movie API
embedworld.xyz
This on what i m playing OVOO is small server just figuring out :)

but i have xui panel for restreamers and have 16 servers few 10gbps and few 5gbps others 2gbps , only thing is this OVOO panel i cant start stream , i m sending line from my restream panel to OVOO m3u8 but wont start and this server is 1 gbps should be able to start stream

lol why would you want or need 16 servers, a few 10gbps is more then enough for millions of viewers

what’s your plan when you have it all working

lots of people have problems with this script and m3u8
 
T

TheReaperZ

Guest
lol why would you want or need 16 servers, a few 10gbps is more then enough for millions of viewers

what’s your plan when you have it all working

lots of people have problems with this script and m3u8

because i have channels and users and need power. its not for getting views or ads, its IPTV streams and i selling to people who sell to end users.

Thats why i need power.

anyone found solution with starting streams with OVOO ?
 

ukgamer

Well-known member
Trusted Uploader
Mar 7, 2019
2,061
1,143
113
EmbedWorld Movie API
embedworld.xyz
because i have channels and users and need power. its not for getting views or ads, its IPTV streams and i selling to people who sell to end users.

Thats why i need power.

anyone found solution with starting streams with OVOO ?

well with all that power I’m sure you can make life easier and install a panel :)

good luck with yourproject
 

quanguyen

New member
Nov 4, 2019
13
1
3

A PHP Error was encountered​

Severity: Core Warning
Message: Module 'imagick' already loaded
Filename: Unknown
Line Number: 0
 

About us

  • Our community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day to make sure our community is one of the best.

Quick Navigation

User Menu