• 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
I can't figure out how to attach files in pm
so well I was playing with it and got it to work
I've attached them here 3 versions of the same file
old version (2.0) current version (2.1) and then one that I was playing with that seems to work removing all the new changes except for one 🤷‍♀️

I got it working dude in release above don't worry haha, I must of accidently deleted a sql query at the top of the page because in the new(now old) one half of it was missing, but all fixed now
 
I got it working dude in release above don't worry haha, I must of accidently deleted a sql query at the top of the page because in the new(now old) one half of it was missing, but all fixed now
😁 didn't see the update til after I posted

downloading, getting ready to update..thank you again for all the work you continue to do with this

oh to sort the actors by name/alphabetically
app\controller\Actors.php
find
Code:
ORDER BY actors.id desc
change to
Code:
ORDER BY actors.name asc
 
  • Like
Reactions: Titan
thank you that seems to have fixed the issue

i'd figured out the issue was that it required a number, names/letters did not work....
but this seems to work
if I change the [i:episode] to [*:episode] then it should work also?
Yes, it should. But there's no point on doing so. Because episode will always be numeric. And it's better for performance wise too. That's ur call.
 
  • Like
Reactions: Shadav
adding an end year to series
in your phpadmin
and forgive me there's probably a better way to do this but my knowledge is a bit limited so it's a 2 part sql
for your watchamovie/woovie database
run these two sql's
apparently even in the code tags I can't post them here so I've attached them in a text file, lol apparently can't attach them in a text file either so threw it into a zip file

in app/locale/en.php
find
Code:
'Release Date'      => 'Release Date',
after add
Code:
'End Date'      => 'End Date',

in app/view/common/post.tab.content.php
find
Code:
<div class="col-md-3">
        <div class="form-group">
            <label class="custom-label"><?php echo __('Release Date');?></label>
            <input type="text" name="create_year" class="form-control" placeholder="<?php echo __('Release Date');?>" value="<?php echo $Listing['create_year']; ?>">
        </div>
    </div>
after add
Code:
<div class="col-md-3">
        <div class="form-group">
            <label class="custom-label"><?php echo __('End Date');?></label>
            <input type="text" name="end_year" class="form-control" placeholder="<?php echo __('End Date');?>" value="<?php echo $Listing['end_year']; ?>">
        </div>
    </div>

in app/controller/admin/Serie.php
find
Code:
'create_year'   => Input::cleaner($_POST['create_year']),
after add
Code:
'end_year'   => Input::cleaner($_POST['end_year']),

