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

Page 9 of 16 FirstFirst ... 7891011 ... LastLast
Results 81 to 90 of 152
  1.     
    #81
    Member
    Website's:
    iFunMaza.com
    Extra Module for v3 by immu

    Info: Extra module which was installed on almost like every DDL site so taught, to make it work on v3.

    ScreenShots:










    Install:

    Open Index.php

    Find:
    PHP Code: 
    <td>Views</td
    Replace
    PHP Code: 
    <td>Extra</td><td>Views

    Find:
    PHP Code: 
    <td><?php echo $row->views?></td>
    Before Add:

    PHP Code: 
    <td class="extra">
    <?php 
                    
    if($row->type == "Movie") { 
                    echo 
    '<a  href="http://www.imdb.com/find?s=all&q='.$row->title.'"  target="_blank"><img  src="http://localhost/new%20folder/images/imdb.png" height=16"  width="16" border="0" alt="'.$row->title.'" title="View Info about  '.$row->title.' "/></a>'; } 
                    elseif(
    $row->type == "TV") { 
                    echo 
    '<a  href="http://tvdb.com/search/'.$row->title.'"  target="_blank"><img  src="http://localhost/new%20folder/images/tv.png"  alt="'.$row->title.'" title="View Info about '.$row->title.'  "/></a>'; } 
                    elseif (
    $row->type == "Game") { 
                    echo 
    '<a  href="gamespot.com/search.html?qs='.$row->title.'"  target="_blank"><img  src="http://localhost/new%20folder/images//games.png"  alt="'.$row->title.'" title="Search in Google '.$row->title.'  "/></a>'; }
                    else { 
                    echo 
    '<a  href="http://google.com/?q='.$row->title.'"  target="_blank"><img  src="http://localhost/new%20folder/images/google.png"  alt="'.$row->title.'" title="Search in Google '.$row->title.'  "/></a>'; }
                
    ?>
    </td>


    NOTE: change image path


    Upload these Images in Images Folder




    Open Style.css

    PHP Code: 


    .extra
    {
    opacity:0.4;
    filter:alpha(opacity=40); /* For IE8 and earlier */
    }
    .
    extra:hover
    {
    opacity:1.0;
    filter:alpha(opacity=100); /* For IE8 and earlier */


    FB - http://www.facebook.com/IfunMaza
    Twitter - twitter.com/#!/iFunMaza

  2.     
    #82
    Member
    Website's:
    RazorDOX.com
    immu nice, it would be nicer if you made a module from that, not via index.

  3.     
    #83
    Respected Member
    Website's:
    DL4Everything.com Soft2050.in
    @Mr Happy
    You might want to fix a slight bug in the Filehost module while checking for backlink

    If a website has code like this:
    Code: 
    <a href="http://someanotherddl.com" rel="nofollow">SomeAnotherDDL</a><a href="http://www.google.com">Google</a>
    And the website to check for backlink is google.com
    Then the module will show as nofollow.
    Example:
    PHP Code: 
    <?php

    function backlink($page$data) {
            if(!
    $page || !$data)
                return 
    'error';
            
    $page strtolower($page);
            
    $regex '<a(.*)'.$data.'(.*)>';
            
    preg_match($regex$page$match);
            if(
    $match) {
                if ((
    strpos($match[1], 'nofollow') || strpos($match[2], 'nofollow')))
                    return 
    'nofollow';
                return 
    false;
            }
            else
                return 
    'backlink';
    }

    echo 
    backlink('<a href="http://someanotherddl.com" rel="nofollow">SomeAnotherDDL</a><a href="http://www.google.com">Google</a>',  'google.com');
        
    ?>

  4.     
    #84
    Member
    Website's:
    thedailygrindforum.com
    When I want to install the WCDDL Plug-in Manager it does not work.
    I know that the path to the modules folder is correct because when I go to the modules tab in the acp the modules are showing.

    And after the file upload to the modules folder and pointing my browser to :
    http://myURL/wc3admin.php?go=installpluginManager
    It does not do anything

  5.     
    #85
    Respected Developer
    Website's:
    wrzc.org
    Quote Originally Posted by WarezFreaks View Post
    When I want to install the WCDDL Plug-in Manager it does not work.
    I know that the path to the modules folder is correct because when I go to the modules tab in the acp the modules are showing.

    And after the file upload to the modules folder and pointing my browser to :
    http://myURL/wc3admin.php?go=installpluginManager
    It does not do anything
    I need these answered in order to help you:
    1. Do you see the plugin manager in the modules tab in the acp after you uploaded it?
    2. Did it say it installed the plugin manager when you followed the link?
    3. Do you see the link to the Plugin Manager on the navigation in the ACP (try hard refresh / login and logout / clear cache)?
    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.     
    #86
    Member
    Website's:
    thedailygrindforum.com
    1. yep
    2. Nope
    3. Did that and Nope

  7.     
    #87
    Respected Developer
    Website's:
    wrzc.org
    OK that's weird. Assuming you didn't rename or edit files then the problem is the url your trying to use to install it. Whatever way you changed example.com to yoursite.com didn't work.

    Try and do it this way. Login to your WCP and as soon as you've logged in then add ?go=installpluginManager to the end of the URL.
    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

  8.     
    #88
    Member
    Website's:
    thedailygrindforum.com
    I'm sorry but I just tried it and that does not work either.

  9.   Sponsored Links

  10.     
    #89
    Member
    I was wondering if there is any .php to .html rewrite rule for V3?
    In the htaccess for V2 there was something like:
    Code: 
    RewriteRule ^download-([^/]+)-([^/]+)\.html download.php?id=$1 [QSA,L,NC]
    but I'm facing some problems getting it to work on the index.php.
    It would be awesome if there will be some plugin able to rewrite download links to this:
    site/category/id-downloadname.html
    Thanks in advance

  11.     
    #90
    Respected Developer
    Website's:
    wrzc.org
    Quote Originally Posted by WarezFreaks View Post
    I'm sorry but I just tried it and that does not work either.
    Dam I've no idea what's wrong. Are you sure it's version 3 you installed and not version 2 or where is this installed? Localhost or a server? If it's a server you can PM me details if you want me to have a look

    Quote Originally Posted by Nightbeat View Post
    I was wondering if there is any .php to .html rewrite rule for V3?
    In the htaccess for V2 there was something like:
    Code: 
    RewriteRule ^download-([^/]+)-([^/]+)\.html download.php?id=$1 [QSA,L,NC]
    but I'm facing some problems getting it to work on the index.php.
    It would be awesome if there will be some plugin able to rewrite download links to this:
    site/category/id-downloadname.html
    Thanks in advance
    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.
    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

Page 9 of 16 FirstFirst ... 7891011 ... LastLast

Thread Information

Users Browsing this Thread

There are currently 3 users browsing this thread. (0 members and 3 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