Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Help Groups for Snitz Forums 2000 Users
 Help: MOD Implementation
 Recenty Seen MOD - Need Help Moving Things
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

LiL•MiSs•bLaZeR
Junior Member

United Kingdom
168 Posts

Posted - 28 February 2004 :  10:58:31  Show Profile
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  Show Profile  Visit PeeWee.Inc's Homepage
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
Go to Top of Page

LiL•MiSs•bLaZeR
Junior Member

United Kingdom
168 Posts

Posted - 28 February 2004 :  13:53:37  Show Profile
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
Go to Top of Page

LiL•MiSs•bLaZeR
Junior Member

United Kingdom
168 Posts

Posted - 28 February 2004 :  13:55:19  Show Profile
http://aa.1asphost.com/allaboutthemusic/forum/

you can see what its like there
Go to Top of Page

LiL•MiSs•bLaZeR
Junior Member

United Kingdom
168 Posts

Posted - 28 February 2004 :  14:05:57  Show Profile
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
Go to Top of Page

OneWayMule
Dev. Team Member & Support Moderator

Austria
4969 Posts

Posted - 28 February 2004 :  14:31:31  Show Profile  Visit OneWayMule's Homepage  Send OneWayMule an ICQ Message
The problem is that the Recently Seen code is not defined to be included in the table on default.asp, but to display display its own table.

Please post a link to a .txt version of your default.asp, and I'll take a look at it.

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
Go to Top of Page

LiL•MiSs•bLaZeR
Junior Member

United Kingdom
168 Posts

Posted - 28 February 2004 :  14:35:55  Show Profile
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.
Go to Top of Page

LiL•MiSs•bLaZeR
Junior Member

United Kingdom
168 Posts

Posted - 28 February 2004 :  14:37:04  Show Profile
ok will do...
Go to Top of Page

LiL•MiSs•bLaZeR
Junior Member

United Kingdom
168 Posts

Posted - 28 February 2004 :  14:38:24  Show Profile
http://aa.1asphost.com/allaboutthemusic/default.txt
Go to Top of Page

LiL•MiSs•bLaZeR
Junior Member

United Kingdom
168 Posts

Posted - 28 February 2004 :  15:13:45  Show Profile
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?
Go to Top of Page

LiL•MiSs•bLaZeR
Junior Member

United Kingdom
168 Posts

Posted - 28 February 2004 :  16:56:11  Show Profile
God I need help I wish I knew how to sort it
Go to Top of Page

OneWayMule
Dev. Team Member & Support Moderator

Austria
4969 Posts

Posted - 28 February 2004 :  19:47:27  Show Profile  Visit OneWayMule's Homepage  Send OneWayMule an ICQ Message
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
Go to Top of Page

LiL•MiSs•bLaZeR
Junior Member

United Kingdom
168 Posts

Posted - 28 February 2004 :  19:58:02  Show Profile
Thanks! So its just the birthday thing I need to sort out like the other then they are all the same.
Go to Top of Page
  Previous Topic Topic Next Topic  
 New Topic  Topic Locked
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 2.38 seconds. Powered By: Snitz Forums 2000 Version 3.4.07