Wovie - Movie and TV Series Streaming Platform

Wovie - Movie and TV Series Streaming Platform v1.0.2

No permission to download

manish77

New member
Banned User
Feb 6, 2021
7
-2
1
thank you for helping i solve that error by updating and re install on my server
 

manish77

New member
Banned User
Feb 6, 2021
7
-2
1
bro i want to scrap your movies if there are your ads can you help i visit scraper link you give but show 404 error
 

graphicfrog

New member
May 18, 2022
0
0
0
typo in profile collections
in app/theme/view/common/profile.collections.php
find
Code:
<a href="<?php echo 'collection/'
replace with
Code:
<a href="<?php echo '/collection/'

otherwise you get a 404 because it's trying to load url/profile/collection instead of url/collection
 

graphicfrog

New member
May 18, 2022
0
0
0
to add Pages to the menu
in app/theme/view/common/header.php
find
Code:
                    <?php if(get($Settings,'data.collections','block') == 1) { ?>
                    <li <?php if($Config['nav'] == 'collections' ) echo 'class="active"' ;?>>
                        <a href="<?php echo APP.'/collections';?>">
                            <?php if(get($Settings,'data.menuicon','theme') == 1) { ?>
                            <svg class="nav-icon">
                                <use xlink:href="<?php echo ASSETS.'/img/sprite.svg#collections';?>" />
                            </svg>
                            <?php } ?>
                            <?php echo __('Collections');?></a>
                    </li>
                    <?php } ?>
after add
Code:
    <li class="nav-item nav-header mt-0 pb-2"><?php echo __('Pages');?></li>
    <?php 
            $Pages = $this->db->from('pages')->where('status',1)->all();
            foreach ($Pages as $Page) { 
            ?>
    <li class="nav-item">
        <a class="nav-link" href="<?php echo APP.'/page/'.$Page['self'];?>">
            <?php echo $Page['name'];?></a>
    </li>
    <?php } ?>

then to remove the pages right side menu as it's now redundant and the contact link doesn't work anyways
in app/theme/view/page.php
find and remove
Code:
    <div class="app-page pt-md-4">
        <?php require PATH . '/theme/view/common/page.sidebar.php';?>
    </div>
 

Titan

Well-known member
Jul 2, 2020
246
316
63
Space
watcha.movie
to add Pages to the menu
in app/theme/view/common/header.php
find
Code:
                    <?php if(get($Settings,'data.collections','block') == 1) { ?>
                    <li <?php if($Config['nav'] == 'collections' ) echo 'class="active"' ;?>>
                        <a href="<?php echo APP.'/collections';?>">
                            <?php if(get($Settings,'data.menuicon','theme') == 1) { ?>
                            <svg class="nav-icon">
                                <use xlink:href="<?php echo ASSETS.'/img/sprite.svg#collections';?>" />
                            </svg>
                            <?php } ?>
                            <?php echo __('Collections');?></a>
                    </li>
                    <?php } ?>
after add
Code:
    <li class="nav-item nav-header mt-0 pb-2"><?php echo __('Pages');?></li>
    <?php
            $Pages = $this->db->from('pages')->where('status',1)->all();
            foreach ($Pages as $Page) {
            ?>
    <li class="nav-item">
        <a class="nav-link" href="<?php echo APP.'/page/'.$Page['self'];?>">
            <?php echo $Page['name'];?></a>
    </li>
    <?php } ?>

then to remove the pages right side menu as it's now redundant and the contact link doesn't work anyways
in app/theme/view/page.php
find and remove
Code:
    <div class="app-page pt-md-4">
        <?php require PATH . '/theme/view/common/page.sidebar.php';?>
    </div>

Thanks ill add this to the sandbox tonight, I'll take it toggleable in Settings, I've also made the menu on mobile scrollable as if there was too much content it looked odd
 
  • Like
Reactions: Shadav

graphicfrog

New member
May 18, 2022
0
0
0
I changed the code a bit so it matches the menu better
added a svg, used the > as that to me looks ok
Code:
<li class="nav-item nav-header mt-0 pb-2"><?php echo __('Pages');?></li>
    <?php 
            $Pages = $this->db->from('pages')->where('status',1)->all();
            foreach ($Pages as $Page) { 
            ?>
    <li class="nav-item">
        <a class="nav-link" href="<?php echo APP.'/page/'.$Page['self'];?>">
                            <svg class="nav-icon">
                                <use xlink:href="<?php echo ASSETS.'/img/sprite.svg#chevron-right';?>" />
                            </svg>
            <?php echo $Page['name'];?></a>
    </li>
    <?php } ?>
 

Titan

Well-known member
Jul 2, 2020
246
316
63
Space
watcha.movie
I am getting Error 1020 access denied

is this the one that you used for the update?

did you replace all the files except for app/config/db.config.php

His having issues with 2.0.2 after migrating servers, movies work but TV shows don't even though URL strutcures the same, his reverted back to 2.0.0 and its working again so I'm going to check it tonight but no one else seems to of had this problem.

@manish77 told you in DMs to stop asking for the files they're free in the thread, no one else's website is different to yours, there's no reported bugs in your site when I checked and then you went further to try and bribe me for help

"If you help ill show you errors on your site"

Report errors regardless of help or you'll ruin it for everyone...
 
  • Like
Reactions: Shadav and MrSam_1

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