Results 11 to 20 of 152
-
19th Jan 2012, 01:15 AM #11Member
V1.0 jomasaco - site name arrow up
/*
Install
index.php
FIND
$downloads->query = str_replace('-', ' ', $downloads->query);
AFTER ADD
$downloads->siteInfo = true;
FIND
<td>Views</td>
CHANGE TO
<td>Views</td><td>Provider</td>
FIND
<td><?php echo $row->views; ?></td>
AFTER ADD
<td><?php echo $row->arrowup ?></td>
*/
Code:https://rapidshare.com/files/2430555014/wcddl_siteuparrow.php
-
20th Jan 2012, 09:54 AM #12MemberWebsite's:
wscripts.net damnlolscript.com lulzjet.comMr Happy can i post the mods to my blog? with credits to this post .... or another site if you want
-
20th Jan 2012, 10:42 AM #13OPRespected DeveloperWebsite's:
wrzc.orgOf course. The only thing you need to be aware of is updating the posts. For example I know the noxxx module has an issue with a new module jomasaco is working on and the buttons module doesn't save the seo stuff which I'll fix over the weekend along with releasing some new ones.
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
-
24th Jan 2012, 11:05 PM #14Member
time_added Today/Yesterday/Date ex(2012-01-22)
PHP Code:<?php
/*BEGIN_INFO
V1.0 jomasaco - Today/Yesterday/Y-m-d(2012-01-22).
END_INFO*/
if(!defined("WCDDL_GUTS"))
exit;
$modEnabled = true; //Change to false to turn it off
function todayesterday($rows) {
foreach($rows as $row) {
if(date("Y-m-d") == date("Y-m-d",strtotime($row->time_added))) {
$row->time_added = "Today";
} elseif(date("Y-m-d",strtotime("yesterday")) == date("Y-m-d",strtotime($row->time_added))) {
$row->time_added = "Yesterday";
} else {
$row->time_added = date("Y-m-d",strtotime($row->time_added));
}
}
}
if($modEnabled)
Core::load()->hook('DownloadsGetRows', 'todayesterday');
PHP Code:<?php
/*BEGIN_INFO
V1.1 jomasaco - Today/Yesterday/Time ago.
END_INFO*/
if(!defined("WCDDL_GUTS"))
exit;
$modEnabled = true; //Change to false to turn it off
function todayesterday($rows) {
foreach($rows as $row) {
if(date("Y-m-d") == date("Y-m-d",strtotime($row->time_added))) {
$row->time_added = "Today";
} elseif(date("Y-m-d",strtotime("yesterday")) == date("Y-m-d",strtotime($row->time_added))) {
$row->time_added = "Yesterday";
} else {
$date2 = time();
$blocks = array(
array('name'=>'year','amount' => 60*60*24*365),
array('name'=>'month','amount' => 60*60*24*31),
array('name'=>'day','amount' => 60*60*24)
);
$diff = abs(strtotime($row->time_added)-$date2);
$result = array();
foreach($blocks as $block)
{
if ($diff/$block['amount'] >= 1)
{
$amount = floor($diff/$block['amount']);
if ($amount>1) {$plural='s';} else {$plural='';}
$result[] = $amount.' '.$block['name'].$plural;
$diff -= $amount*$block['amount'];
}
}
$row->time_added = implode(' ',$result).' ago';
}
}
}
if($modEnabled)
Core::load()->hook('DownloadsGetRows', 'todayesterday');
-
25th Jan 2012, 09:55 PM #15OPRespected DeveloperWebsite's:
wrzc.org
Easy to Install and Modify Options via the Plugin Manager
Queued Downloads
Info
This module allows you to sort the queue by various settings. You can sort them by rating, date, site, last submitted or Random. You can record rejected downloads and have it automatically check for valid titles. The queue also shows you how many queued submits are remaining for each rating.
In the settings you can add words to highlight in the titles which helps you find invalid title.
Download
https://rapidshare.com/files/4040479...ddl_queued.php
Change Log:
2nd Feb - Fixed bug where some sites don't have rating system.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
-
25th Jan 2012, 10:37 PM #16OPRespected DeveloperWebsite's:
wrzc.org
Easy to Install and Modify Options via the Plugin Manager
Blacklist Websites Page
Info
Show the Blacklisted websites and the reason they were blacklisted. If you have my ACP Module installed that lets you ban for a period of time it will also show when a site will be unbanned. The module uses the page.php file which is the same as the buttons module. This means you don't have to go editing loads of files if you ever change theme and it has full SEO incorporated.
Download
https://rapidshare.com/files/3383253582/blacklist.zipTutorial 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 Jan 2012, 12:28 AM #17OPRespected DeveloperWebsite's:
wrzc.org
DCMA Page
Info
I know your thinking why the hell would I need a module for a DCMA Page but it's to show how you can use a module to incorporate info into your site making it easy to update as you've only the page.php file to modify for a load of different modules and custom pages.
Download
https://rapidshare.com/files/1714093025/dcma-page.zipTutorial 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 Jan 2012, 12:38 PM #18MemberWebsite's:
WarezEurope.comreally nice work guys
-
27th Jan 2012, 06:30 PM #19Member
Can't wait to test out the DMCA and banned site modules!
I'm having trouble with the plugin manager though. It doesn't show that there are any other modules, so I can't install any unless I go to their hard install link.
-
28th Jan 2012, 04:48 AM #20BannedWebsite's:
LinkDDL.com DDLShack.net IhateDowntime.co@Mr Happy found an error with the Admin Protection.
I was getting an cannot modify header error when logging out.
If anyone else gets it open up the wcddl_adminProtection.php file and search for: (Line 86)
PHP Code:header("Location: index.php");
Save it and error should be gone.
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
WCDDL - Development How-To (Modules, Hooks, etc)
By JmZ in forum Web Development AreaReplies: 19Last Post: 25th Jan 2014, 09:09 AM -
WCDDL Modules
By Peach in forum Forum and DDL DiscussionReplies: 3Last Post: 21st Jun 2011, 01:19 PM -
Ultimate WordPress Free Plugins Thread !-Sharing top plugins.
By alex17 in forum Webmaster ResourcesReplies: 3Last Post: 2nd Jun 2011, 04:05 PM -
2x Custom modules, black/whitelist WcDDL
By Chris2k in forum Webmaster ResourcesReplies: 0Last Post: 21st May 2011, 01:01 AM -
Best WCDDL plugins
By bunnny in forum Forum and DDL DiscussionReplies: 25Last Post: 7th Apr 2011, 06:56 PM
themaPoster - post to forums and...
Version 5.22 released. Open older version (or...