Printer Friendly Version Print this thread
Email this thread to a friend eMail this thread to a friend
Related Forum Posts
Featured Web Site Template

Hundreds More at Free Site Templates.com!

Web Site Partners
Sponsored Links
Jet City Software
 
Whos Here ?
There are 0 guests and 2 members in the forums right now.
Reflects user activity within the last 5 minutes
Member Message

razsports
Joined: May 15, 2004
# Posts: 47

View the profile for razsports Send razsports a private message

Posted: 05/11/2005 09:09 pm
Edit Message Delete Message Reply to this message

I bought this script over two(2) years ago, including upgrades. But seems to me they don't upgrade. It was over a year ago I left suggestions and they asked, still nothing new has been added. I finally have the time to design and promote my site. So I am basically looking for help to add onto the affiliate coding of this script. If someone could help me, I am willing to advertise their website and work on my website; which is ranked well with google and starting to hit websites and soon press releases.

If interested, please email me or AIM me at Bigcool23. Thanks



razsports
Joined: May 15, 2004
# Posts: 47

View the profile for razsports Send razsports a private message

Posted: 06/02/2005 12:55 am
Edit Message Delete Message Reply to this message

Hi,

I have this search engine script that I'd like to edit. I'd love to add to the affiliate part of the script as well as the admin.

1. Affiliate part of script: I'd like to add to where
affiliates can earn points for posting my search box on their site and the points added at end of each month.

2. Affiliate part of script: Option to turn the points in for cash or items: $50 would be 50 points instead of $50. 50 points would equal to $20.00

Here is the affiliate coding as is:

#1 = Search
#2 = Click
#3 = New Sign-up Referral
#4 = Deposit
#5 = Two-tier percentage

