Results 1 to 10 of 11
-
26th Aug 2011, 01:10 PM #1OPMember
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
-
26th Aug 2011, 01:23 PM #2Respected DeveloperWebsite's:
wrzc.orgIt'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
-
26th Aug 2011, 01:28 PM #3OPMember
I'll try. Thank you! Reputation added.
-
26th Aug 2011, 01:32 PM #4MemberWebsite's:
zomgbbqpizza.com evilddl.com scenemarket.org
-
26th Aug 2011, 03:30 PM #5OPMember
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>
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>
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
-
26th Aug 2011, 03:38 PM #6Respected DeveloperWebsite's:
wrzc.orgOn 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(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>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
-
26th Aug 2011, 03:55 PM #7OPMember
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
-
26th Aug 2011, 04:12 PM #8Respected DeveloperWebsite's:
wrzc.orgAh 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
-
26th Aug 2011, 04:42 PM #9OPMember
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'] ==
-
26th Aug 2011, 09:33 PM #10MemberWebsite's:
eiswebhosting.com mastddl.comTRY 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(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>
Host Images FREE no delete
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
WCDDL backlink module
By ImmOr7aL in forum Webmaster ResourcesReplies: 1Last Post: 10th Sep 2011, 06:46 PM -
[Hiring] RSS Feed autoposting module in WCDDL
By kitty in forum Completed TransactionsReplies: 0Last Post: 27th Aug 2011, 06:20 AM -
[Selling] WCDDL v2 Module - Instant Whitelist
By gtaclub in forum Completed TransactionsReplies: 0Last Post: 21st Aug 2011, 03:52 AM -
How to get WCDDL report module to work v2?
By Benzoman in forum Technical Help Desk SupportReplies: 3Last Post: 24th Jan 2010, 12:31 AM -
Affiliate Links [WCDDL Module]
By Plutost in forum Webmaster ResourcesReplies: 5Last Post: 29th Nov 2008, 05:25 PM
themaCreator - create posts from...
Version 3.45 released. Open older version (or...