• You MUST read the Babiato Rules before making your first post otherwise you may get permanent warning points or a permanent Ban.

    Our resources on Babiato Forum are CLEAN and SAFE. So you can use them for development and testing purposes. If your are on Windows and have an antivirus that alerts you about a possible infection: Know it's a false positive because all scripts are double checked by our experts. We advise you to add Babiato to trusted sites/sources or disable your antivirus momentarily while downloading a resource. "Enjoy your presence on Babiato"

Wovie - Movie and TV Series Streaming Platform

Wovie - Movie and TV Series Streaming Platform v1.0.2

No permission to download

BlakenFist

Frustrated Engineer!
Staff member
Moderator
Babiato Lover
Trusted Uploader
May 7, 2020
1,184
2,189
113
127.0.0.1
BlakenFist submitted a new resource:

Wovie - Movie and TV Series Streaming Platform - Wovie is a powerful, flexible and User friendly Movie and TV Series Steaming CMS Pro with advance vi

1621074764434.png
  • Easy Installation : Install Wovie easily with no coding or developer in a few steps with our easy to use installer and documentation
  • Source Code : We don’t encrypt or hide our code. You have the freedom to integrate and change our code to make it fit your needs.
  • Ads Manager : Paste ad codes into integrated ad slots in admin panel and will be displayed automatically.
  • Multi Languages : You can translate...

Read more about this resource...
 
not working. after successful installation notting appears just som blank page "

Not Found​

The requested URL was not found on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request."
 
I've been playing with this script for a few weeks now (I bought it before it got posted here) here's a few fixes...

404 error upon trying to install it:
Remove Options +FollowSymLinks from the .htaccess file

Genders only showing female after changing it to male:
app -> theme -> view -> common -> profile.general.php

Change line 29 to the following

HTML:
<div class="text">
    <?php
        if(strpos($Data['gender'], '1') !== false){
            echo "Female";
        } else {
            echo "Male";
        }
    ?>
</div>

How to create your own RSS Feed for social media automation:

Example RSS Feed:
https://watcha.movie/feeds/all-rss.php

PHP:
<?php

include '../app/config/db.config.php'; // Database configuration

$link = mysqli_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
$sql = "SELECT * FROM posts ORDER BY created DESC LIMIT 25";
$private = "2";
if ($result = mysqli_query($link, $sql))
{
    if (mysqli_num_rows($result) > 0)
    {
        header("Content-type: text/xml");
        echo "<?xml version='1.0' encoding='UTF-8'?>";
        echo "<rss version='2.0'>";
        echo "<channel>";
        echo "<title>Most Recent RSS Feed</title>";
        echo "<link>https://" . $_SERVER['SERVER_NAME'] . "</link>";
        echo "<language>en</language>";
        while ($row = mysqli_fetch_array($result))
        {
            if ($row['private'] == $private)
            {
            if(preg_match('/&/',$row['title'])){
            }
    else {
            echo "<item>";
            echo "<title>" . $row['title'] . "</title>";
            echo "<link>https://" . $_SERVER['SERVER_NAME'] . "/" . $row['type'] . "/" . $row['self'] . "-" . $row['id'] . "</link>";
            echo "<enclosure url='https://" . $_SERVER['SERVER_NAME'] . "/public/upload/cover/" . $row['image'] . "' length='174093' type='image/webp'/>";
            echo "<pubDate>" . $row['created'] . "</pubDate>";
            echo "</item>";
            }
            }
        }
        echo "</channel>";
        echo "</rss>";
        mysqli_free_result($result);
    }
    else
    {
        echo "No records matching your query were found.";
    }
}
else
{
    echo "ERROR: Could not able to execute $sql. " . mysqli_error($link);
}
mysqli_close($link);
?>

This does numerous things, due to XML limitations this excludes any movie or tv show titles with the "&" symbol in it, it also doesn't add content which is still set to private as presumably you haven't provided a link for it yet.

Create sitemap for Google Search Console:

Example sitemap https://watcha.movie/sitemap.xml


Here's the cronjob I use to generate sitemap.xml for google search console. I use cron to run this once a day and it generates sitemap.xml, I coded this lazily unlike the rss feed so you'll need to change the URL's in this one sorry.

PHP:
<?php

include '../db.config.php'; // Database configuration

