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: General / Classic ASP versions(v3.4.XX)
 Help with several things.
 New Topic  Topic Locked
 Printer Friendly
Previous Page | Next Page
Author Previous Topic Topic Next Topic
Page: of 3

SkaifeyJnr
Starting Member

24 Posts

Posted - 14 May 2002 :  02:15:23  Show Profile  Visit SkaifeyJnr's Homepage
So how do i get the "Printer Friendly" link and the "Email to Friend" link?

Also, i don't have the "Forgot Password" link up top at the login boxes.
Go to Top of Page

RichardKinser
Snitz Forums Admin

USA
16655 Posts

Posted - 14 May 2002 :  02:16:23  Show Profile
see here:

http://forum.snitz.com/forum/topic.asp?TOPIC_ID=25811

download the file that I have a link to in that topic, it will allow you to use e-mail on Brinkster. You will have to have an SMTP server that you can use though. Brinkster does not provide one for you.
Go to Top of Page

SkaifeyJnr
Starting Member

24 Posts

Posted - 14 May 2002 :  02:24:20  Show Profile  Visit SkaifeyJnr's Homepage
what smtp server do i use then?

and what about the "Forgot Passwrd?" link?
Go to Top of Page

Gremlin
General Help Moderator

New Zealand
7528 Posts

Posted - 14 May 2002 :  03:35:39  Show Profile  Visit Gremlin's Homepage
The forgot password link will also appear once you've enabled email.

As for which server you should enter, thats something you need to confirm with your host.

You might want to read a few of the posts in the Help: Mail Configuration forum.


www.daoc-halo.com
Go to Top of Page

SkaifeyJnr
Starting Member

24 Posts

Posted - 14 May 2002 :  05:41:18  Show Profile  Visit SkaifeyJnr's Homepage
can i use my ISP smtp server?

Go to Top of Page

RichardKinser
Snitz Forums Admin

USA
16655 Posts

Posted - 14 May 2002 :  06:04:59  Show Profile
yes.
Go to Top of Page

SkaifeyJnr
Starting Member

24 Posts

Posted - 14 May 2002 :  06:08:53  Show Profile  Visit SkaifeyJnr's Homepage
Np, it still won;t let me enable my email mode. Nor can i select something from the component box
Go to Top of Page

Gremlin
General Help Moderator

New Zealand
7528 Posts

Posted - 14 May 2002 :  07:03:48  Show Profile  Visit Gremlin's Homepage
I registered on your forums yesterday as 'Gremlin' If you set me to Admin briefly I'll take a look at it for you.

www.daoc-halo.com

Edited by - Gremlin on 14 May 2002 07:04:53
Go to Top of Page

SkaifeyJnr
Starting Member

24 Posts

Posted - 14 May 2002 :  07:35:20  Show Profile  Visit SkaifeyJnr's Homepage
ok, when can u take a look? i'll set u to admin now
Go to Top of Page

Gremlin
General Help Moderator

New Zealand
7528 Posts

Posted - 14 May 2002 :  07:49:06  Show Profile  Visit Gremlin's Homepage
Just about to take a look now.

www.daoc-halo.com
Go to Top of Page

Gremlin
General Help Moderator

New Zealand
7528 Posts

Posted - 14 May 2002 :  08:26:17  Show Profile  Visit Gremlin's Homepage
Have you downloaded and installed the files Richard posted a link too earlier this thread ?

If you have and it's still not allowing you to select a component then you'll have to do some code hacking im afraid.

Firstly though, the lost password link requires email as this is how it sends out the password to the user. Email to friend similar issue, no email no can do I'm afraid.

To get the Printer Friendly link working you'll need to edit topic.asp

Find this piece of code (should be around line 687)


if (lcase(strEmail) = "1" and Topic_Status < 2) then
if (mlev <> 0) or (mlev = 0 and strLogonForMail <> "1") then %>
<br>
<a href="JavaScript:openWindow('pop_send_to_friend.asp?url=<% = strForumURL & "link.asp?TOPIC_ID=" & Topic_ID %>')"><img border="0" src="icon_send_topic.gif" height=15 width=15 border=0></a> <a href="JavaScript:openWindow('pop_send_to_friend.asp?url=<% = strForumURL & "link.asp?TOPIC_ID=" & Topic_ID %>')">Send Topic to a Friend</a>
<% end if
if strSubscription > 0 and Cat_Subscription > 0 and Forum_Subscription > 0 then
CheckSubscription "TOPIC", MEMBER_ID, Cat_ID, Forum_ID, Topic_ID, "<br>", " "
end if


