Wovie: Redux

Wovie: Redux v3.3.3 ReDo

No permission to download

Pp4real

Member
May 12, 2020
53
18
8
you need to edit two files
first open 'app/theme/view/module/home.trailer.php' and replace line no:39 with this
Code:
<a href="<?php echo APP . '/' . $Story['type'] . '/' . $Story['self'] . '-' . $Story['create_year'] . '-' . $Story['id'];?>" class="list-trailer">
and then open 'app/theme/view/modal/story.php' and replace whole code with this
Code:
<?php

$Story = $this->db->from(null,'
    SELECT
    stories.id,
    stories.title,
    stories.subtitle,
    stories.embed,
    stories.content_id,
    posts.id as p_id,
    posts.title as p_title,
    posts.self as p_self,
    posts.type as p_type,
    posts.image,
    posts.create_year
    FROM `stories`
    LEFT JOIN posts ON posts.id = stories.content_id
    WHERE stories.id = "'.Input::cleaner($_GET['id']).'"')
    ->first();
?>
<div class="modal-content">
    <div class="modal-body p-4">
        <div class="embed-responsive embed-responsive-16by9 rounded">
            <iframe class="embed-responsive-item" src="<?php echo $Story['embed'];?>" allowfullscreen></iframe>
        </div>
        <?php if($Story['content_id']) { ?>
        <div class="mini-post">
            <div class="post-content">
                <div class="cover">
                    <div class="media media-cover" data-src="<?php echo UPLOAD.'/cover/thumb-'.$Story['image'];?>"></div>
                </div>
                <div class="flex-fill">
                    <div class="name">
                        <?php echo $Story['p_title'];?>
                    </div>
                    <div class="category">
                        <?php echo ($Story['p_type'] == 'movie') ? 'Film' : 'Show';?>
                    </div>
                    <a href="<?php echo APP . '/' . $Story['p_type'] . '/' . $Story['p_self'] . '-' . $Story['create_year'] . '-' . $Story['p_id'];?>" class="btn btn-theme"><?php echo __('Watch Now');?></a>
                </div>
            </div>
        </div>
        <?php } ?>
    </div>
</div>
Thanks, it's working!
 

kinare

Member
May 8, 2021
66
12
8
on the Tv show menu page 2. the first page is /show, then I want to go to the 2nd page but an error.. the url shows /series?filter=null&page=2..??.. @kinare can you help fix it.. http://in.filmku.tech/
Open .htaccess file and after line no:7 add
Code:
RewriteRule ^/?series /shows [L,R=301]
RewriteRule ^/?serie /show [L,R=301]

Can you please tell me how are you running your site on http instead of https
 
Last edited:
  • Like
Reactions: jhunay85

Nid

New member
May 13, 2021
1
0
1
how to fix this for me
SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '&& user_id = "1"' at line 1
 

jhunay85

Member
May 4, 2022
50
7
8
filmku.online
Open .htaccess file and after line no:7 add
Code:
RewriteRule ^/?series /shows [L,R=301]
RewriteRule ^/?serie /show [L,R=301]

Can you please tell me how are you running your site on http instead of https
open index.php line 34, I changed $app_url = "https://" to $app_url = "//". Previously I made changes because to play the m3u8 url on Live TV but it didn't work to play Live TV instead he downloaded the m3u8 file.. Is there a solution for this..?
 

kinare

Member
May 8, 2021
66
12
8
open index.php line 34, I changed $app_url = "https://" to $app_url = "//". Previously I made changes because to play the m3u8 url on Live TV but it didn't work to play Live TV instead he downloaded the m3u8 file.. Is there a solution for this..?
you need to add embed player link, m3u8 and direct links don't work.
 

spiit

New member
May 23, 2022
12
3
3
Hello . I am French and new to code but I managed to create things and modify errors on this new version. I started in version 3.3.2 and managed to transfer to the latest version.
I created the music version of the website and added a shortlink with a system ads
If I can help it would be a pleasure ( Sorry for my English )
Here is the link of my websites
(https://dl.spiitland.xyz) - (https://music.spiitland.xyz) - (https://links.spiitland.xyz)-(https://2embed.spiitland.xyz)
nb: thx @kinare you help me with the code in other pages

Exemple to my change in the admin page
dsggdg.png
 
Last edited:
  • Like
Reactions: mrlejenda

PrinceK

Active member
May 4, 2022
185
37
28
Hello . I am French and new to code but I managed to create things and modify errors on this new version. I started in version 3.3.2 and managed to transfer to the latest version.
I created the music version of the website and added a shortlink with a system ads
If I can help it would be a pleasure ( Sorry for my English )
Here is the link of my websites
(https://dl.spiitland.xyz) - (https://music.spiitland.xyz) - (https://links.spiitland.xyz)

nb: thx @kinare you help me with the code in other pages

Exemple to my change in the admin page
dsggdg.png
I like your home page for the movie streaming, I can't say the same for the movie single page details, it doesn't look responsive enough. I want to know the script you used for the link protection site. Thanks/merci
 

Fremder

Member
Jul 5, 2022
35
10
8
Hello . I am French and new to code but I managed to create things and modify errors on this new version. I started in version 3.3.2 and managed to transfer to the latest version.
I created the music version of the website and added a shortlink with a system ads
If I can help it would be a pleasure ( Sorry for my English )
Here is the link of my websites
(https://dl.spiitland.xyz) - (https://music.spiitland.xyz) - (https://links.spiitland.xyz)

nb: thx @kinare you help me with the code in other pages

Exemple to my change in the admin page
dsggdg.png
Mi modificacion.
 

Attachments

  • gVyNG0G.png
    gVyNG0G.png
    139.6 KB · Views: 43
  • MSMJ1t6.png
    MSMJ1t6.png
    158.7 KB · Views: 48
  • u1omyH0.png
    u1omyH0.png
    828.6 KB · Views: 51

spiit

New member
May 23, 2022
12
3
3
I like your home page for the movie streaming, I can't say the same for the movie single page details, it doesn't look responsive enough. I want to know the script you used for the link protection site. Thanks/merci
thanks .
Of course this is just an example.
i use Link-shield-v4
 

spiit

New member
May 23, 2022
12
3
3
I create 2 Blocks modules for homepage and I share with you the code

This one displays the first episodes of the series randomly (adjustable)
home.stats.png
home.Firstrandomepisodes.php
PHP:
<div class="app-section">
<div class="app-heading">
<div class="text"><?php echo $HomeModule['name'];?></div>
<style>
.scrolling-force {
    overflow-x: auto !important;
    flex-wrap: nowrap !important;
}
</style>
</div>
<div class="row scrolling-force list-scrollable
<?php if($ModuleData['listing'] == 'v2') { echo 'row-cols-1 row-cols-md-4 '; } else { echo ' row-cols-2 row-cols-md-5';}?>
<?php if($ModuleData['responsive'] == 'horizontal') echo 'scrolling-force list-scrollable';?>">
<?php
if(!$ModuleData['sorting']) {
$OrderBy = 'id DESC';
}else{
$OrderBy = $ModuleData['sorting'];
}
$Newests = $this->db->from(null,'
SELECT
posts_episode.name as episode_name,
posts_episode.image as episode_image,
posts_season.name as season_name,
posts.id,
posts.title,
posts.self,
posts.image,
posts.cover,
posts.create_year,
posts.imdb,
posts_episode.status,
posts_episode.created,
posts_episode.featured
FROM `posts_episode`
LEFT JOIN posts ON posts_episode.content_id = posts.id
LEFT JOIN posts_season ON posts_season.id = posts_episode.season_id
WHERE posts.type = "serie" AND posts.status = "1" AND posts_episode.status = "1" AND posts_episode.name = "1" AND posts_season.name = "1"
ORDER BY RAND()
LIMIT 0,'.$HomeModule['data_limit'])
->all();
foreach ($Newests as $Newest) {
?>
<div class="col">
<a href="<?php echo APP.'/show'?>/<?php echo $Newest['self'] . '-' . $Newest['id'] . '/season' . '/' . $Newest['season_name'] . '/episode' . '/' . $Newest['episode_name']; ?>" class="list-movie
<?php if($Newest['featured'] == '1') echo 'list-featured';?>
<?php if($ModuleData['listing'] == 'v2') echo 'list-episode';?>">
<div class="list-media">
<?php if($Newest['episode_image']) { ?>
<div class="media media-episode" data-src="<?php echo $Newest['episode_image'];?>"></div>
<?php } else { ?>
<div class="media media-episode" data-src="<?php echo $Newest['cover'];?>"></div>
<?php } ?>
<?php if($ModuleData['listing'] != 'v2') { ?>
<div class="list-media-attr">
<div class="date"><?php echo shortdate($Newest['created']);?></div>
</div>
<?php } ?>
</div>
<div class="list-caption">
<div class="list-title"><?php echo $Newest['title'];?></div>
<div class="list-category">Saison <?php echo $Newest['season_name'].' '. Episode .' '. $Newest ['episode_name'];?></div>
</div>
<?php if($ModuleData['listing'] == 'v2') { ?>
<div class="list-date"><?php echo shortdate($Newest['created']);?></div>
<?php } ?>
</a>
</div>
<?php } ?>
</div>
</div>

this one displays stats such as the number of films or series or episodes
home.firstepisode.png
home.stats.php

PHP:
    <?php
        $movies = $this->db->from(null,'SELECT count(posts.id) as total FROM `posts` WHERE type = "movie"')->total();
        $series   = $this->db->from(null,'SELECT count(posts.id) as total FROM `posts` WHERE type = "serie"')->total();
        $episodes    = $this->db->from(null,'SELECT count(posts_episode.id) as total FROM `posts_episode`')->total();
        $actors  = $this->db->from(null,'SELECT count(actors.id) as total FROM `actors`')->total();
        $requests = $this->db->from(null,'SELECT count(requests.id) as total FROM `requests`')->total();

        if($requests == 0) {
            $requests = 'A jour';
        }
          ?>
    <div class="row row-cols-4 list-scrollable">
        <div class="col">
            <a href="/movies" class="list-category-box" style="background-color: #55101b" title="<?php echo __('Movies');?>">
                <?php echo __('Movies');?> : <?php echo $movies;?>
            </a>
        </div>
        <div class="col">
            <a href="/shows" class="list-category-box" style="background-color: #244b32" title="<?php echo __('Series');?>">
                <?php echo __('Series');?> : <?php echo $series;?>
            </a>
        </div>
        <div class="col">
            <a href="/shows" class="list-category-box" style="background-color: #655a01" title="<?php echo __('Episodes');?>">
                <?php echo __('Episodes');?> : <?php echo $episodes;?>
            </a>
        </div>
        <div class="col">
            <a href="/actors" class="list-category-box" style="background-color: #3b022e" title="<?php echo __('Actors');?>">
                <?php echo __('Actors');?> : <?php echo $actors;?>
            </a>

            </a>
        </div>
    </div>
 

Pp4real

Member
May 12, 2020
53
18
8
I create 2 Blocks modules for homepage and I share with you the code

This one displays the first episodes of the series randomly (adjustable)
home.stats.png
home.Firstrandomepisodes.php
PHP:
<div class="app-section">
<div class="app-heading">
<div class="text"><?php echo $HomeModule['name'];?></div>
<style>
.scrolling-force {
    overflow-x: auto !important;
    flex-wrap: nowrap !important;
}
</style>
</div>
<div class="row scrolling-force list-scrollable
<?php if($ModuleData['listing'] == 'v2') { echo 'row-cols-1 row-cols-md-4 '; } else { echo ' row-cols-2 row-cols-md-5';}?>
<?php if($ModuleData['responsive'] == 'horizontal') echo 'scrolling-force list-scrollable';?>">
<?php
if(!$ModuleData['sorting']) {
$OrderBy = 'id DESC';
}else{
$OrderBy = $ModuleData['sorting'];
}
$Newests = $this->db->from(null,'
SELECT
posts_episode.name as episode_name,
posts_episode.image as episode_image,
posts_season.name as season_name,
posts.id,
posts.title,
posts.self,
posts.image,
posts.cover,
posts.create_year,
posts.imdb,
posts_episode.status,
posts_episode.created,
posts_episode.featured
FROM `posts_episode`
LEFT JOIN posts ON posts_episode.content_id = posts.id
LEFT JOIN posts_season ON posts_season.id = posts_episode.season_id
WHERE posts.type = "serie" AND posts.status = "1" AND posts_episode.status = "1" AND posts_episode.name = "1" AND posts_season.name = "1"
ORDER BY RAND()
LIMIT 0,'.$HomeModule['data_limit'])
->all();
foreach ($Newests as $Newest) {
?>
<div class="col">
<a href="<?php echo APP.'/show'?>/<?php echo $Newest['self'] . '-' . $Newest['id'] . '/season' . '/' . $Newest['season_name'] . '/episode' . '/' . $Newest['episode_name']; ?>" class="list-movie
<?php if($Newest['featured'] == '1') echo 'list-featured';?>
<?php if($ModuleData['listing'] == 'v2') echo 'list-episode';?>">
<div class="list-media">
<?php if($Newest['episode_image']) { ?>
<div class="media media-episode" data-src="<?php echo $Newest['episode_image'];?>"></div>
<?php } else { ?>
<div class="media media-episode" data-src="<?php echo $Newest['cover'];?>"></div>
<?php } ?>
<?php if($ModuleData['listing'] != 'v2') { ?>
<div class="list-media-attr">
<div class="date"><?php echo shortdate($Newest['created']);?></div>
</div>
<?php } ?>
</div>
<div class="list-caption">
<div class="list-title"><?php echo $Newest['title'];?></div>
<div class="list-category">Saison <?php echo $Newest['season_name'].' '. Episode .' '. $Newest ['episode_name'];?></div>
</div>
<?php if($ModuleData['listing'] == 'v2') { ?>
<div class="list-date"><?php echo shortdate($Newest['created']);?></div>
<?php } ?>
</a>
</div>
<?php } ?>
</div>
</div>

this one displays stats such as the number of films or series or episodes
home.firstepisode.png
home.stats.php

PHP:
    <?php
        $movies = $this->db->from(null,'SELECT count(posts.id) as total FROM `posts` WHERE type = "movie"')->total();
        $series   = $this->db->from(null,'SELECT count(posts.id) as total FROM `posts` WHERE type = "serie"')->total();
        $episodes    = $this->db->from(null,'SELECT count(posts_episode.id) as total FROM `posts_episode`')->total();
        $actors  = $this->db->from(null,'SELECT count(actors.id) as total FROM `actors`')->total();
        $requests = $this->db->from(null,'SELECT count(requests.id) as total FROM `requests`')->total();

        if($requests == 0) {
            $requests = 'A jour';
        }
          ?>
    <div class="row row-cols-4 list-scrollable">
        <div class="col">
            <a href="/movies" class="list-category-box" style="background-color: #55101b" title="<?php echo __('Movies');?>">
                <?php echo __('Movies');?> : <?php echo $movies;?>
            </a>
        </div>
        <div class="col">
            <a href="/shows" class="list-category-box" style="background-color: #244b32" title="<?php echo __('Series');?>">
                <?php echo __('Series');?> : <?php echo $series;?>
            </a>
        </div>
        <div class="col">
            <a href="/shows" class="list-category-box" style="background-color: #655a01" title="<?php echo __('Episodes');?>">
                <?php echo __('Episodes');?> : <?php echo $episodes;?>
            </a>
        </div>
        <div class="col">
            <a href="/actors" class="list-category-box" style="background-color: #3b022e" title="<?php echo __('Actors');?>">
                <?php echo __('Actors');?> : <?php echo $actors;?>
            </a>

            </a>
        </div>
    </div>
please how do I show this block on my homepage?
 

kinare

Member
May 8, 2021
66
12
8
Hello . I am French and new to code but I managed to create things and modify errors on this new version. I started in version 3.3.2 and managed to transfer to the latest version.
I created the music version of the website and added a shortlink with a system ads
If I can help it would be a pleasure ( Sorry for my English )
Here is the link of my websites
(https://dl.spiitland.xyz) - (https://music.spiitland.xyz) - (https://links.spiitland.xyz)

nb: thx @kinare you help me with the code in other pages

Exemple to my change in the admin page
dsggdg.png
It looks really cool and thanks.
I was looking at your site and I found on your series page that actors are looking like this and when click on actor image it shows a blank actor page or wrong actor page
Screenshot_20220731-161225_Chrome.jpg
I also faced this problem when i custom uploaded an image of an actor (because it's not available in tmdb) and a bug in actor ids here is the fix
open 'app/theme/view/serie.php' and replace code from line no:147 to line no:149 to this
PHP:
<a href="<?php echo APP . '/actor/' . $Actor['self'] . '-' . $Actor['actor_id']; ?>">
   <div class="slide">
                            <div class="media" style="background-image: url(<?php echo $Actor['image'];?>);"></div>
 

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