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)
 Can I pay someone??
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

sam12130
Starting Member

7 Posts

Posted - 14 November 2008 :  20:54:05  Show Profile
Is there anyone I can pay (paypal) to help me with my forum? Could someone please point me in the right direction.

Thanks.<

gary b
Junior Member

USA
267 Posts

Posted - 14 November 2008 :  21:41:07  Show Profile  Visit gary b's Homepage
I doubt anyone wants your money... Virtually every frequent visitor to this forum is willing to lend a hand. You are asked to read and apply any applicable instructions and to *search this forum* to see if you questions have already been answered.

Once you have done your part, give a shout... Snitz'ers are more than willing to help.

What problem(s) is/are you having?<
Go to Top of Page

balexandre
Junior Member

Denmark
418 Posts

Posted - 14 November 2008 :  22:15:54  Show Profile  Visit balexandre's Homepage  Send balexandre an ICQ Message
send me an email... I will be glad to help you for no money at all<

Bruno Alexandre
(Strøby, DANMARK)

"a Portuguese in Danmark"


Go to Top of Page

sam12130
Starting Member

7 Posts

Posted - 14 November 2008 :  22:59:13  Show Profile
gary b- Thanks, I've read instructions and can't figure out exactly what I'm supposed to be doing. My current problem is I'm trying to add private messaging and avatars to my forum. I downloaded all the nec stuff and I can't seem to find my forum directory?

balexandre- I e-maild you. Thanks!<
Go to Top of Page

balexandre
Junior Member

Denmark
418 Posts

Posted - 15 November 2008 :  00:56:20  Show Profile  Visit balexandre's Homepage  Send balexandre an ICQ Message
you did?

I got nothing yet and I just test the snitz mail and works fine.<

Bruno Alexandre
(Strøby, DANMARK)

"a Portuguese in Danmark"


Go to Top of Page

projectgallbladder
Starting Member

8 Posts

Posted - 27 November 2008 :  00:21:16  Show Profile
Hi All - I'm in the same boat - I'm not a DBA or Web guy. I have set up a health support forum using snitz. Having been spammed to death I turned on New account Approval by Admin mode. The bots are now sending new account creation request by 20-30 per day. 1/2 from one site Ip address. In the absence of a "Type the random word key to process new account" funtion I would like to edit the new user registration asp? To state you new accounts must have start with the prefix xx. Happy to PayPal anyone. Tried hiding the version / bulletin engine info. This fails to keep my site off the radar.

Help and thanks for your time. SP, blueicesynergy @ hotmail com

<
Go to Top of Page

Etymon
Advanced Member

United States
2395 Posts

Posted - 27 November 2008 :  00:42:26  Show Profile  Visit Etymon's Homepage
E-mail sent.<
Go to Top of Page

ruirib
Snitz Forums Admin

Portugal
26364 Posts

Posted - 27 November 2008 :  03:03:29  Show Profile  Send ruirib a Yahoo! Message
This will probably help: http://forum.snitz.com/forum/topic.asp?TOPIC_ID=66113<


Snitz 3.4 Readme | Like the support? Support Snitz too
Go to Top of Page

AnonJr
Moderator

United States
5768 Posts

Posted - 27 November 2008 :  08:30:31  Show Profile  Visit AnonJr's Homepage
Also this one: http://forum.snitz.com/forum/topic.asp?TOPIC_ID=65057<
Go to Top of Page

projectgallbladder
Starting Member

8 Posts

Posted - 01 December 2008 :  00:10:58  Show Profile
Thanks guys for the feed back. I was not sure how the email to inbox activation mode worked as the awaiting for approval list keep growing. Email activation was turned on. But I cannot see a UID and PW section to configure for access to bounce SMTP emails via hosting ISP servers which I have an account. New registrations are not receiving activation emails. Someone has offered to help for a small fee. May take up offer

A setup manual for email activation setups would be great as I orginal paid someone form India to sent up Snitz.

How to configure SMTP email server UID and PW for new registration email activations

Cheers

JB
<
Go to Top of Page

balexandre
Junior Member

Denmark
418 Posts

Posted - 01 December 2008 :  03:54:22  Show Profile  Visit balexandre's Homepage  Send balexandre an ICQ Message
first you need to know what email component are you using (under Administration Options > E-mail Server Configuration)

I'm using ASPEmail because my hosting supports it (they have the component to use for free) and because of security issues they said to me that I needed to send my emails from the same email address that my account was.

So, first you need to create your own POP3 account, let's imagine no-reply@domain.com

once you have this account up and ready, with your username and password to access the mailbox, you take this and open inc_mail.asp file.

Because I am using ASPEmail component the code starts in line 54, if you are using other component, search for the correct CASE statment

the code is:
case "aspemail"
Set objNewMail = Server.CreateObject("Persits.MailSender")
objNewMail.FromName = strFromName
objNewMail.From = strSender
objNewMail.AddReplyTo strSender
objNewMail.Host = strMailServer
objNewMail.AddAddress strRecipients, strRecipientsName
objNewMail.Subject = strSubject
objNewMail.Body = strMessage
on error resume next '## Ignore Errors
objNewMail.Send
If Err <> 0 Then 
	Err_Msg = Err_Msg & "<li>Your request was not sent due to the following error: " & Err.Description & "</li>"
End if


and all you need to do is add some code like:

case "aspemail"
Set objNewMail = Server.CreateObject("Persits.MailSender")
objNewMail.FromName = strFromName
objNewMail.From = "no-reply @ domain.com" '<-- Add the email address without spaces!
objNewMail.AddReplyTo strSender
objNewMail.Host = strMailServer
objNewMail.Username = "my POP3 username"
objNewMail.Password = "my POP3 password"
objNewMail.AddAddress strRecipients, strRecipientsName
objNewMail.Subject = strSubject
objNewMail.Body = strMessage
on error resume next '## Ignore Errors
objNewMail.Send
If Err <> 0 Then 
	Err_Msg = Err_Msg & "<li>Your request was not sent due to the following error: " & Err.Description & "</li>"
End if


P.S. I had to manually write the objNewMail.From because the email that I use as Administration Mail is not the same as my POP3 account email address and my hosting company told me that they has to be the same in order to be sent (and not be flagged as SPAM), this is as I mention before, one of the first rules that mail servers use so no one can send emails from with a different email address as "From" and for this not acting like someone else (SPAM / Phishing).

P.P.S. You can see all the ASPEmail methods that you can use in there Online Manual<

Bruno Alexandre
(Strøby, DANMARK)

"a Portuguese in Danmark"



Edited by - balexandre on 01 December 2008 04:03:37
Go to Top of Page

projectgallbladder
Starting Member

8 Posts

Posted - 02 December 2008 :  21:59:07  Show Profile
Bruno Alexandre - Thanks so much for taking time to explan to me required setup activities in understandable terms- Seven Fold back to you.

Kindest regards

John<
Go to Top of Page

balexandre
Junior Member

Denmark
418 Posts

Posted - 03 December 2008 :  15:16:47  Show Profile  Visit balexandre's Homepage  Send balexandre an ICQ Message
No problem...

This is a great community, just ask what you need, someone will understand your point and do it's best <

Bruno Alexandre
(Strøby, DANMARK)

"a Portuguese in Danmark"


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 0.36 seconds. Powered By: Snitz Forums 2000 Version 3.4.07