$link = mysqli_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
$sql = "SELECT * FROM posts ORDER BY created DESC";
$file = '../../../sitemap.xml';
$private = "2";
ob_start();
if ($result = mysqli_query($link, $sql))
{
    if (mysqli_num_rows($result) > 0)
    {
        header("Content-type: text/xml");

        echo "<?xml version='1.0' encoding='UTF-8'?>";
        echo "<urlset xmlns='http://www.sitemaps.org/schemas/sitemap/0.9' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd'>";
            echo "<url><loc>https://watcha.movie/</loc><lastmod>2021-05-06T23:23:07+00:00</lastmod><priority>1.00</priority></url>";
            echo "<url><loc>https://watcha.movie/register</loc><lastmod>2021-05-06T23:23:07+00:00</lastmod><priority>0.80</priority></url>";
            echo "<url><loc>https://watcha.movie/login</loc><lastmod>2021-05-06T23:23:07+00:00</lastmod><priority>0.80</priority></url>";
            echo "<url><loc>https://watcha.movie/discovery</loc><lastmod>2021-05-06T23:23:07+00:00</lastmod><priority>0.80</priority></url>";
            echo "<url><loc>https://watcha.movie/movies</loc><lastmod>2021-05-06T23:23:07+00:00</lastmod><priority>0.80</priority></url>";
            echo "<url><loc>https://watcha.movie/categories</loc><lastmod>2021-05-06T23:23:07+00:00</lastmod><priority>0.80</priority></url>";
            echo "<url><loc>https://watcha.movie/page/about</loc><lastmod>2021-05-06T23:23:07+00:00</lastmod><priority>0.80</priority></url>";
            echo "<url><loc>https://watcha.movie/page/terms-and-conditions</loc><lastmod>2021-05-06T23:23:07+00:00</lastmod><priority>0.80</priority></url>";
            echo "<url><loc>https://watcha.movie/page/privacy-policy</loc><lastmod>2021-05-06T23:23:07+00:00</lastmod><priority>0.80</priority></url>";
            echo "<url><loc>https://watcha.movie/page/create-a-mirror</loc><lastmod>2021-05-06T23:23:07+00:00</lastmod><priority>0.80</priority></url>";
            echo "<url><loc>https://watcha.movie/page/affiliates</loc><lastmod>2021-05-06T23:23:07+00:00</lastmod><priority>0.80</priority></url>";
            echo "<url><loc>https://watcha.movie/page/dmca</loc><lastmod>2021-05-06T23:23:07+00:00</lastmod><priority>0.80</priority></url>";
            echo "<url><loc>https://watcha.movie/page/rss-feeds</loc><lastmod>2021-05-06T23:23:07+00:00</lastmod><priority>0.80</priority></url>";
            echo "<url><loc>https://watcha.movie/forgot-password</loc><lastmod>2021-05-06T23:23:07+00:00</lastmod><priority>0.64</priority></url>";
            echo "<url><loc>https://watcha.movie/category/action</loc><lastmod>2021-05-06T23:23:07+00:00</lastmod><priority>0.64</priority></url>";
            echo "<url><loc>https://watcha.movie/category/adventure</loc><lastmod>2021-05-06T23:23:07+00:00</lastmod><priority>0.64</priority></url>";
            echo "<url><loc>https://watcha.movie/category/animation</loc><lastmod>2021-05-06T23:23:07+00:00</lastmod><priority>0.64</priority></url>";
            echo "<url><loc>https://watcha.movie/category/comedy</loc><lastmod>2021-05-06T23:23:07+00:00</lastmod><priority>0.64</priority></url>";
            echo "<url><loc>https://watcha.movie/category/crime</loc><lastmod>2021-05-06T23:23:07+00:00</lastmod><priority>0.64</priority></url>";
            echo "<url><loc>https://watcha.movie/category/documentary</loc><lastmod>2021-05-06T23:23:07+00:00</lastmod><priority>0.64</priority></url>";
            echo "<url><loc>https://watcha.movie/category/drama</loc><lastmod>2021-05-06T23:23:07+00:00</lastmod><priority>0.64</priority></url>";
            echo "<url><loc>https://watcha.movie/category/family</loc><lastmod>2021-05-06T23:23:07+00:00</lastmod><priority>0.64</priority></url>";
            echo "<url><loc>https://watcha.movie/category/fantasy</loc><lastmod>2021-05-06T23:23:07+00:00</lastmod><priority>0.64</priority></url>";
            echo "<url><loc>https://watcha.movie/category/history</loc><lastmod>2021-05-06T23:23:07+00:00</lastmod><priority>0.64</priority></url>";
            echo "<url><loc>https://watcha.movie/category/horror</loc><lastmod>2021-05-06T23:23:07+00:00</lastmod><priority>0.64</priority></url>";
            echo "<url><loc>https://watcha.movie/category/music</loc><lastmod>2021-05-06T23:23:07+00:00</lastmod><priority>0.64</priority></url>";
            echo "<url><loc>https://watcha.movie/category/mystery</loc><lastmod>2021-05-06T23:23:07+00:00</lastmod><priority>0.64</priority></url>";
            echo "<url><loc>https://watcha.movie/category/romance</loc><lastmod>2021-05-06T23:23:07+00:00</lastmod><priority>0.64</priority></url>";
            echo "<url><loc>https://watcha.movie/category/science-fiction</loc><lastmod>2021-05-06T23:23:07+00:00</lastmod><priority>0.64</priority></url>";
            echo "<url><loc>https://watcha.movie/category/thriller</loc><lastmod>2021-05-06T23:23:07+00:00</lastmod><priority>0.64</priority></url>";
            echo "<url><loc>https://watcha.movie/category/tv-movie</loc><lastmod>2021-05-06T23:23:07+00:00</lastmod><priority>0.64</priority></url>";
            echo "<url><loc>https://watcha.movie/category/war</loc><lastmod>2021-05-06T23:23:07+00:00</lastmod><priority>0.64</priority></url>";
            echo "<url><loc>https://watcha.movie/category/western</loc><lastmod>2021-05-06T23:23:07+00:00</lastmod><priority>0.64</priority></url>";
        while ($row = mysqli_fetch_array($result))
        {

            if ($row['private'] == $private)
            {
            if(preg_match('/&/',$row['title'])){
            }
    else {
            echo "<url>";
            echo "<loc>https://watcha.movie/" . $row['type'] . "/" . $row['self'] . "-" . $row['id'] . "</loc>";
            echo "<priority>0.51</priority>";
            echo "</url>";
        }
            }
    }
        echo "</urlset>";
        mysqli_free_result($result);
    }
    else
    {
        echo "No records matching your query were found.";
    }
}
else
{
    echo "ERROR: Could not able to execute $sql. " . mysqli_error($link);
}
$htmlStr = ob_get_contents();
ob_end_clean();
file_put_contents($file, $htmlStr);
mysqli_close($link);
?>
 