find (there's a second one)
Code:
'create_year'   => Input::cleaner($_POST['create_year']),
after add
Code:
'end_year'   => Input::cleaner($_POST['end_year']),

in app/controller/Serie.php
find
Code:
posts.create_year,
after add
Code:
posts.end_year,

in app/theme/view/serie.php
find
Code:
<?php if($Listing['create_year']) { ?>
                    <div class="featured-attr">
                        <div class="attr">
                            <?php echo __('Release Date');?>
                        </div>
                        <div class="text">
                            <?php echo $Listing['create_year'];?>
                        </div>
                    </div>
                    <?php } ?>
after add
Code:
<?php if($Listing['end_year']) { ?>
                    <div class="featured-attr">
                        <div class="attr">
                            <?php echo __('End Date');?>
                        </div>
                        <div class="text">
                            <?php echo $Listing['end_year'];?>
                        </div>
                    </div>
                    <?php } ?>

===
edit: I forgot about the episode page

in app/controller/Episode.php
find
Code:
posts.create_year,
after add
Code:
posts.end_year,

in app/theme/view/episode.php
find
Code:
<?php if($Listing['create_year']) { ?>
                <div class="video-attr">
                    <div class="attr">
                        <?php echo __('Release Date');?>
                    </div>
                    <div class="text">
                        <?php echo $Listing['create_year'];?>
                    </div>
                </div>
                <?php } ?>

after add
Code:
<?php if($Listing['end_year']) { ?>
                <div class="video-attr">
                    <div class="attr">
                        <?php echo __('End Date');?>
                    </div>
                    <div class="text">
                        <?php echo $Listing['end_year'];?>
                    </div>
                </div>
                <?php } ?>
 

Attachments

  • AddingEndDateSQLs.zip
    468 bytes · Views: 6
Last edited:
Fake player ?
I use youtube links and to play the videos I have to double click the play button, I would like to show the youtube player directly, I have attached images that may help
 

Attachments

  • Screenshot_10.png
    Screenshot_10.png
    786.3 KB · Views: 15
  • Screenshot_11.png
    Screenshot_11.png
    693.6 KB · Views: 15
I use youtube links and to play the videos I have to double click the play button, I would like to show the youtube player directly, I have attached images that may help

You have to go into post.head.php in app->theme->view->common and work it out, I'm not putting the work for this feature as I feel it's far from a problem and more just laziness...
 
You have to go into post.head.php in app->theme->view->common and work it out, I'm not putting the work for this feature as I feel it's far from a problem and more just laziness...
Of course, no problem and I would actually need to use a custom thumbnail for each episode and I couldn't make it work, but thanks for the help, you've done a lot for this script
 
the newest version does use an image for each episode, if you upload an image....
as for not using the player and only using a youtube embed player....you'd need to add some if statements in, but sorry I don't know how to go about that
but something like if server=youtube
display youtube embed player
else if (the rest of the code for the player(s) )
 
the newest version does use an image for each episode, if you upload an image....
as for not using the player and only using a youtube embed player....you'd need to add some if statements in, but sorry I don't know how to go about that
but something like if server=youtube
display youtube embed player
else if (the rest of the code for the player(s) )
Thanks, I don't know how to do this either. I'll hire someone to help me
 
how to add MPAA (ratings) to movies and series
ie pg, pg-13, r, tv-14, tv-ma, etc (now if only I can figure out how to pull it from tmdb when getting movies/series)

in your phpadmin

for your watchamovie/woovie database

run this sql

i've attached a zip file with a text file in it with the sql to run since I can't post it here nor attach the text file

in app/controller
in the following files
Category.php, Collection.php, Discovery.php, Episode.php, Movie.php, Movies.php, Serie.php, and Series.php
find
Code:
posts.self,
after add
Code:
posts.mpaa,

(there's 2 in Episode.php and Movie.php)

in app/controller/admin
Movie.php and Serie.php
find
Code:
'create_year'   => Input::cleaner($_POST['create_year']),
after add
Code:
'mpaa'   => Input::cleaner($_POST['mpaa']),
(there's 2 of them in both files)


in app/locale/en.php
find
Code:
'Imdb'      => 'Imdb',
after add
Code:
'MPAA'      => 'MPAA Rating',


in app/theme/assets/css/app.css
find
Code:
/*# sourceMappingURL=app.css.map */
before add
Code:
.mpaa {
border: 1px solid #b5b5be;
font-size:10px;
display: inline-flex;
white-space: nowrap;
align-items: center;
align-content: center;
padding: 0.06em 4px 0.15em 4px !important;
line-height: 1;
border-radius: 2px;
margin-right: 7px;}


in app/theme/view/module
home.movies.php and home.series.php
find
Code:
posts.self,
after add
Code:
posts.mpaa,

find
Code:
<a href="<?php echo post($Newest['id'],$Newest['self'],$Newest['type']);?>" class="list-title">
                        <?php echo $Newest['title'];?></a>
after add
Code:
<?php if($Newest['mpaa']) { ?><div class="mpaa"><?php echo $Newest['mpaa'];?></div><?php } ?>

home.slider.php
find
Code:
posts.self,
after add
Code:
posts.mpaa,

find
Code:
<div class="category text-12">
                                        <?php echo ($Slide['type'] == 'movie' ? __('Movie') : __('Serie'));?>
                                    </div>
after add
Code:
<?php if($Slide['mpaa']) { ?><div class="mpaa"><?php echo $Slide['mpaa'];?></div><?php } ?>


in app/theme/view
category.php, discovery.php, movies.php, and series.php
find
Code:
<a href="<?php echo post($Listing['id'],$Listing['self'],$Listing['type']);?>" class="list-title">
                                    <?php echo $Listing['title'];?>
                                </a>

after add
Code:
<?php if($Listing['mpaa']) { ?><div class="mpaa"><?php echo $Listing['mpaa'];?></div><?php } ?>


collection.php
find
Code:
<a href="<?php echo post($Collection['content_id'],$Collection['self'],$Collection['type']);?>" class="list-title">
                                <?php echo $Collection['title'];?>
                            </a>
after add
Code:
<?php if($Collection['mpaa']) { ?><div class="mpaa"><?php echo $Collection['mpaa'];?></div><?php } ?>


episode.php, movie.php and serie.php
find
Code:
                <?php if($Listing['country_name']) { ?>
                <div class="video-attr">
                    <div class="attr">
                        <?php echo __('Country');?>
                    </div>
                    <div class="text">
                        <?php echo $Listing['country_name'];?>
                    </div>
                </div>
                <?php } ?>
before add
Code:
                <?php if($Listing['mpaa']) { ?>
                <div class="video-attr">
                    <div class="attr">
                        <?php echo __('MPAA');?>
                    </div>
                    <div class="text">
                        <?php echo $Listing['mpaa'];?>
                    </div>
                </div>
                <?php } ?>

find
Code:
<a href="<?php echo post($Similar['id'],$Similar['self'],$Similar['type']);?>" class="list-title">
                            <?php echo $Similar['title'];?>
                        </a>

after add
Code:
<?php if($Similar['mpaa']) { ?><div class="mpaa"><?php echo $Similar['mpaa'];?></div><?php } ?>


in app/view/common/post.tab.content.php
find
Code:
    <div class="col-md-3">
        <div class="form-group">
            <label class="custom-label"><?php echo __('Duration');?></label>
            <input type="text" name="duration" class="form-control" placeholder="<?php echo __('Duration');?>" value="<?php echo $Listing['duration']; ?>">
        </div>
    </div>

after add
Code:
    <div class="col-md-3">
        <div class="form-group">
            <label class="custom-label"><?php echo __('MPAA');?></label>
            <input type="text" name="mpaa" class="form-control" placeholder="<?php echo __('MPAA');?>" value="<?php echo $Listing['mpaa']; ?>">
        </div>
    </div>
 

Attachments

  • AddingMPAAsqls.zip
    346 bytes · Views: 5
I've been developing a Chatbox for my own site as opposed for Wovie, is anyone interested in it ? I'll leave it in if people are... it's on https://sandbox.watcha.movie
if there's an option to turn it on/off it could be a good idea, though I see it more abused than useful in my opinion...people can already comment on the series/movies pages themselves so for me a chat box would be redundant but then again lots of folks do like chat boxes so I mean, it's an interesting idea.
 
if there's an option to turn it on/off it could be a good idea, though I see it more abused than useful in my opinion...people can already comment on the series/movies pages themselves so for me a chat box would be redundant but then again lots of folks do like chat boxes so I mean, it's an interesting idea.

I might not leave it in, its just for myself really as I don't like the built in forums provided so I was just making other social features
 
I might not leave it in, its just for myself really as I don't like the built in forums provided so I was just making other social features
ah, I see, to replace the discussions page....I haven't really played with that, yeah I could see where a chatbox would work for that.
 
i install every thing is find but when i open movie or series it shoe me this
Database Error
SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near ') AND posts.id NOT IN (1) AND posts.type = "movie" GROUP BY ...' at line 15

can you tell me how to solve this error
 
i install every thing is find but when i open movie or series it shoe me this
Database Error
SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near ') AND posts.id NOT IN (1) AND posts.type = "movie" GROUP BY ...' at line 15

can you tell me how to solve this error

I need the following info please:

System Specs such as PHP Vers etc
Version of Wovie Installed
Link to website
Login details to see problem

DM me these please
 
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