%>
<br><a href="JavaScript:openWindow5('pop_printer_friendly.asp?TOPIC_ID=<% =Topic_ID %>')"><img border="0" src="icon_print.gif" width="15" height="15"></a> <a href="JavaScript:openWindow5('pop_printer_friendly.asp?TOPIC_ID=<% =Topic_ID%>')">Printer Friendly</a>
<% end if
end if
%>

</font>
<%
end sub


Replace that with the following (the line I've highlighted is the actual changes, the line has been shifted out of the If then condition so that it doesnt require email to be enabled)

if (lcase(strEmail) = "1" and Topic_Status < 2) then
if (mlev <> 0) or (mlev = 0 and strLogonForMail <> "1") then %>
<br>
<a href="JavaScript:openWindow('pop_send_to_friend.asp?url=<% = strForumURL & "link.asp?TOPIC_ID=" & Topic_ID %>')"><img border="0" src="icon_send_topic.gif" height=15 width=15 border=0></a> <a href="JavaScript:openWindow('pop_send_to_friend.asp?url=<% = strForumURL & "link.asp?TOPIC_ID=" & Topic_ID %>')">Send Topic to a Friend</a>
<% end if
if strSubscription > 0 and Cat_Subscription > 0 and Forum_Subscription > 0 then
CheckSubscription "TOPIC", MEMBER_ID, Cat_ID, Forum_ID, Topic_ID, "<br>", " "
end if


%>

<% end if
end if
%>
<br><a href="JavaScript:openWindow5('pop_printer_friendly.asp?TOPIC_ID=<% =Topic_ID %>')"><img border="0" src="icon_print.gif" width="15" height="15"></a> <a href="JavaScript:openWindow5('pop_printer_friendly.asp?TOPIC_ID=<% =Topic_ID%>')">Printer Friendly</a>

</font>
<%
end sub


You can reset my account on your forum's to just normal again now too.

Hope this helps.

www.daoc-halo.com


Edited by - Gremlin on 14 May 2002 08:31:51
Go to Top of Page

SkaifeyJnr
Starting Member

24 Posts

Posted - 14 May 2002 :  08:30:39  Show Profile  Visit SkaifeyJnr's Homepage
no, what was the link? and also, what is the name of the file i download?

Go to Top of Page

Gremlin
General Help Moderator

New Zealand
7528 Posts

Posted - 14 May 2002 :  08:32:23  Show Profile  Visit Gremlin's Homepage
RichardKinser, he posted a link earlier in this topic for you, give that a try. :)

www.daoc-halo.com
Go to Top of Page

SkaifeyJnr
Starting Member

24 Posts

Posted - 14 May 2002 :  08:42:09  Show Profile  Visit SkaifeyJnr's Homepage
ok, now what is the best mail server i should use?
Go to Top of Page

Gremlin
General Help Moderator

New Zealand
7528 Posts

Posted - 14 May 2002 :  08:52:17  Show Profile  Visit Gremlin's Homepage
I don't off hand know of any SMTP servers that you can use, you could try putting your own ISP's
SMTP Server address in there and see if it allows relaying from an IP address outside of its ownership.
You'll probably need to use your own email address in the Administrator Email Adress field also

i.e If my own ISP is widgets.com, and my email is person@widgets.com then you would use

smtp.widgets.com as the Email Server Address
and
person@widgets.com as the Administrator Email Address.

Then to test it you could just click on the send to friend link and send it to yourself and see if it works.

If this doesnt work (quite likely) then try searching for "Free SMTP Server" or something like that on the net.

www.daoc-halo.com


Edited by - Gremlin on 14 May 2002 08:53:52
Go to Top of Page
Page: of 3 Previous Topic Topic Next Topic  
Previous Page | Next Page
 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 0.4 seconds. Powered By: Snitz Forums 2000 Version 3.4.07