Log in

View Full Version : List latest X paid subscribers on Forum Home


tamarian
05-17-2004, 10:00 PM
There's also a vB 3.5 version here: https://vborg.vbsupport.ru/showthread.php?s=&threadid=99049

What this hack does: This hack will list and instantly refresh (when a new subscription is made) a list of the latest X paid subscribers to your forum. It's a nice way of recognizing members who help pay the the forum bills, and encourages others to join.

Demo: http://forum.lowcarber.org

PHP edits:
1. 2 edits in index.php
2. 1 edit in includes/functions.php
3. 2 edits in includes/functions_subscriptions.php

Template edits:
1. 1 new template: thanks
2. 1 edit in FORUMHOME

Installation:

1. In index.php

Find:

'FORUMHOME',

Add after:

'thanks',

Find:

// ### TODAY'S BIRTHDAYS

Add before:

$thanks = $templatecache['thanks'];

2. In include/functions.php

At the end of the file, just before the end/footer stuff,
/*================================================= =====================*\
|| ################################################## ##################
|| # Downloaded: Thu Apr 15th 2004
|| # CVS: $RCSfile: functions.php,v $ - $Revision: 1.967 $
|| ################################################## ##################
\*================================================ ======================*/
?>
add before:

// ###################### thankyou #######################
function thankyou(){
global $DB_site;

// This is the template for usernames
$thanksbit = ' <a href=\"member.php?$session[sessionurl]u=$contributer[userid]\"><font color=\"#228E8E\"><b>$contributer[username]</b></font></a>';

$latestcontributers = $DB_site->query("SELECT username, status,regdate, subscriptionlog.userid
FROM " . TABLE_PREFIX . "subscriptionlog AS subscriptionlog
LEFT JOIN " . TABLE_PREFIX . "user AS user
USING ( userid )
WHERE user.userid = subscriptionlog.userid
AND STATUS = '1'
ORDER BY regdate DESC
LIMIT 5");

$latest_str = '';
while ($contributer = $DB_site->fetch_array($latestcontributers))
{
eval("\$latest_str .= ', ' . \"$thanksbit\";");
}
$latest_str = substr($latest_str , 2);
$latest_str = addslashes($latest_str);
$DB_site->query("UPDATE " . TABLE_PREFIX . "template SET template=\"$latest_str\", template_un=\"$latest_str\" WHERE title='thanks'");
}


Note 1: Change "LIMIT 5" to any number. By default, it will show the latest 5 paid subscribers. If you want to show the latest 3, simply change to "LIMIT 3".
Note2 The template for usernames is in the code. To change the style and colour, edit this line from the code you added to functions.php:
$thanksbit = ' <a href=\"member.php?$session[sessionurl]u=$contributer[userid]\"><font color=\"#228E8E\"><b>$contributer[username]</b></font></a>';


3. In includes/functions_subscriptions.php

Find:

}

// ###################### Start leavesubscription #######################

function delete_user_subscription($subscriptionid, $userid)

Add before (before the bracket):

thankyou();

Find:

}

// ###################### Start getsubscriptionscache #######################
function cache_user_subscriptions()

