Wovie - Movie and TV Series Streaming Platform

Wovie - Movie and TV Series Streaming Platform v1.0.2

No permission to download

graphicfrog

New member
May 18, 2022
0
0
0
playing a bit and if you want to add the collections image to the actual collection page..I put it under the title
app/theme/view/collection.php
find
Code:
            <h1>
                <?php echo $Listing['name'];?>
            </h1>
after add
Code:
<?php if($Listing['background']) { ?><img src="<?php echo $Listing['background'];?>"style="width: 100%;background-size: cover;background-position: center;max-height:200px;" /><?php } ?>
change the max-height:200px to whatever size you want, the image *should* scale to browser sizes

Untitled.png
 
  • Love
Reactions: Titan

Titan

Well-known member
Jul 2, 2020
246
316
63
Space
watcha.movie
playing a bit and if you want to add the collections image to the actual collection page..I put it under the title
app/theme/view/collection.php
find
Code:
            <h1>
                <?php echo $Listing['name'];?>
            </h1>
after add
Code:
<?php if($Listing['background']) { ?><img src="<?php echo $Listing['background'];?>"style="width: 100%;background-size: cover;background-position: center;max-height:200px;" /><?php } ?>
change the max-height:200px to whatever size you want, the image *should* scale to browser sizes

Untitled.png

Stealing this for next update! Never even thought of it (a setting will be added to enable or disable this)

@manhtam92 country codes can be found at the table 'countries' there's currently a bug where everythings from the UK...
 
  • Like
Reactions: Shadav

graphicfrog

New member
May 18, 2022
0
0
0
a request :)
I can't figure out how, just keep getting database errors
a way to show on the home.series.php the latest season number and latest episode number for each series
 

graphicfrog

New member
May 18, 2022
0
0
0
when comparing the previous version to the new one I noticed 2 files missing, are they no longer needed or was this by mistake?
in public/assets/js/
jquery.typeahead.js and plyr.js are missing
 

Titan

Well-known member
Jul 2, 2020
246
316
63
Space
watcha.movie
when comparing the previous version to the new one I noticed 2 files missing, are they no longer needed or was this by mistake?
in public/assets/js/
jquery.typeahead.js and plyr.js are missing

Ermmm I never removed any files, I'll look into it later on, it's not affecting any of my sites, the plyr.js missing would imply that direct mp4 links won't work
 

graphicfrog

New member
May 18, 2022
0
0
0
slight issue, thank you for fixing the issue with special seasons, however it doesn't work, get a 404 when you try to play any videos from the special season
 

graphicfrog

New member
May 18, 2022
0
0
0
to sort the episodes by season/episode in the admin
app\controller\admin\Episodes.php
find
Code:
            $OrderBy = 'ORDER BY posts_episode.name '.$Filter['sortable'];
        }else{
            $OrderBy = 'ORDER BY posts_episode.name DESC';
        }
change to
Code:
            $OrderBy = 'ORDER BY posts_episode.name ASC';
        }
this will sort it as
season 1 episode 1
season 1 episode 2
and so on
season 2 episode 1
season 2 episode 2
and so on

if you'd rather it be reversed and sort by the newest episode change ASC to DESC
 

Titan

Well-known member
Jul 2, 2020
246
316
63
Space
watcha.movie
slight issue, thank you for fixing the issue with special seasons, however it doesn't work, get a 404 when you try to play any videos from the special season

