This topic is locked

The transport failed to connect to the server.

5/7/2008 9:38:10 PM
Shopping Cart Template general questions
S
sike1234 author

Every time I try to register a new user in my shopping cart.... I get this error
Error number -2147220973

Error description The transport failed to connect to the server.

URL /stores/shoppingcart/register.asp

SQL query select count(*) from [users] where [User_email]='bp@venturesolutionsllc.com'
I'm hosting with Godaddy.... so their support is worthless. Anyone have any experience fixing this issue
my settings are
user email field = User_email

From = support@bionicpartier.com

SMTP server = smtpout.secureserver.net

SMTP port 80 and I tried 25

SMTP username = XXXX

SMTP password = XXXX
I'm gonna try to figure this out but really would appreciate any help

S
sike1234 author 5/8/2008

This is the fix for Godaddy
Inside of commonfunctions.asp change relay-hosting.secureserver.net and
If IISVer <= "5.0" Then

' Windows NT / 2000

Set myMail = Server.CreateObject("CDONTS.NewMail")

myMail.From = cfrom

myMail.To = email
myMail.Subject = subject

myMail.Body = message

myMail.Send

Set myMail = Nothing
To this
If IISVer <= "7.0" Then

' Windows NT / 2000

Set myMail = Server.CreateObject("CDONTS.NewMail")

myMail.From = cfrom

myMail.To = email
myMail.Subject = subject

myMail.Body = message

myMail.Send

Set myMail = Nothing
Godaddy give user an option to host on IIS 6 or IIS 7