Add before (before the bracket:

thankyou();

4. Create a new template: thanks

Leave the new template empty

5. Edit the FORUMHOME template

Add $thanks where you want the list of members to appear.

For example, I use this in the stats area of FORUMHOME:

<div>Thanks latest <a href="subscriptions.php">contributing members</a>: $thanks</div>

6. First run To auto fill the list for the first time, you just need to edit an existing subscription, or just wait for the next subscription to arrive.

To auto fill it right now: Simply go to your admin control panel, click on subscriptions, view list, edit any existing subscription, for example, add 1 day to the subscription of a member, and save. You can re-edit to subtract the 1 day if you want.

ryancooper
05-18-2004, 09:13 PM
This looks great! any way to make it work with vbportal?

tamarian
05-18-2004, 09:42 PM
any way to make it work with vbportal?

I think it would be quite easy, but I've never used vbportal.

Let's see if any vbportal expert can suggest the right template edits.

jilly
05-20-2004, 09:19 PM
the top of the template says Warning: Invalid argument supplied for foreach() in /web/forums/includes/functions.php on line 2871

tamarian
05-20-2004, 09:53 PM
the top of the template says Warning: Invalid argument supplied for foreach() in /web/forums/includes/functions.php on line 2871

Could you post what you added to functions.php, and specify which line is 2871.

jilly
05-21-2004, 12:48 AM
this is line 2871 in my functions.php


// ###################### Start bits2array #######################
// takes a bitfield and the array describing the resulting fields
function convert_bits_to_array(&$bitfield, $_FIELDNAMES)
{
$bitfield = intval($bitfield);
$arry = array();
foreach ($_FIELDNAMES AS $field => $bitvalue) {
if ($bitfield & $bitvalue)
{
$arry["$field"] = 1;
}
else

{
$arry["$field"] = 0;
}
}
return $arry;
}


and I added the thank you code right above the end of the file, here:


// ###################### thankyou #######################
function thankyou(){
global $DB_site, $stylevar, $vboptions, $vbphrase;

require_once('./global.php');

$latestcontributers = $DB_site->query("SELECT username, subscriptionlog.userid
FROM " . TABLE_PREFIX . "subscriptionlog AS subscriptionlog
LEFT JOIN " . TABLE_PREFIX . "user AS user
USING ( userid )
WHERE user.userid = subscriptionlog.userid
AND STATUS = '1'
ORDER BY regdate DESC
LIMIT 10");

$latest_str = "";
while ($contributer = $DB_site->fetch_array($latestcontributers))
{
eval ('$latest_str .= ", ' . fetch_template('thanksbit') . '";');
}
$latest_str = substr($latest_str , 2);
$latest_str = addslashes($latest_str);
$DB_site->query("UPDATE " . TABLE_PREFIX . "template SET template=\"$latest_str\", template_un=\"$latest_str\" WHERE title='thanks'");
}

/*================================================= =====================*\
|| ################################################## ##################
|| # Downloaded: 18:53, Tue Apr 27th 2004
|| # CVS: $RCSfile: functions.php,v $ - $Revision: 1.967 $
|| ################################################## ##################
\*================================================ ======================*/
?>

I couldnt post the whole file, it was too big

tamarian
05-21-2004, 01:00 AM
This is strange, as that portion of the code is not related.

Try this: remove the thankyou stuff from the bottom of functions.php (and from functions_subscriptions.php), and see if this still keeps happening. It might be totally unrelated.

rookie7
05-28-2004, 11:07 PM
Great hack! *install*

Bryan Ex
06-02-2004, 09:44 PM
I'd really like to use this but I use a third party script for subscriptions that moves users in and out of a specified usergroup. Is there a way this could query a usergroup ID instead of the subscription logs?

tamarian
06-02-2004, 10:01 PM
I'd really like to use this but I use a third party script for subscriptions that moves users in and out of a specified usergroup. Is there a way this could query a usergroup ID instead of the subscription logs?

But that won't be enough, since there would be no way to determine "last X", since there's no place to keep a record of the date the user changed usergroups by that 3rd party script.

Bryan Ex
06-02-2004, 10:12 PM
You're right. I forgot that there was no date references for usergroups. I'll have to come back to this one I guess once I have some time to play around with it. I'm still trying to restore everything after upgrading to 3.0.1.

kall
06-28-2004, 10:48 PM
I'm getting foreach errors also..

One question: when you say 'before the bracket', do you mean 'before the curly bracket' or 'before the round bracket?'

I currently have:

thankyou();
}

// ###################### Start leavesubscription #######################
function delete_user_subscription($subscriptionid, $userid)
{

and

");
}

thankyou();

}

// ###################### Start getsubscriptionscache #######################
function cache_user_subscriptions()

tamarian
06-28-2004, 11:16 PM
Kall, the "thankyou();" line should be plasced above the quoted code.

The code you posed (the first block) look fine.

If you still have problems, email me the two files and I'll take a look.

tamarian
06-29-2004, 12:53 AM
For those interested, I've had a few emails back and forth with Kall, and he emailed me several of his forum files to investigate.

