Movie of the Day service means that you can send traffic to the page
where new movie from one of our sites displays daily, and where all links
are already loaded with your RevSharerID. We strongly recommend you to try
this promotional feature with your traffic as it is known to greatly
improve sales. You do not have to pay hosting fees (we host this service
on our servers), and do not have to search for pics and select them
yourself either. You can simply send traffic and enjoy greater ratios.
Linking codes are displayed below, replace RevSharerID with your actual
ID.
http://pantyhosetales.pantyhoselabs.com/motd/index.php?rev=RevSharerID
To get thumbnails from our Movie of the Day on your server every day
please do the following:
Create file get_motd_thumbs.pl on your server (store it in the same folder
were you wish to get daily thumbnails)
#!/usr/bin/perl
use Net::FTP;
$ftp = Net::FTP->new("pantyhoselabs.com");
$ftp->login("motd_thumbs","get_new_thumbs");
$ftp->binary();
@names=$ftp->ls(".");
foreach $name (@names)
{
$ftp->get($name);
}
$ftp->quit();
make it executalble (for example, chmod 750)
We update pictures every day at 00.00 GMT. You need to launch
get_motd_thumbs.pl through cron at 00:15 GMT.
make new cron task:
crontab -e
15 0 * * * cd /path_to_your_directory; perl get_motd_thumbs.pl
Here instead of 0 insert an hour that matches 00:00 GMT at your server
path_to_your_directory - full path to the directory where
get_motd_thumbs.pl is located
After the script session thumbnails will appear in the same directory
where get_motd_thumbs.pl is located
You can launch this script through the shell as well:
cd /path_to_your_directory
perl get_motd_thumbs.pl
P.S. To launch get_motd_thumbs.pl you need to have Perl Net::FTP module
installed on your server (already available at Ferrohost). |