First pass at adding key files
This commit is contained in:
30
site/slowtwitch.com/cgi-bin/articles/admin/cron/expiry_notify.pl
Executable file
30
site/slowtwitch.com/cgi-bin/articles/admin/cron/expiry_notify.pl
Executable file
@ -0,0 +1,30 @@
|
||||
#!/usr/local/bin/perl
|
||||
# ==================================================================
|
||||
# Gossamer Links - enhanced directory management system
|
||||
#
|
||||
# Website : http://gossamer-threads.com/
|
||||
# Support : http://gossamer-threads.com/scripts/support/
|
||||
# CVS Info : 087,071,086,086,085
|
||||
# Revision : $Id: expiry_notify.pl,v 1.4 2005/04/14 07:48:46 brewt Exp $
|
||||
#
|
||||
# Copyright (c) 2001 Gossamer Threads Inc. All Rights Reserved.
|
||||
# Redistribution in part or in whole strictly prohibited. Please
|
||||
# see LICENSE file for full details.
|
||||
# ==================================================================
|
||||
|
||||
use strict;
|
||||
use lib '/var/home/slowtwitch/slowtwitch.com/cgi-bin/articles/admin';
|
||||
use Links qw/$CFG/;
|
||||
|
||||
$| = 1;
|
||||
local $SIG{__DIE__} = \&Links::fatal;
|
||||
Links::init('/var/home/slowtwitch/slowtwitch.com/cgi-bin/articles/admin');
|
||||
|
||||
main();
|
||||
|
||||
sub main {
|
||||
#-----------------------------------------------------------------
|
||||
#
|
||||
require Links::Payment;
|
||||
Links::Payment::expiry($CFG->{payment}->{expiry_notify});
|
||||
}
|
29
site/slowtwitch.com/cgi-bin/articles/admin/cron/most_popular.pl
Executable file
29
site/slowtwitch.com/cgi-bin/articles/admin/cron/most_popular.pl
Executable file
@ -0,0 +1,29 @@
|
||||
#!/usr/local/bin/perl
|
||||
# ==================================================================
|
||||
# Gossamer Links - enhanced directory management system
|
||||
#
|
||||
# Website : http://gossamer-threads.com/
|
||||
# Support : http://gossamer-threads.com/scripts/support/
|
||||
# CVS Info : 087,068,085,094,083
|
||||
# Revision : $Id: expiry_notify.pl,v 1.4 2005/04/14 07:48:46 brewt Exp $
|
||||
#
|
||||
# Copyright (c) 2001 Gossamer Threads Inc. All Rights Reserved.
|
||||
# Redistribution in part or in whole strictly prohibited. Please
|
||||
# see LICENSE file for full details.
|
||||
# ==================================================================
|
||||
|
||||
use strict;
|
||||
use lib '/var/home/slowtwitch/slowtwitch.com/cgi-bin/articles/admin';
|
||||
use Links qw/$CFG $DB/;
|
||||
|
||||
$| = 1;
|
||||
local $SIG{__DIE__} = \&Links::fatal;
|
||||
Links::init('/var/home/slowtwitch/slowtwitch.com/cgi-bin/articles/admin');
|
||||
|
||||
main();
|
||||
|
||||
sub main {
|
||||
#-----------------------------------------------------------------
|
||||
#
|
||||
print Links::user_page('most_popular.html',{});
|
||||
}
|
Reference in New Issue
Block a user