Last edited:
cant login the default pass

You can either login to phpmyadmin and change / double check the login details there or I have a fresh installed database with default login you could download and execute from here, https://cdn.watcha.movie/mirror/site.sql

umm, someone help me pls, i enter all correctly but always show db couldn't connect :/ db.jpg

The only way I can replicate this error is if my login details are genuinely incorrect, ensure you've set the correct permissions for the user your using such as edit tables etc.
 
  • Like
Reactions: AlexRazor
URGENT HELP. How can I enable the subtitles option in the player? It's been a headache for me now.
Thanks in advance
 
You can either login to phpmyadmin and change / double check the login details there or I have a fresh installed database with default login you could download and execute from here, https://cdn.watcha.movie/mirror/site.sql



The only way I can replicate this error is if my login details are genuinely incorrect, ensure you've set the correct permissions for the user your using such as edit tables etc.
Solved :) , forget to change php ver
 
The player plyr.io doesn't have subtitle support I don't think ? Although I could be wrong, I use a 3rd party streaming provider
No, I have already worked Plyr. But I have don't understand the implementation of the player. You can check the screenshot below
 

Attachments

  • plyr.PNG
    plyr.PNG
    1.2 MB · Views: 80
So I have read the code a bit. And it has the caption code I guess the developer did no give the caption option on the admin panel. Cuzz the code proves that it allows captions to play
 

Attachments

  • captions.PNG
    captions.PNG
    113.5 KB · Views: 52
  • Haha
Reactions: BlakenFist
So I have read the code a bit. And it has the caption code I guess the developer did no give the caption option on the admin panel. Cuzz the code proves that it allows captions to play

Maybe re enable it for URL subtitles if plyr.io supports it, I'm far too lazy to do database edits etc I just do quick and easy php and html edits like what I've made above

For anyone interested I've also made it possible to auto embed movies, but I'm still working on TV shows.
 
Maybe re enable it for URL subtitles if plyr.io supports it, I'm far too lazy to do database edits etc I just do quick and easy php and html edits like what I've made above

For anyone interested I've also made it possible to auto embed movies, but I'm still working on TV shows.
It would really mean a lot if you help me to add subtitles. Cuzz I have my own server and hardcoding subtitles for each video might not be possible.
I Will wait for your response
 
AdBlock Detected

We get it, advertisements are annoying!

However in order to keep our huge array of resources free of charge we need to generate income from ads so to use the site you will need to turn off your adblocker.

If you'd like to have an ad free experience you can become a Babiato Lover by donating as little as $5 per month. Click on the Donate menu tab for more info.

I've Disabled AdBlock