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

Page 1 of 2 12 LastLast
Results 1 to 10 of 11
  1.     
    #1
    Member

    Default I want this WCDDL module to buy

    Hello. I would like to buy this module for WCDDL v2.1 (i think is a paid module) available in zunox.com and twilight.ws

    How much ? ($ paypal) and if has any installation instructions will be better.

    Waiting for reply or PM from the maker or any reseller or anyone can point me to the selling/making thread ?

    I did not find anything, looked already. Thanks.

    kitty Reviewed by kitty on . I want this WCDDL module to buy Hello. I would like to buy this module for WCDDL v2.1 (i think is a paid module) available in zunox.com and twilight.ws How much ? ($ paypal) and if has any installation instructions will be better. Waiting for reply or PM from the maker or any reseller or anyone can point me to the selling/making thread ? I did not find anything, looked already. Thanks. http://s1.directupload.net/images/110826/f4fqtju9.png http://s7.directupload.net/images/110826/ftjtedj4.png Rating: 5

  2.   Sponsored Links

  3.     
    #2
    Respected Developer
    Website's:
    wrzc.org
    It's more of a template edit than a module.
    basically you add the something like following:
    PHP Code: 
    <td><?php if($site['type'] == 'movie') { 
    echo 
    '<a href="http://www.imdb.com/find?s=all&q='.$site['title'].'" target="_blank"><img scr="/images/imdb-logo.png" alt="'.$site['title'].'" title="View '.$site['title'].' Info"/></a>'; } 
    elseif(
    $site['type'] == 'tv') { 
    echo 
    '<a href="http://tvdb.com/search/'.$site['title'].'"><img src="/imges/tv-logo.png" alt="'.$site['title'].'" title="View '.$site['title'].' info" /><a/>'
    ?></td>
    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

  4.     
    #3
    Member
    I'll try. Thank you! Reputation added.

  5.     
    #4
    Member
    Website's:
    zomgbbqpizza.com evilddl.com scenemarket.org
    Slight error in that code at the end:
    Code: 
    <a/>

  6.     
    #5
    Member
    somehow is still not working to me...

    original:

    Code: 
    <div class="entry">
                <table class="postmetadata" width="100%">
                <tr><td width="8%" style="text-align:center;background-color:#F5F5F5;">Type</td><td>Download Name</td><td width="4%" style="background-color:#F5F5F5;">Ex</td><td width="10%" style="text-align:center;">Date</td><td width="15%" style="text-align:center;">Provided by</td></tr>
                <?php
                    foreach($downloads as $dl) {
                ?>
                <tr><td style="text-align:center;background-color:#F5F5F5;"><?=$dl['type']?></td><td><a href="download.php?id=<?=$dl['id']?>"><?=$dl['title']?></a></a></td><td style="background-color:#F5F5F5;"><img src="http://cdn1.iconfinder.com/data/icons/socialmediaicons_v120/16/google.png" /></td><td style="text-align:center;"><?=(date("d/m/y") == date("d/m/y", $dl['dat'])) ? 'Today' : (date('d/m/y', mktime(0, 0, 0, date("m") , date("d") - 1, date("Y"))) == date("d/m/y", $dl['dat']) ? 'Yesterday' : date("d/m/y", $dl['dat']))?></td><td style="text-align:center;"><a href="http://<?=($dl['surl'])?>" target="_blank"><?=$dl['sname']?></a></td></tr>
                <?php
                    }
                ?>
                </table>
                </div>
                </div>
    after adding code :

    Code: 
    <div class="entry">
                <table class="postmetadata" width="100%">
                <tr><td width="8%" style="text-align:center;background-color:#F5F5F5;">Type</td><td>Download Name</td><td width="4%" style="background-color:#F5F5F5;">Ex</td><td width="10%" style="text-align:center;">Date</td><td width="15%" style="text-align:center;">Provided by</td></tr>
                <?php
                    foreach($downloads as $dl) {
                ?>
                <tr><td style="text-align:center;background-color:#F5F5F5;"><?=$dl['type']?></td><td>
                <a href="download.php?id=<?=$dl['id']?>"><?=$dl['title']?></a></a></td>
                
                <td style="background-color:#F5F5F5;"><?php if($site['type'] == 'App') { 
    echo '<a href="http://www.imdb.com/find?s=all&q='.$site['title'].'" target="_blank"><img scr="/images/imdb-logo.png" alt="'.$site['title'].'" title="View '.$site['title'].' Info"/></a>'; } 
    elseif($site['type'] == 'TV') { 
    echo '<a href="http://tvdb.com/search/'.$site['title'].'"><img src="/images/tv-logo.png" alt="'.$site['title'].'" title="View '.$site['title'].' Info"/></a>'; 
    } ?></td>
    
                <td style="text-align:center;"><?=(date("d/m/y") == date("d/m/y", $dl['dat'])) ? 'Today' : (date('d/m/y', mktime(0, 0, 0, date("m") , date("d") - 1, date("Y"))) == date("d/m/y", $dl['dat']) ? 'Yesterday' : date("d/m/y", $dl['dat']))?></td>
                <td style="text-align:center;"><a href="http://<?=($dl['surl'])?>" target="_blank"><?=$dl['sname']?></a></td></tr>
                <?php
                    }
                ?>
                </table>
                </div>
                </div>
    added 2 16x16 images in /images folder with respective names.

    my wcfg.php has :

    Code: 
    // General Config
    $this->allowed_types = array( // These types are accepted from submitters, any other type will be "thrown away"
        "App",
        "Game",
        "Movie",
        "Music",
        "TV",
        "eBook"
    );
    $this->admin_pass
    but still not working. what am I missing ?

  7.     
    #6
    Respected Developer
    Website's:
    wrzc.org
    On my mobile so can't really see exactly. Initially you have $dl while I though you had $site so I've changed all the $site to $dl. Give that a go and I'll have a better look when I get home if it doesn't work.
    PHP Code: 
    <div class="entry">
                <table class="postmetadata" width="100%">
                <tr><td width="8%" style="text-align:center;background-color:#F5F5F5;">Type</td><td>Download Name</td><td width="4%" style="background-color:#F5F5F5;">Ex</td><td width="10%" style="text-align:center;">Date</td><td width="15%" style="text-align:center;">Provided by</td></tr>
                <?php
                    
    foreach($downloads as $dl) {
                
    ?>
                <tr><td style="text-align:center;background-color:#F5F5F5;"><?=$dl['type']?></td><td>
                <a href="download.php?id=<?=$dl['id']?>"><?=$dl['title']?></a></a></td>
                
                <td style="background-color:#F5F5F5;"><?php if($dl['type'] == 'App') { 
    echo 
    '<a href="http://www.imdb.com/find?s=all&q='.$dl['title'].'" target="_blank"><img scr="/images/imdb-logo.png" alt="'.$dl['title'].'" title="View '.$dl['title'].' Info"/></a>'; } 
    elseif(
    $dl['type'] == 'TV') { 
    echo 
    '<a href="http://tvdb.com/search/'.$dl['title'].'"><img src="/images/tv-logo.png" alt="'.$dl['title'].'" title="View '.$dl['title'].' Info"/></a>'
    ?></td>
                <td style="text-align:center;"><?=(date("d/m/y") == date("d/m/y"$dl['dat'])) ? 'Today' : (date('d/m/y'mktime(000date("m") , date("d") - 1date("Y"))) == date("d/m/y"$dl['dat']) ? 'Yesterday' date("d/m/y"$dl['dat']))?></td>
                <td style="text-align:center;"><a href="http://<?=($dl['surl'])?>" target="_blank"><?=$dl['sname']?></a></td></tr>
                <?php
                    
    }
                
    ?>
                </table>
                </div>
                </div>
    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.     
    #7
    Member
    doing so in EX i have the Download Name as text... so is type, download name and again download name, no images., then date and provider

  9.     
    #8
    Respected Developer
    Website's:
    wrzc.org
    Ah that's good. That means it can't find the images so it's showing you the download name. What's the url to your site so I can see it? I need to find where you've the images/icons saved so I can get the correct path as that's what seams to be wrong now.

    I'll be home in two hours so won't be able to help more until then but don't go paying for this. Your 95% there.
    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

  10.     
    #9
    Member
    My images path is :

    http://www.domain.com/images/tv-logo.png
    http://www.domain.com/images/imdb-logo.png

    I opened them in browser, to see that is there. They are there.

    I added the full path in index.php in your code

    <img scr="http://www.domain.com/images/imdb-logo.png" alt="'.$dl['title'].'"

    instead the original <img scr="/images/imdb-logo.png" ...

    I wish I can send you a PM with the domain name, but you can't receive PMs. I would like the domain name to keep it private yet, since is in project stade... would look bad for future visitor when they see it now...

    Thank you very much for helping me, I wait from you.

    --- update: TV category is showing ... image is there. i renamed tv-logo.png to imdb-logo.png but is not working this way... there is something wrong now only App code.

    so all categories from elseif($dl['type'] == works but is not working the first category <?php if($dl['type'] ==

  11.     
    #10
    Member
    Website's:
    eiswebhosting.com mastddl.com
    TRY This it will be work tested:
    PHP Code: 
    <div class="entry">
                <table class="postmetadata" width="100%">
                <tr><td width="8%" style="text-align:center;background-color:#F5F5F5;">Type</td><td>Download Name</td><td width="4%" style="background-color:#F5F5F5;">Ex</td><td width="10%" style="text-align:center;">Date</td><td width="15%" style="text-align:center;">Provided by</td></tr>
                <?php
                    
    foreach($downloads as $dl) {
                
    ?>
                <tr><td style="text-align:center;background-color:#F5F5F5;"><?=$dl['type']?></td><td>
                <a href="download.php?id=<?=$dl['id']?>"><?=$dl['title']?></a></a></td>
                
                <td style="background-color:#F5F5F5;"><?php if($dl['type'] == 'Movie') { 
    echo 
    '<a href="http://www.imdb.com/find?s=all&q='.$dl['title'].'" target="_blank"><img src="/images/imdb-logo.png" alt="'.$dl['title'].'" title="View '.$dl['title'].' Info"/></a>'; } 
    elseif(
    $dl['type'] == 'TV') { 
    echo 
    '<a href="http://tvdb.com/search/'.$dl['title'].'"><img src="/images/tv-logo.png" alt="'.$dl['title'].'" title="View '.$dl['title'].' Info"/></a>'
    ?></td>
                <td style="text-align:center;"><?=(date("d/m/y") == date("d/m/y"$dl['dat'])) ? 'Today' : (date('d/m/y'mktime(000date("m") , date("d") - 1date("Y"))) == date("d/m/y"$dl['dat']) ? 'Yesterday' date("d/m/y"$dl['dat']))?></td>
                <td style="text-align:center;"><a href="http://<?=($dl['surl'])?>" target="_blank"><?=$dl['sname']?></a></td></tr>
                <?php
                    
    }
                
    ?>
                </table>
                </div>
                </div>


    Host Images FREE no delete

Page 1 of 2 12 LastLast

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. WCDDL backlink module
    By ImmOr7aL in forum Webmaster Resources
    Replies: 1
    Last Post: 10th Sep 2011, 06:46 PM
  2. [Hiring] RSS Feed autoposting module in WCDDL
    By kitty in forum Completed Transactions
    Replies: 0
    Last Post: 27th Aug 2011, 06:20 AM
  3. [Selling] WCDDL v2 Module - Instant Whitelist
    By gtaclub in forum Completed Transactions
    Replies: 0
    Last Post: 21st Aug 2011, 03:52 AM
  4. How to get WCDDL report module to work v2?
    By Benzoman in forum Technical Help Desk Support
    Replies: 3
    Last Post: 24th Jan 2010, 12:31 AM
  5. Affiliate Links [WCDDL Module]
    By Plutost in forum Webmaster Resources
    Replies: 5
    Last Post: 29th Nov 2008, 05:25 PM

Tags for this Thread

BE SOCIAL