sub afflog
{
my ($u, $type, $payamount, $other, $dir) = @_;
my ($afound) = 0;

if ($dir .= '') { $dir .= '/' }

if ($type == 1 && !(-e "$accounts_dir/$u"wink)
{
$info{'USERNAME'} = $u;
&dotemplate('error_noaffiliate.tpl');
exit;
}

$logip = "$ENV{'REMOTE_ADDR'}";
$file = "$dir$accounts_dir/$u/logs/aff/$year-$realmonth-$dayofmonth.aff";

if ($type == 1 $type == 2)
{
if ($settings{'affiliate_unique'})
{
open(DATA, $file);
flock (DATA,$LOCK_SH);
while ( <DATA> )
{
if($_ =~ /^$type&&$logip&&/) { $afound = 1; last; }
}
flock (DATA,$LOCK_UN);
close(DATA);
}
}
if(!$afound)
{
&writepayment($file, $type, $logip, $payamount, $other)
&changebalance($u, $payamount);

if ($settings{'affiliate_aff_perc'} > 0)
{
$payamount = &makefloat($settings{'affiliate_aff_perc'}*$payamount/100);
if ($payamount > 0)
{
&readuser($u);
if ($user{'referrer'} ne '' && -e "$accounts_dir/$user{referrer}"wink
{
$file = "$dir$accounts_dir/".$user{'referrer'}."/logs/aff/$year-$realmonth-$dayofmonth.aff";
&writepayment($file, 5, $logip, $payamount, $u);
&changebalance($user{'referrer'}, $payamount);
}
}
}
}
}

sub writepayment
{
my($f, $t, $l, $p, $u) = @_;
open(DATA,">>$f"wink;
flock(DATA, $LOCK_EX);
print DATA "$t&&$l&&$p&&$un";
flock(DATA, $LOCK_UN);
close(DATA);
}

1;

----------------------------------------------------

3. Admin. part of script: allow affiliate(which would be me) to either accept or reject affiliates. If accepted the affiliate starts up. If rejected no points are tracked/given.

4. Admin. part of script: Allow Admin. to receive emails letting them know an advertise or potential affiliate partner have signed up.

5. Admin part of script: allow admin. to set $$$ to points and set the points options meaning $50 would really be 50 points, which equals $20.00

Coding for Admin.cgi


if ($ENV{'SERVER_SOFTWARE'} =~ /microsoft/i)
{
$path = $ENV{'PATH_TRANSLATED'};
$path =~ /^(.*)\[^\]*$/;
$path = $1;
chdir $path;
}

$ssversion = '4.34';

use CGI;
use CGI::Carp qw/fatalsToBrowser/;

require 'include/functions.cgi';

$cgi = new CGI;

&loadsettings;
&loadstrings('general');
&loadstrings('admin');

if ($settings{'debug'}) { open(DEBUG, ">$data_dir/debug.dat"wink }

$action = $cgi->param('action');
$sub = $cgi->param('sub');

&checkpass;

$action = 'summary' if ($action eq '');

if ($access eq 'f')
{
if ($action eq 'email' && $sub eq 'list') { require 'include/admin_email.cgi' }
if ($action eq 'misc' && $sub eq 'backup' && $cgi->param('method') == 2 ) { require 'include/admin_misc.cgi' }

&printhead;
&printmenu if ($action ne 'goto');

if ($action eq 'finance') { require 'include/admin_finance.cgi' }
elsif ($action eq 'email') { require 'include/admin_email.cgi' }
elsif ($action eq 'misc') { require 'include/admin_misc.cgi' }
elsif ($action eq 'access') { require 'include/admin_access.cgi' }
elsif ($action eq 'members') { require 'include/admin_members.cgi' }
elsif ($action eq 'goto') { &goto }
elsif ($action eq 'register') { &register }
elsif ($action eq 'search') { require 'include/admin_search.cgi' }
elsif ($action eq 'settings') { require 'include/admin_settings.cgi' }
elsif ($action eq 'templates') { require 'include/admin_templates.cgi' }
else { require 'include/admin_summary.cgi' }

&printfoot;
}
else
{
&printhead;
&printmenu;
require 'include/admin_summary.cgi';
&printfoot;
}

exit;

sub checkpass
{
if ($cgi->param('login'))
{
$user = $cgi->param('user');
$pass = $cgi->param('pass');
}
elsif ($cgi->cookie('ssadminuser') ne '')
{
$user = &Decrypt($cgi->cookie('ssadminuser'),$encryptkey,'asdfhzxcvnmpoiyk');
$pass = &Decrypt($cgi->cookie('ssadminpass'),$encryptkey,'asdfhzxcvnmpoiyk');
}

if ($user eq '' $pass eq '') { &printlogin('') }

open(DATA, "$data_dir/admin.data"wink;
flock(DATA, $LOCK_SH);
$count = 0;
$epass = &Encrypt($pass, $adminkey,'asdfhzxcvnmpoiyk');
my($ruser) = &regescape($user);
my($rpass) = &regescape($epass);
while ( <DATA> )
{
$count++;
chomp;
if ($_ =~ /^$ruser&&$rpass&&(.{1})&&(.*)/i )
{
$access = $1;
$ip = $2;
$found = 1;
last;
}
}
flock(DATA, $LOCK_UN);
close(DATA);

if ($count == 0) { $access = 'f' }
elsif (!$found) { &printlogin($string{'invalid_login'}) }

if ($ip ne '')
{
($ip1, $ip2, $ip3, $ip4) = split('.', $ENV{'REMOTE_ADDR'}, 4);
if ($ip ne '*' &&
$ip !~ /^$ip1.*/ &&
$ip !~ /^$ip1.$ip2.*/ &&
$ip !~ /^$ip1.$ip2.$ip3.*/ &&
$ip ne $ENV{'REMOTE_ADDR'} ) { &printlogin($string{'invalid_ip'}) }
}

push @cookies, $cgi->cookie(-name=>'ssadminuser', -value=>&Encrypt($user,$encryptkey,'asdfhzxcvnmpoiyk'));
push @cookies, $cgi->cookie(-name=>'ssadminpass', -value=>&Encrypt($pass,$encryptkey,'asdfhzxcvnmpoiyk'));
}

sub startcell
{
print <<EOF;
<tr bgcolor="#B8B8B8">
<td>
<p>&nbsp;</p>
EOF
if ($#titles < 0) { return }
print '<p><table border=0 cellpadding=1 cellspacing=0>';
for $i (0..$#titles)
{
$what = $what[$i];
$thing = '-';
if ($what == 0) { $thing = '' }
print "<tr><td nowrap valign="top">&nbsp; &nbsp; &nbsp; $thing</td><td valign="top">";
if ($what == 1)
{
if ($links[$i] eq $sub) { print "<b>$titles[$i]</b>" }
else { print "<a href="admin.cgi?action=$action&sub=$links[$i]">$titles[$i]</a>" }
}
elsif ($what == 2) { print "$titles[$i]" }
elsif ($what == 3)
{
if ($links[$i] ne '') { print "<a href="$links[$i]">$titles[$i]</a>" }
else { print "<b>$titles[$i]</b>" }
}
elsif ($what == 4)
{
($link) = split('', $links[$i], 2);
if ($links[$i] =~ /$sub/ && $sub ne '' ) { print "<b>$titles[$i]</b>" }
else { print "<a href="admin.cgi?action=$action&sub=$link">$titles[$i]</a>" }
}
if ($descrips[$i] ne '') { print " - $descrips[$i]" }
print "</td></tr>n";
}
print '</table></p>';
}

sub printmenu
{
my @links = ('summary', 'members', 'finance','settings', 'templates', 'search',
'access', 'email', 'misc');
my @accesslevel = (1, 0, 0, 0, 0, 0, 0, 0, 0);
my $color = 255;

print "<table width="100%" border=0 cellpadding=5 cellspacing=0><tr>n";
for $i (0..$#links)
{
$bgcolor = sprintf("#4040%x", $color);

if (($accesslevel[$i] == 0) && ($access eq 'l'))
{
print "<td align="center" bgcolor="$bgcolor" class="top">".$string{"main_menu_$links[$i]"}."</td>n";
}
else
{
if ($action eq $links[$i])
{
print "<td align="center" bgcolor="$bgcolor" class="current">".$string{"main_menu_$links[$i]"}."</td>n";
}
else
{
print "<td align="center" bgcolor="$bgcolor"><a href="admin.cgi?action=$links[$i]" class="top">".$string{"main_menu_$links[$i]"}."</a></td>n";
}
}
$color -= 16;
}
print "</tr></table></td></tr>n";
}

sub printlogin
{
my ($msg) = @_;

&printhead(1, $msg);

print <<EOF;

<form method="post" action="admin.cgi">
<table border=1 cellpadding=6 cellspacing=1 bgcolor="#FFFFFF" width="100%">
<tr bgcolor="#404090"><td class="top" align="center">$string{'login_title'}</td></tr>

<tr><td bgcolor="#808080">
<table border=0 cellpadding=0 cellspacing=2 width="100%">
<tr bgcolor="#808080"><td>$string{'username'}:</td><td><input type="text" name="user" value="$user" size=15></td></tr>
<tr bgcolor="#808080"><td>$string{'password'}:</td><td><input type="password" name="pass" value="$pass" size=15></td></tr>
</table>
</td></tr>

<tr bgcolor="#808080"><td align="center"><input type="submit" value="$string{'login_submit'}"></td></tr>
</table>

<input type="hidden" name="login" value="1">
</form>
EOF
&printfoot;
exit;
}

sub printhead
{
my ($val, $msg) = @_;
if ($val) { $width=200 }
else { $width = 750 }

if ($msg ne '') { $msg = "<tr><td class="mainerror" align="center">$msg</td></tr><tr><td>&nbsp;</td></tr>" }

print $cgi->header(-cookie=>[@cookies]);
print <<EOF;
<html>
<head>
<script language="JavaScript">
<!--
function CheckAll() {
var i, e;
for (i=0;i<document.theForm.elements.length;i++) {
e = document.theForm.elements;
if ((e.name != 'all') && (e.type=='checkbox')) {
e.checked = document.theForm.all.checked;
}
}
}

function submitonce(theform){
//if IE 4+ or NS 6+
if (document.alldocument.getElementById) {
//screen thru every element in the form, and hunt down "submit" and "reset"
for (i=0;i<theform.length;i++){
var tempobj=theform.elements
if(tempobj.type.toLowerCase()=="submit"tempobj.type.toLowerCase()=="reset"wink
//disable em
tempobj.disabled=true
}
}
}
// -->
</script>
<style type="text/css">
<!--
body, td { font-family: Arial, sans-serif; font-size: 12px }
.balance { color: #90D090; font-weight: bold }
.error { color: #FFFFFF; font-weight: bold }
.mainerror { color: #0000FF; font-weight: bold }
.warning { color: #5020FF; font-weight: bold }
.top { color: #FFFFFF; font-weight: bold }
a { color: #2020C0; text-decoration: none }
a:hover { text-decoration: underline }
a.top { color: #FFFFFF; font-weight: bold; text-decoration: none }
a.top:hover { text-decoration: underline }
.small { font-size: 10px }
.current { color: #F0C0C0; font-weight: bold}
-->
</style>
<title>$string{'main_title'}</title>
</head>
<body bgcolor="#D0D0FF">
<table width=800 cellpadding=0 cellspacing=0 border=0>
<tr><td><b>$string{'main_title'} - <i>$settings{'sitetitle'}</i></b></td></tr>
<tr><td>&nbsp;</td></tr>
<tr><td>&nbsp;</td></tr>
$msg
<tr><td align="center">

<table width=$width border=1 cellpadding=0 cellspacing=1 bgcolor="#FFFFFF">
<tr><td>

EOF
}

sub printfoot
{
print <<EOF;

</td></tr>
</table>

</td></tr>
<tr><td>&nbsp;</td></tr>
<tr><td align="center" class="small">$string{'script_by'}</td></tr>
</table>
</body>
</html>
EOF
}

sub goto
{
$goto = $cgi->param('goto');
print <<EOF;
<META HTTP-EQUIV=REFRESH CONTENT="1; URL=$goto">
<center><p>Redirecting you to the desired page...</p>
<p><a href="$goto">Continue to $goto</a></p></center>
EOF
}

sub register
{
if ($settings{'payment_dir'} eq '' $settings{'payment_url'} eq '')
{
$message = $string{'save_payment_info'};
require 'include/admin_settings.cgi';
return;
}

eval 'require "$settings{payment_dir}/include.cgi"';
if ($settings{'debug'}) { print DEBUG "require "$settings{payment_dir}/include.cgi"n" }
if ($@ ne '')
{
$message = $string{'register_bad_dir'};
$message =~ s/<<ERROR>>/<br>$@/;
require 'include/admin_settings.cgi';
return;
}
$payment_id = $settings{'payment_id'};
if ($payment_id !~ /^SS/) { $payment_id = 'SS40' }
&payment_init($settings{'payment_dir'}, $payment_id, $settings{'payment_url'});
$result = &payment_register($payment_id, "Smart Search v$ssversion", $settings{'server_path'}, $settings{'server_path'}.'/include/payment.cgi');
$message = $string{"register_$result"};
$settings{'payment_id'} = $payment_id;
&savesettings;
require 'include/admin_settings.cgi';
}


Note: If anyone is willing to help I could add your site URL to my forums.


You are not permitted to post messages in this forum or topic, because of one or more of the following reasons:
  1. You have not yet logged in, or registered properly as a member
  2. You are a member, but no longer have posting rights.
  3. This is a private forum, for which you do not have permissions.

If you are a recent member, it's possible that you simply have not yet confirmed your account. Please check your email for a message entitled 'JimWorld Forums: Confirm Your Account' and follow the instructions contained within.

If you cannot find this message, click here to Re-Send it.

If you are still experiencing problem, please read the Login Assistance Article for some advice on what may be causing your login not to work properly.

Switch to Advanced Editor and ... Create a New Topic or Reply to this Thread

New posts Forum is locked
© 1995  ·  iWeb, Inc  ·  DBA JimWorld Productions