This topic is locked

Security/Forgot Password Problems

7/3/2008 4:21:55 PM
ASPRunnerPro General questions
Lowkeck authorDevClub member

Hi,
I am running ASP Runner Pro 5.2 build 423 and I am unable to get into the security section using the Administrator account and Dynamic Security. In addition, the "Forgot password" link displays "Page cannot be displayed" when user information is submitted. If anyone has any advice it would be greatly appreciated.
Thanks,

Jason

Sergey Kornilov admin 7/3/2008

You can post your application to Demo Account and send the URL to support@xlinesoft.com for investigation.

R
RobinW 7/7/2008

I have this problem to with 423 and possibly other versions. I don't know if this helps but if the email field is blank the script completes but obviously does not send an email. If the field is true you get server maintenance or bad script error from the server. Tried resetting page disabling reminders saving then enabling but problem still there exists. <img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=reply&id=30856&image=1&table=forumreplies' class='bbc_emoticon' alt=':(' />
Regards
Robin

R
RobinW 7/7/2008

Dear Sergey,
I have uploaded to my demo account the project that does not send password reminders. The demo acount generates the following error
error '80040211'
/xxx_xxxxx_xxxx_xx_xx/5_2_8/include/commonfunctions.asp, line 5337 (email blanked to protect me)
try user 1103
Email with url sent to support

J
Jane 7/8/2008

answered in your personal email.

R
RobinW 7/8/2008

Hi Jane
I fixed the problem by changing 2 to 1 in the commonfunctions.asp file found this fix on another site.
I guess you must have changed something
Regards
Robin <img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=reply&id=30881&image=1&table=forumreplies' class='bbcemoticon' alt=':P' />
Else

' Windows XP / 2003

Set myMail=CreateObject("CDO.Message")

myMail.Subject = subject

myMail.From=cfrom

myMail.To=email

myMail.TextBody= message

myMail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusing";)=1

'Name or IP of remote SMTP server

myMail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserver";)=csmtpserver

'Server port

myMail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpserverport";)=csmtpport

' SMTP username and passwords

myMail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendpassword";) = csmtppassword

myMail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/sendusername";) = csmtpuser

if csmtpuser<>"" then

myMail.Configuration.Fields.Item("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate";) = 1

myMail.Configuration.Fields.Update

myMail.Send

Set myMail = Nothing

End If

J
Jane 7/9/2008

Hi,
this error happens when SMTP and webserver are on the one machine and SMTP service is not running.

http://msdn.microsoft.com/en-us/library/ms...(EXCHG.65).aspx

Lowkeck authorDevClub member 7/9/2008

I have posted my project to the Demo Account and sent an email with the information.
THanks,

Jason