The conclusion is as follows:

1. The "foreach" warning is a result of another hack, in combination with this hack. The other hack is the "store cash hack". The line numbers reported in the warning is not related to this hack.

2. Despite the warning, both hacks seem to work fine, with no problems, so you can ignore it. :)

Cold Steel
07-04-2004, 11:17 AM
I'm getting errors, too:


Warning: Invalid argument supplied for foreach() in /home/asiansin/public_html/forums/global.php on line 645

Warning: Invalid argument supplied for foreach() in /home/asiansin/public_html/forums/includes/functions.php on line 2895

Warning: Invalid argument supplied for foreach() in /home/asiansin/public_html/forums/includes/functions.php on line 2895

Warning: Invalid argument supplied for foreach() in /home/asiansin/public_html/forums/includes/functions.php on line 2895



Database error in vBulletin 3.0.1:

Invalid SQL: SELECT username, subscriptionlog.userid
FROM subscriptionlog AS subscriptionlog
LEFT JOIN user AS user
USING ( userid )
WHERE user.userid = subscriptionlog.userid
AND STATUS = '1'
ORDER BY regdate DESC
LIMIT 5
mysql error: Column: 'STATUS' in where clause is ambiguous

mysql error number: 1052

Date: Sunday 04th of July 2004 07:16:12 AM
Script: http://forums.asiansinc.com/admincp/subscriptions.php
Referer: http://forums.asiansinc.com/admincp/subscriptions.php?do=adjust&subscriptionlogid=12
Username: Webmaster
IP Address:

I'm unable to edit subscriptions.

I have the ucash/ustore hack installed, as well as the recurring paypal hack.

tamarian
07-04-2004, 11:37 AM
I'm getting errors, too:


I'm unable to edit subscriptions.

I have the ucash/ustore hack installed, as well as the recurring paypal hack. The "foreach" error is not a problem, but the mysql error is a problem. I've made an update to the first post.

You just need to re-do step 2 with this code:


