Author |
Topic  |
|
LiL•MiSs•bLaZeR
Junior Member
 
United Kingdom
168 Posts |
Posted - 28 February 2004 : 10:58:31
|
OK I downloaded the one file inc_recentlyseen.asp i noticed there was only short intructions on the site i downloaded it on how to install it and i dont understand it mreally it says...
Installation Instructions: Include the following line in a page:
<!--#INCLUDE FILE="inc_recentlyseen.asp" -->
The inc_recentlyseen.asp file includes the following sub:
sub DisplayRecentlySeen(intNrOfPeople,intRecentlyStyle,strRecentlyMode)intNrOfPeople ...... the number of members you want to displayintRecentlyStyle ... how the members are displayed Allowed values: 0 - displays members in a row 1 - makes a break after each memberincRecentlyMode .... Defines how the time since last visit is displayed Allowed values: "simple" - only "x days", "x hours" or "x minutes" is displayed "extended" - "x days, y hours, x minutes" is displayed
Now call the sub wherever you want the table to be displayed like this:
Call DisplayRecentlySeen(5,1,"simple")
So I put '<!--#INCLUDE FILE="inc_recentlyseen.asp" -->' into my default.asp page but I have no idea where to put 'Call DisplayRecentlySeen(5,0,"simple")'.
I tried just putting it into the default.asp but it made the statistics all messed up it moved over to the right and everything so I just took it back out. I'm not that great working with the coding so could someone tell me where I could put it up? |
Edited by - LiL•MiSs•bLaZeR on 28 February 2004 15:14:34 |
|
PeeWee.Inc
Senior Member
   
United Kingdom
1893 Posts |
Posted - 28 February 2004 : 12:40:14
|
I've not seen or used this MOD so, i'm not too sure.
You could try this:
if strShowStatistics = "1" then WriteStatistics end if
edit that to
if strShowStatistics = "1" then WriteStatistics Call DisplayRecentlySeen(5,1,"simple") end if |
De Priofundus Calmo Ad Te Damine |
 |
|
LiL•MiSs•bLaZeR
Junior Member
 
United Kingdom
168 Posts |
Posted - 28 February 2004 : 13:53:37
|
ok it worked but now my birthday thing has moved over to the right side :s how could i make the birthday thing displayed as the one you helped me with |
 |
|
LiL•MiSs•bLaZeR
Junior Member
 
United Kingdom
168 Posts |
|
LiL•MiSs•bLaZeR
Junior Member
 
United Kingdom
168 Posts |
Posted - 28 February 2004 : 14:05:57
|
ok im just gonna put a picture up of it cause it looks bad and i dont want members to have to use it like this until i get a response...

The word Birthdays is also at the side further up i didnt want the picture to be massive so i never had it in |
 |
|
OneWayMule
Dev. Team Member & Support Moderator
    
Austria
4969 Posts |
|
LiL•MiSs•bLaZeR
Junior Member
 
United Kingdom
168 Posts |
Posted - 28 February 2004 : 14:35:55
|
I want everything to be like the active users and statistics.. with a gap at the front if you get me. So it all looks right together. |
 |
|
LiL•MiSs•bLaZeR
Junior Member
 
United Kingdom
168 Posts |
Posted - 28 February 2004 : 14:37:04
|
ok will do... |
 |
|
LiL•MiSs•bLaZeR
Junior Member
 
United Kingdom
168 Posts |
|
LiL•MiSs•bLaZeR
Junior Member
 
United Kingdom
168 Posts |
Posted - 28 February 2004 : 15:13:45
|
So do you know what I could change and where to have my 'birthdays' and 'recently seen' set as the 'active users' and 'statistics' are? |
 |
|
LiL•MiSs•bLaZeR
Junior Member
 
United Kingdom
168 Posts |
Posted - 28 February 2004 : 16:56:11
|
God I need help I wish I knew how to sort it |
 |
|
OneWayMule
Dev. Team Member & Support Moderator
    
Austria
4969 Posts |
Posted - 28 February 2004 : 19:47:27
|
Find the following code in your default.asp (lines 40-47):<!--#INCLUDE FILE="config.asp"-->
<!--#INCLUDE FILE="inc_func_secure.asp" -->
<!--#INCLUDE FILE="inc_sha256.asp"-->
<!--#INCLUDE FILE="inc_header.asp" -->
<!--#INCLUDE FILE="inc_func_member.asp" -->
<!--#INCLUDE FILE="inc_moderation.asp" -->
<!--#INCLUDE FILE="inc_subscription.asp" -->
<!--#INCLUDE FILE="inc_birthdays.asp" --> and add the following code right below it:<!--#INCLUDE FILE="inc_recentlyseen.asp" --> so it looks like:<!--#INCLUDE FILE="config.asp"-->
<!--#INCLUDE FILE="inc_func_secure.asp" -->
<!--#INCLUDE FILE="inc_sha256.asp"-->
<!--#INCLUDE FILE="inc_header.asp" -->
<!--#INCLUDE FILE="inc_func_member.asp" -->
<!--#INCLUDE FILE="inc_moderation.asp" -->
<!--#INCLUDE FILE="inc_subscription.asp" -->
<!--#INCLUDE FILE="inc_birthdays.asp" -->
<!--#INCLUDE FILE="inc_recentlyseen.asp" -->
Find the following code in your default.asp (lines 566-574):%>
<!--#include file="inc_activeusers.asp"-->
<%
%>
<!--#INCLUDE FILE="inc_recentlyseen.asp" -->
<%
if strShowStatistics = "1" then
WriteStatistics
end if and remove the red code. Finally replace your inc_recentlyseen.asp with the file in this zip file, this one is designed to work with the table on default.asp |
My MODs: Birthdays - Custom Policy - F.A.Q. Administration - Forum Rules - Guestbook Links Manager - MyOwnGoogle - Profile Views - Search Log - WebSearch
Useful stuff: Forum and MOD Installation - MOD Installation Guide - Snitz v3.4.05 Readme - Free ASP Hosts - Support Snitz
|
 |
|
LiL•MiSs•bLaZeR
Junior Member
 
United Kingdom
168 Posts |
Posted - 28 February 2004 : 19:58:02
|
Thanks! So its just the birthday thing I need to sort out like the other then they are all the same. |
 |
|
|
Topic  |
|