Activity Stream
48,167 MEMBERS
6348 ONLINE
besthostingforums On YouTube Subscribe to our Newsletter besthostingforums On Twitter besthostingforums On Facebook besthostingforums On facebook groups

Page 10 of 16 FirstFirst ... 89101112 ... LastLast
Results 91 to 100 of 152
  1.     
    #91
    Member
    This site is using a hacked database of W junction
    Last edited by Gavo; 4th Jan 2015 at 02:29 PM.

  2.     
    #92
    Member
    Quote Originally Posted by Mr Happy View Post
    Ya their is. It's in the config file. You can also modify the htaccess to match how you change the config. It's not to hard but that's more of a tutorial you have to follow rather than a plugin as it requires template edits so that's a different topic. I do have an Advanced SEO module which I'll release soon and I'll include re-writes in that if nobody makes a tutorial in the meantime. You can develop your website though as that's something you can do later. Take KWWHunction as an example. That was getting thousands of visitors and was about 4 years old before it introduced url rewrites.

    Thanks for the config file hint. Looking forward to the SEO plugin.

  3.     
    #93
    Member
    Website's:
    RazorDOX.com

    Default Extra's module

    Extra's Module re-coded by mgmaik.
    (No idea who coded this first. Please let me know.)

    Info:
    Shows extra download information.
    It's a really easy module. Didn't took me very long to understand with no php skills.

    Screenshots:


    Download:
    https://rapidshare.com/files/3874607041/wcddl_extra.php

    Install:
    Add wcddl_extra.php in your Modules folder
    works perfect with Mr Happy Plugin Manager.

    Browse to index.php
    Find:
    Code: 
    <td>Views</td>
    Replace
    Code: 
    <td>Extra</td><td>Views>
    Find:
    Code: 
    <td><?php echo $row->views?></td>
    Add before:
    Code: 
    <?php echo $row->extra; ?>
    Upload your IMDB, GOOGLE, GAMETRAILERS icon.

    Open your Style.css
    Add:
    Code: 
    .extra{opacity:0.3;filter:alpha(opacity=30);margin-top:3px;background-color:transparent;}
    .extra:hover{opacity:1.0;filter:alpha(opacity=100);margin-top:3px;}
    .extra.imdb{height:16px;width:16px;background-image:url("http://www.your.uploaded.imdb.icon.png");}
    .extra.google{height:16px;width:16px;background-image:url("http://www.your.uploaded.google.icon.png");}
    .extra.gametrailers{height:16px;width:16px;background-image:url("http://www.your.gamtrailers.imdb.icon.png");}
    CSS Tip:
    Making an image sprite will increase loading time but requires more css skills.

    De-activate:
    simply change this:
    Code: 
    $modEnabled = true;
    to this:
    Code: 
    $modEnabled = false;
    Note:
    Adding more extra's possible too. But requires some php and css skills.
    Or just ask me.

  4.     
    #94
    Member
    Website's:
    WarezEurope.com
    when trying to install ACP i get:

    Error
    You need to have the WCP (Webmaster Control Panel) by Mr Happy installed to enable this feature.

  5.     
    #95
    Respected Developer
    Website's:
    wrzc.org
    Quote Originally Posted by UncleSam View Post
    when trying to install ACP i get:

    Error
    You need to have the WCP (Webmaster Control Panel) by Mr Happy installed to enable this feature.
    When trying to install? Don't you mean when trying to change/update the settings and options?

    That's added to future proof it for when I release my WCP Module. Just uncheck the WCP checkbox in the settings and save/update them. Obviously you can't enable the WCP as it's not even released. That setting will only become available when I release the WCP and you've it installed. It doesn't affect anything else.
    Tutorial How to SEO your Warez Site a guide to help you increase your organic traffic

    Huge list of Warez Sites and free Multiposter Templates

  6.     
    #96
    Member
    Website's:
    WarezEurope.com
    yep thats what i meant.

    got it, thanks.

  7.     
    #97
    Member
    Hi,

    Which plugin will show the downloads for an specific site?

    http://www.domain.com/index.php?site=mydomain.com

    Thanks

    ---------- Post added at 05:33 PM ---------- Previous post was at 04:18 PM ----------

    nvm,

    I added a query to wc3.php and it works.
    AFTER
    PHP Code: 
    class Downloads {
        public 
    $page 1;
        public 
    $perPage 30;
        public 
    $query;
        public 
    $type
    ADD new variable
    PHP Code: 
        public $site
    AND AFTER
    PHP Code: 
            if(!empty($this->type)) {
                
    $where .= (empty($where) ? ' WHERE' ' AND') . ' d.type = :type';
                
    $whereParams['type'] = $this->type;
            } 
    ADD
    PHP Code: 
            if(!empty($this->site)) {
                
    $where .= (empty($where) ? ' WHERE' ' AND') . ' s.url = :site';
                
    $whereParams['site'] = $this->site;
            } 
    I changed Index.php also

    FROM
    PHP Code: 
    $downloads Core::load()->mapRequest('Downloads', array('page''query''type')); 
    TO

    PHP Code: 
    $downloads Core::load()->mapRequest('Downloads', array('page''query''type''site')); 


    ---------- Post added at 05:53 PM ---------- Previous post was at 05:33 PM ----------

    Ahhhhh, but Pages number is not showing lol plz tell me how to fix that

  8.     
    #98
    Member
    Website's:
    RazorDOX.com
    @resoft11
    Code: 
    MISSING:
    alteration who need to be done at index.php
    $downloads = Core::load()->mapRequest('Downloads', array('page', 'query', 'type', 'site'));  <- site on array
    echo $downloads->pages(array(
                array('default', WCDDL_PAGES_DEFAULT),
                array('query', WCDDL_PAGES_QUERY),
                array('type', WCDDL_PAGES_TYPE),
                array(array('query', 'type'), WCDDL_PAGES_QUERY_TYPE),
                array('site', WCDDL_PAGES_SITE)  <------------------------------------------------------ site to pagination
            ));
    if uses the noxxx mod change one line
    if((empty($type) && !isset($_GET['q']) && !isset($_GET['page']) && !isset($_GET['site'])) || (!isset($_GET['site']) && isset($_GET['page']) && $this->dontshow && $type != 'xxx')) {
    (code from jomasaco)

    Jomasaco released a module of that. I believe it's called "wcddl_joma_site_downl.php"
    It will show site page with a working pagination.

    The module can be found on WCDDL skins forum
    Can't find the link on KWWHunction anymore.

    btw you shouldn't edit the wc3.php as it will make it harder to update wcddl script in the future. Best way is to use the module.

  9.     
    #99
    Member
    Wow, great mate.

    You are right! i shouldnt edit wc3.php

    But i dont know what is wrong with my modifiation, i can see that it works because i can access all pages manually by typing url with page number , just pagination for site downloads is not showing. I added there lines too

    array('site', WCDDL_PAGES_SITE) -> index.php
    and
    define('WCDDL_PAGES_SITE', '<a href="/index.php?page=#page#&site=#site#">#page#</a>');

    to wcfg.php

    anyway, Thank alot @mgmaik

  10.   Sponsored Links

  11.     
    #100
    Banned
    Website's:
    WarezRelease.org ThatHosting.co
    MrH, a small suggestion 4 ur plugin manager:



    see the 1st arrow, Options, should only be available if mod is installed.

    see the 2nd arrow, Install, should'nt be available if mod IS installed.

    see the 3rd arrow, Uninstall should only be available if mod IS installed.

Page 10 of 16 FirstFirst ... 89101112 ... LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. WCDDL - Development How-To (Modules, Hooks, etc)
    By JmZ in forum Web Development Area
    Replies: 19
    Last Post: 25th Jan 2014, 09:09 AM
  2. WCDDL Modules
    By Peach in forum Forum and DDL Discussion
    Replies: 3
    Last Post: 21st Jun 2011, 01:19 PM
  3. Ultimate WordPress Free Plugins Thread !-Sharing top plugins.
    By alex17 in forum Webmaster Resources
    Replies: 3
    Last Post: 2nd Jun 2011, 04:05 PM
  4. 2x Custom modules, black/whitelist WcDDL
    By Chris2k in forum Webmaster Resources
    Replies: 0
    Last Post: 21st May 2011, 01:01 AM
  5. Best WCDDL plugins
    By bunnny in forum Forum and DDL Discussion
    Replies: 25
    Last Post: 7th Apr 2011, 06:56 PM

Tags for this Thread

BE SOCIAL