// ###################### thankyou #######################
function thankyou(){
global $DB_site, $stylevar, $vboptions, $vbphrase;

require_once('./global.php');

$latestcontributers = $DB_site->query("SELECT username, status, regdate, subscriptionlog.userid
FROM " . TABLE_PREFIX . "subscriptionlog AS subscriptionlog
LEFT JOIN " . TABLE_PREFIX . "user AS user
USING ( userid )
WHERE user.userid = subscriptionlog.userid
AND STATUS = '1'
ORDER BY regdate DESC
LIMIT 5");

$latest_str = "";
while ($contributer = $DB_site->fetch_array($latestcontributers))
{
eval ('$latest_str .= ", ' . fetch_template('thanksbit') . '";');
}
$latest_str = substr($latest_str , 2);
$latest_str = addslashes($latest_str);
$DB_site->query("UPDATE " . TABLE_PREFIX . "template SET template=\"$latest_str\", template_un=\"$latest_str\" WHERE title='thanks'");
}

Cold Steel
07-04-2004, 12:19 PM
Thanks for the prompt response. Now I'm getting this error:


Database error in vBulletin 3.0.1:

Invalid SQL: SELECT username, status, regdate subscriptionlog.userid
FROM subscriptionlog AS subscriptionlog
LEFT JOIN user AS user
USING ( userid )
WHERE user.userid = subscriptionlog.userid
AND STATUS = '1'
ORDER BY regdate DESC
LIMIT 5
mysql error: You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '.userid
FROM subscriptionlog AS subscription

mysql error number: 1064

Date: Sunday 04th of July 2004 08:19:39 AM
Script: http://forums.asiansinc.com/admincp/subscriptions.php
Referer: http://forums.asiansinc.com/admincp/subscriptions.php?do=adjust&subscriptionlogid=12
Username: Webmaster
IP Address:

assassingod
07-04-2004, 12:35 PM
$latestcontributers = $DB_site->query("SELECT username, status, regdate subscriptionlog.userid


There's a comma missing after regdate, it seems.

tamarian
07-04-2004, 02:29 PM
$latestcontributers = $DB_site->query("SELECT username, status, regdate subscriptionlog.userid


There's a comma missing after regdate, it seems.
Ah, yes. Thanks for the catch!

tamarian
07-04-2004, 02:32 PM
Thanks for the prompt response. Now I'm getting this error:
I've just updated the missing comma as pointed out by assassingod. Give it another try and let me know how it goes.

assassingod
07-04-2004, 02:33 PM
Ah, yes. Thanks for the catch!
No problem:)

Cold Steel
07-04-2004, 06:46 PM
Thanks assassingod and tamarian.

This is my code:

// ###################### thankyou #######################
function thankyou(){
global $DB_site, $stylevar, $vboptions, $vbphrase;

require_once('./global.php');

$latestcontributers = $DB_site->query("SELECT username, status, regdate, subscriptionlog.userid
FROM " . TABLE_PREFIX . "subscriptionlog AS subscriptionlog
LEFT JOIN " . TABLE_PREFIX . "user AS user
USING ( userid )
WHERE user.userid = subscriptionlog.userid
AND STATUS = '1'
ORDER BY regdate DESC
LIMIT 5");

$latest_str = "";
while ($contributer = $DB_site->fetch_array($latestcontributers))
{
eval ('$latest_str .= ", ' . fetch_template('thanksbit') . '";');
}
$latest_str = substr($latest_str , 2);
$latest_str = addslashes($latest_str);
$DB_site->query("UPDATE " . TABLE_PREFIX . "template SET template=\"$latest_str\", template_un=\"$latest_str\" WHERE title='thanks'");
}


And this is my error:


Warning: Invalid argument supplied for foreach() in /home/asiansin/public_html/forums/global.php on line 645

Warning: Invalid argument supplied for foreach() in /home/asiansin/public_html/forums/includes/functions.php on line 2895

Warning: Invalid argument supplied for foreach() in /home/asiansin/public_html/forums/includes/functions.php on line 2895

Warning: Invalid argument supplied for foreach() in /home/asiansin/public_html/forums/includes/functions.php on line 2895

Database error in vBulletin 3.0.1:

Invalid SQL: SELECT username, status, regdate, subscriptionlog.userid
FROM subscriptionlog AS subscriptionlog
LEFT JOIN user AS user
USING ( userid )
WHERE user.userid = subscriptionlog.userid
AND STATUS = '1'
ORDER BY regdate DESC
LIMIT 5
mysql error: Column: 'status' in field list is ambiguous

mysql error number: 1052

Date: Sunday 04th of July 2004 02:44:37 PM
Script: http://forums.asiansinc.com/admincp/subscriptions.php
Referer: http://forums.asiansinc.com/admincp/subscriptions.php?do=adjust&subscriptionlogid=12
Username: Webmaster
IP Address:

tamarian
07-04-2004, 06:51 PM
Thanks assassingod and tamarian.

This is my code:

And this is my error:
O.k., I've made a small change by adding subscriptionlog. prefix, even though it's not ambigious!

Give it another try (just step #2), and let's see how it goes.

Cold Steel
07-04-2004, 07:04 PM
Apparently, mysql still can't get it clear:

Invalid SQL: SELECT username, status, regdate, subscriptionlog.userid
FROM subscriptionlog AS subscriptionlog
LEFT JOIN user AS user
USING ( userid )
WHERE user.userid = subscriptionlog.userid
AND subscriptionlog.status = '1'
ORDER BY subscriptionlog.regdate DESC
LIMIT 5
mysql error: Column: 'status' in field list is ambiguous

tamarian
07-04-2004, 07:24 PM
Apparently, mysql still can't get it clear: Let's try this:


// ###################### thankyou #######################
function thankyou(){
global $DB_site, $stylevar, $vboptions, $vbphrase;

require_once('./global.php');

$latestcontributers = $DB_site->query("SELECT *
FROM " . TABLE_PREFIX . "subscriptionlog AS subscriptionlog
LEFT JOIN " . TABLE_PREFIX . "user AS user
USING ( userid )
WHERE user.userid = subscriptionlog.userid
AND subscriptionlog.status = '1'
ORDER BY subscriptionlog.regdate DESC
LIMIT 5");

$latest_str = "";
while ($contributer = $DB_site->fetch_array($latestcontributers))
{
eval ('$latest_str .= ", ' . fetch_template('thanksbit') . '";');
}
$latest_str = substr($latest_str , 2);
$latest_str = addslashes($latest_str);
$DB_site->query("UPDATE " . TABLE_PREFIX . "template SET template=\"$latest_str\", template_un=\"$latest_str\" WHERE title='thanks'");
}

Cold Steel
07-04-2004, 07:36 PM
That worked. Thanks a ton!

BTW I'm a big anti-carb person myself. :)

tamarian
07-04-2004, 07:52 PM
That worked. Thanks a ton!
That's great to hear. I'm just curious, what versions of PHP and MySQL do you run?

Cold Steel
07-04-2004, 09:32 PM
PHP v4.3.3
MySQL v4.0.18-standard

RapCheck
07-20-2004, 07:53 PM
I'm getting these errors when editing subscription users


Warning: Invalid argument supplied for foreach() in /home/sites/site8/web/b/includes/functions.php on line 2878

Warning: Invalid argument supplied for foreach() in /home/sites/site8/web/b/includes/functions.php on line 2878

Warning: Invalid argument supplied for foreach() in /home/sites/site8/web/b/includes/functions.php on line 2878

I see others have had similar, though I have no mySQL error with it, and the everything seems to work fine updating the subscription. I don't have the store hack or cash hack installed...

I'd just like to know what it means, and if it'll affect anything on my board or subscriptions.

nice hack though, btw.

Bryan Ex
07-20-2004, 08:20 PM
Did you edit functions.php with dreamweaver by chance? If so it's one of a couple of vB3 files it will mess up by changing code on you.

RapCheck
07-28-2004, 07:39 AM
oops, forget to check back

No, I use edit plus

I just upgraded to 3.0.3 and reapplied the hack, and still get the 3 errors when editing subcriptions.

scottct1
10-20-2004, 01:40 PM
I am also getting

Warning: Invalid argument supplied for foreach() in /home/satellit/public_html/includes/functions.php on line 2854

Warning: Invalid argument supplied for foreach() in /home/satellit/public_html/includes/functions.php on line 2854

Any ideas?

nonet
11-17-2004, 03:24 AM
Has anyone been able to get this to work with vbadvanced CMPS?

mikeB
12-06-2004, 10:42 PM
can someone please explain where exaclty "just before the footer stuff" is?

mikeB
12-06-2004, 11:16 PM
well Im getting no errors and Im also getting no subscribers to appear heh

tamarian
12-13-2004, 03:48 PM
can someone please explain where exaclty "just before the footer stuff" is? Meaning just before this at the bottom functions.php

/*================================================= =====================*\
|| ################################################## ##################
|| # Downloaded: Thu Apr 15th 2004
|| # CVS: $RCSfile: functions.php,v $ - $Revision: 1.967 $
|| ################################################## ##################
\*================================================ ======================*/
?>

lasto
12-20-2004, 09:13 PM
well Im getting no errors and Im also getting no subscribers to appear heh
same ere - all seems to be working but nothing shows - weird

Jenta
03-10-2005, 12:28 PM
same ere - all seems to be working but nothing shows - weird
well Im getting no errors and Im also getting no subscribers to appear heh
me too, maybe not compatible with 3.0.7?

if thankyou(); is in functions_subscriptions.php u get a blank screen when after editing a subscribtion though it does actually write the change to the database

so it seems to me that the thankyou function is hanging somehow and ive double and triple checked everything

Jenta
03-11-2005, 11:02 PM
ok its working now!
what happened was since its set to 5, it takes 5 subscriptions for it to kick in
at least thats what i think made it kick on

Mokster
03-13-2005, 01:47 AM
nice hack, could you change it so it shows the lastest new registered users?

Jenta
03-16-2005, 12:45 PM
ok its working now!
what happened was since its set to 5, it takes 5 subscriptions for it to kick in
at least thats what i think made it kick on
i take that back
its still not right
anyone have any luck with this on 3.0.7?

Jenta
03-20-2005, 06:33 PM
heres a simpler solution that works for me every time
its only one user but im sure it can be expanded
https://vborg.vbsupport.ru/showthread.php?p=628284#post628284

tamarian
03-20-2005, 06:51 PM
heres a simpler solution that works for me every time
its only one user but im sure it can be expanded
https://vborg.vbsupport.ru/showthread.php?p=628284#post628284

It is simpler, but it will effect your forum performance, since you add a new query to the index.php page, executed every time the page loads. If your forum does not have heavy traffic, this may not be an issue.

Jenta
03-21-2005, 02:25 AM
yeah i know, my forum is small so it's cool
any chance of looking into why this doesnt work for some
i notice you are running 3.0.1 on ur site
maybe something has changed since then?

tamarian
03-21-2005, 11:23 AM
yeah i know, my forum is small so it's cool
any chance of looking into why this doesnt work for some
i notice you are running 3.0.1 on ur site
maybe something has changed since then?

Yes, we haven't upgraded yet, and probably will wait for a major release before we upgrade.

If you're willing to test this, I think it may work :)

Use this code in functions.php

// ###################### thankyou #######################
function thankyou(){
global $DB_site;

$thanksbit = ' <a href=\"member.php?$session[sessionurl]u=$contributer[userid]\"><font color=\"#228E8E\"><b>$contributer[username]</b></font></a>';

$latestcontributers = $DB_site->query("SELECT username, status,regdate, subscriptionlog.userid
FROM " . TABLE_PREFIX . "subscriptionlog AS subscriptionlog
LEFT JOIN " . TABLE_PREFIX . "user AS user
USING ( userid )
WHERE user.userid = subscriptionlog.userid
AND STATUS = '1'
ORDER BY regdate DESC
LIMIT 5");

$latest_str = '';
while ($contributer = $DB_site->fetch_array($latestcontributers))
{
eval("\$latest_str .= ', ' . \"$thanksbit\";");
}
$latest_str = substr($latest_str , 2);
$latest_str = addslashes($latest_str);
$DB_site->query("UPDATE " . TABLE_PREFIX . "template SET template=\"$latest_str\", template_un=\"$latest_str\" WHERE title='thanks'");
}

Instead of the code in the first post. It uses a hard-coded template instead of the thanksbit, to avoid dealing with fetch template.

Jenta
03-21-2005, 02:57 PM
awesome
Tested on 3.0.7 and the new code works perfect!

Just to make it more clear, you dont need to create the template thanksbit anymore. Delete it by clicking revert if you have it already made. If you use this updated code, skip that step in the current instructions and only create the blank template name thanks. Correct me if I'm wrong.

Thanks a million!

tamarian
03-21-2005, 03:20 PM
awesome
Tested on 3.0.7 and the new code works perfect!


Good to know, I've added the changes to the first post.

Just to make it more clear, you dont need to create the template thanksbit anymore. Delete it by clicking revert if you have it already made. If you use this updated code, skip that step in the current instructions and only create the blank template name thanks. Correct me if I'm wrong.

That is correct :)

jilly
03-23-2005, 01:14 PM
The new code works fine for me now - thanks!!!

oztrack
03-27-2005, 01:06 AM
I want it on my front page as well.

Also when trying to change the colour - i cant get mine to be any different by editing the colour code in functions.php

Please help

jilly
03-30-2005, 04:08 PM
Is there a way to separately show the newest paid subscribers for each level?

For example:

Thanks to the supporting members, here are the newest supporters!
Level A: member1, member2, member3
Level B: member1, member2, member3
Level C: member1, member2, member3

The Realist
03-30-2005, 07:54 PM
Works fine with 3.0.7.

Installed.

sunnycher
04-21-2005, 10:34 AM
tamarian! I love this, thanks so much!

sunnycher
07-13-2005, 04:00 PM
Mine is linking each member but when you click on them it goes to a Page Not Found. How do I correct this? TIA!

tamarian
07-13-2005, 04:44 PM
Mine is linking each member but when you click on them it goes to a Page Not Found. How do I correct this? TIA!

Check the links themselse, and make sure this has the correct link to member.php. It might be due to a portal page? Is that where you're displaying the list?

You probably can display it on a different page, but a small mod may be required. The default is this:
$thanksbit = ' <a href=\"member.php?$session[sessionurl]u=$contributer[userid]\"><font color=\"#228E8E\"><b>$contributer[username]</b></font></a>';

For yours you might need to change it to this:
$thanksbit = ' <a href=\"$vboptions[bburl]/member.php?$session[sessionurl]u=$contributer[userid]\"><font color=\"#228E8E\"><b>$contributer[username]</b></font></a>';

sunnycher
07-13-2005, 04:51 PM
thanks! which file do I change this in?

tamarian
07-13-2005, 04:56 PM
In include/functions.php within the same chunk of code that was added in step #2

sunnycher
07-13-2005, 05:03 PM
I found it, sorry about that.

This is what I see.
This is the link to one of the newest contributors
http://www.littlegreenphotographers.com/"member.php?u=424\" See "s? and the \?
Now if I click on a member that is online this is the link I get without the " and \
http://www.littlegreenphotographers.com/community/member.php?u=71

you think that this is affecting it?

tamarian
07-13-2005, 05:17 PM
I found it, sorry about that.

This is what I see.
This is the link to one of the newest contributors
http://www.littlegreenphotographers.com/"member.php?u=424\" See "s? and the \?
Now if I click on a member that is online this is the link I get without the " and \
http://www.littlegreenphotographers.com/community/member.php?u=71

you think that this is affecting it?

Double-check to make sure you have made the edits correctly. Also check in your vb options in the admincp, is the forum URL set correctly?

sunnycher
07-13-2005, 05:25 PM
I see where the problem is.
First, it has the " and the \ in there but it is also not adding the \community\
in there.
I wouldn't of changed that at all, I just did the cut and pasting.
Is there a place to correct this?

tamarian
07-13-2005, 05:53 PM
I see where the problem is.
First, it has the " and the \ in there but it is also not adding the \community\
in there.
I wouldn't of changed that at all, I just did the cut and pasting.
Is there a place to correct this?

Yes, from the admin panel, for the forum URL setting. If for some reason (due to the portal for example), you do not want to add the /community/ portion to the forum URL, then you can try another modification, change the same line to:

$thanksbit = ' <a href=\"$vboptions[bburl]/community/member.php?$session[sessionurl]u=$contributer[userid]\"><font color=\"#228E8E\"><b>$contributer[username]</b></font></a>';

sunnycher
07-13-2005, 06:08 PM
all fixed! Thank you SO much for your help!!!!!

wacnstac
10-20-2005, 01:53 AM
Any update on how to make this hack with 3.5?

tamarian
10-20-2005, 02:37 AM
Any update on how to make this hack with 3.5?

Are you sure you want it? There are better ones for 3.5 :)

https://vborg.vbsupport.ru/showthread.php?t=91567

wacnstac
10-21-2005, 10:06 PM
tamarian I don't want the hack you posted. I just want the simple hack that displays your last 5 subscribing members. It was much simplier than the hack you linked to. I don't need anything that complicated. I just don't know how to install the 5 latest subscribers hack to 3.5.

Help, has anyone done this on 3.5?!!

tamarian
10-21-2005, 10:59 PM
tamarian I don't want the hack you posted. I just want the simple hack that displays your last 5 subscribing members. It was much simplier than the hack you linked to. I don't need anything that complicated. I just don't know how to install the 5 latest subscribers hack to 3.5.

Help, has anyone done this on 3.5?!!

O.k. a 3.5 version should be a plugin version. If you don't hear from me by next week, feel free to bump this thread :)

wacnstac
10-21-2005, 11:19 PM
Boy will I appreciate that. Thanks.

tamarian
10-22-2005, 09:27 PM
Here you go:

https://vborg.vbsupport.ru/showthread.php?s=&threadid=99049