I just noticed (I don't have any special shows on mine to notice) so ill be rolling back that change in next update
 

odinot

New member
Jul 27, 2020
10
0
3
My bad on the Season Specials/Extras, I have yet to fully test everything out as it's still lacking loads of features in order for me to migrate my existing sites. Hence, I did not test that out as I have yet to import all movies and series to it.

Here's the fix that you need to change in `app/config/router.config.php`

Code:
App::addRoute("GET|POST", "/serie/[*:self]-[i:id]-[*:season]-season-[i:episode]-episode/[i:video]?/?",        "Episode"); 
App::addRoute("GET|POST", "/serie/[*:self]-[i:id]/[*:season]-season/[i:episode]-episode?/?",        "Episode");


1627899233352.png
 

graphicfrog

New member
May 18, 2022
0
0
0
My bad on the Season Specials/Extras, I have yet to fully test everything out as it's still lacking loads of features in order for me to migrate my existing sites. Hence, I did not test that out as I have yet to import all movies and series to it.

Here's the fix that you need to change in `app/config/router.config.php`

Code:
App::addRoute("GET|POST", "/serie/[*:self]-[i:id]-[*:season]-season-[i:episode]-episode/[i:video]?/?",        "Episode");
App::addRoute("GET|POST", "/serie/[*:self]-[i:id]/[*:season]-season/[i:episode]-episode?/?",        "Episode");


1627899233352.png
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?
 

Titan

Well-known member
Jul 2, 2020
246
316
63
Space
watcha.movie
Thanks for bugs and provided solutions etc I've managed to do some updates to it but won't be releasing it tonight...

  • Fixed 'Specials' not showing thanks to @Shadav solution above
  • Added banner to the collections thanks to also @Shadav
    • I have changed the code to be aspect ratio as opposed to a fixed size, this way it is 100% responsive on mobile and desktop etc...
    • I've also made it toggleable for those that don't want the image to show.
  • Added Ascending order of Episodes also once again thanks to @Shadav haha...
  • Added covers to the shows in profile->collections as a lot of people have forgotten about this section, it now looks like the collection page.
  • Countries now fixed! Huge thanks to @odinot for supplying the fix
While we're on the topic of Collections I have re-written the URLs to follow /collections/[NAME]-[ID] as opposed to just /collections/[ID] this should help with SEO for example

Old link: https://sandbox.watcha.movie/collection/2

New link: https://sandbox.watcha.movie/collection/watch-a-movie-2

I've also added this to be added on sitemaps which again will help with SEO, I've also added categories to the Sitemap just in case you add any of your own, these should automatically be added on next generation.

Demo Links:

Collections URL rewrite: https://sandbox.watcha.movie/collections

Collections URL: https://sandbox.watcha.movie/collection/watch-a-movie-2

Collections Profile: https://sandbox.watcha.movie/profile/admin

USA Show showing correct country: https://sandbox.watcha.movie/serie/the-mandalorian-20

German Show showing correct country: https://sandbox.watcha.movie/serie/the-mandalorian-20

South Korean Movie showing correct country: https://sandbox.watcha.movie/movie/parasite-23
 

graphicfrog

New member
May 18, 2022
0
0
0
the fix for the specials was odinot

ran into an issue today...seems that after the last update movies don't work anymore, series work fine but not movies.
 

Titan

Well-known member
Jul 2, 2020
246
316
63
Space
watcha.movie
the fix for the specials was odinot

ran into an issue today...seems that after the last update movies don't work anymore, series work fine but not movies.

Oh yeah it was I'll remember that for my actual patch notes sorry... I'll look into it, they seem to be working sandbox, can you explain more in depth how their not working

EDIT: I see the issue it's trying to prioritise my API I'm pulling forward the update to a few minutes (maybe like 30)
 

graphicfrog

New member
May 18, 2022
0
0
0
Oh yeah it was I'll remember that for my actual patch notes sorry... I'll look into it, they seem to be working sandbox, can you explain more in depth how their not working

EDIT: I see the issue it's trying to prioritise my API I'm pulling forward the update to a few minutes (maybe like 30)
it wasn't working on your sandbox for me either

it's in the changes to the
app\theme\view\common\post.header.php
if I revert that file back to the previous version then the movies play

with the current version 1 of 3 things happens
either nothing loads, the player is just blank
either the player loads saying video not found
or the player loads with a 404 error
 

Titan

Well-known member
Jul 2, 2020
246
316
63
Space
watcha.movie
it wasn't working on your sandbox for me either

it's in the changes to the
app\theme\view\common\post.header.php
if I revert that file back to the previous version then the movies play

with the current version 1 of 3 things happens
either nothing loads, the player is just blank
either the player loads saying video not found
or the player loads with a 404 error

DM me the contents of posts.header.php please
 

Titan

Well-known member
Jul 2, 2020
246
316
63
Space
watcha.movie
Quick upload some features haven't been majorly tested, however this fixes the movies not working... This wouldn't be an issue if my API worked but I'm currently having a few problems due to be fixed in a few days...

  • Fixed movie embeds not working thanks @Shadav for bringing this to light
  • Fixed 'Specials' not showing thanks to @odinot solution above
  • Added banner to the collections thanks to also @Shadav
    • I have changed the code to be aspect ratio as opposed to a fixed size, this way it is 100% responsive on mobile and desktop etc...
  • Added Ascending order of Episodes also once again thanks to @Shadav haha...
  • Added covers to the shows in profile->collections as a lot of people have forgotten about this section, it now looks like the collection page.
  • Countries now fixed! Huge thanks to @odinot for supplying the fix
While we're on the topic of Collections I have re-written the URLs to follow /collections/[NAME]-[ID] as opposed to just /collections/[ID] this should help with SEO for example

Old link: https://sandbox.watcha.movie/collection/2

New link: https://sandbox.watcha.movie/collection/watch-a-movie-2

Demo Links:

Collections URL rewrite: https://sandbox.watcha.movie/collections

Collections URL: https://sandbox.watcha.movie/collection/watch-a-movie-2

Collections Profile: https://sandbox.watcha.movie/profile/admin

USA Show showing correct country: https://sandbox.watcha.movie/serie/the-mandalorian-20

German Show showing correct country: https://sandbox.watcha.movie/serie/the-mandalorian-20

South Korean Movie showing correct country: https://sandbox.watcha.movie/movie/parasite-23

Can also be downloaded from https://cdn.watcha.movie as always!

Quick question, I release updates rather often and I feel a lot of people leach from here but never return, what do you think of me putting in some code to get from my server to announce update ? I'm just trying to look after leachers too because I'm a nice human haha...
 

Attachments

  • WatchAMovie - Wovie Redux 2.0.2.zip
    7.2 MB · Views: 61

graphicfrog

New member
May 18, 2022
0
0
0
DM me the contents of posts.header.php please
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 🤷‍♀️

[edit]removed attachments since I didn't see titans update
 
Last edited:

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