Some problem regarding site.
-
I currently hosted a site, and at the time of member registration we get the following error. Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine. Details: To enable the details of this specific error message to be viewable on remote machines, please create a tag within a "web.config" configuration file located in the root directory of the current web application. This tag should then have its "mode" attribute set to "Off".
-
I currently hosted a site, and at the time of member registration we get the following error. Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine. Details: To enable the details of this specific error message to be viewable on remote machines, please create a tag within a "web.config" configuration file located in the root directory of the current web application. This tag should then have its "mode" attribute set to "Off".
Follow the instructions , so that you can view the detail of the error...to identify the cause... << >>
-
I currently hosted a site, and at the time of member registration we get the following error. Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine. Details: To enable the details of this specific error message to be viewable on remote machines, please create a tag within a "web.config" configuration file located in the root directory of the current web application. This tag should then have its "mode" attribute set to "Off".
-
Follow the instructions , so that you can view the detail of the error...to identify the cause... << >>
Hi, Thank you very much for your suggession. I followed the instructions given in the error message. But that raised one another error. The error is "Could not Access CDO.Message Object". On each exception I am seding mail to the admin. This error comes every time when I am trying to send email through code. I have wrriten code as following. catch(Exception ex) { string MessageBody = "Exception " + ex.GetType.ToString() + " occured on page " + this.ID + " on " + DateTime.Now.ToString(); MailMessage mail = new MailMessage(); SmtpMail.SmtpServer.Insert(0,"66.36.242.151"); mail.From = "chetan@innovault.com"; mail.To = "admin@innovault.com"; mail.Subject = "Error Occured in the system."; mail.Body = MessageBody; SmtpMail.Send(mail); } Error comes When the Last Line of code executes. Can u tell me if anything is wrong in my code? Thank you. Regards, Chetan Ranpariya.
-
Hi, Thank you very much for your suggession. I followed the instructions given in the error message. But that raised one another error. The error is "Could not Access CDO.Message Object". On each exception I am seding mail to the admin. This error comes every time when I am trying to send email through code. I have wrriten code as following. catch(Exception ex) { string MessageBody = "Exception " + ex.GetType.ToString() + " occured on page " + this.ID + " on " + DateTime.Now.ToString(); MailMessage mail = new MailMessage(); SmtpMail.SmtpServer.Insert(0,"66.36.242.151"); mail.From = "chetan@innovault.com"; mail.To = "admin@innovault.com"; mail.Subject = "Error Occured in the system."; mail.Body = MessageBody; SmtpMail.Send(mail); } Error comes When the Last Line of code executes. Can u tell me if anything is wrong in my code? Thank you. Regards, Chetan Ranpariya.
Hi Chetan, Looking at the error "Could not Access CDO.Message Object", I think there is a problem related to the permissions to relay through the IIS SMTP Service. To allow access, open up the IIS Admin MMC. Locate the SMTP Virtual Server, and right-click, then select Properties. On the Access tab, click the Relay button. In the Relay Restrictions dialog, grant your IP address (e.g 127.0.0.1) to the Computers listbox. Close down all dialogs, and restart the SMTP Service. I got the same problem some time back and used the above procedure. Hope it helps u.. For more details u can check this link http://www.systemwebmail.com/faq/4.2.3.aspx[^][^] Thanks for reading, Vaibhav :-D
-
Hi Chetan, Looking at the error "Could not Access CDO.Message Object", I think there is a problem related to the permissions to relay through the IIS SMTP Service. To allow access, open up the IIS Admin MMC. Locate the SMTP Virtual Server, and right-click, then select Properties. On the Access tab, click the Relay button. In the Relay Restrictions dialog, grant your IP address (e.g 127.0.0.1) to the Computers listbox. Close down all dialogs, and restart the SMTP Service. I got the same problem some time back and used the above procedure. Hope it helps u.. For more details u can check this link http://www.systemwebmail.com/faq/4.2.3.aspx[^][^] Thanks for reading, Vaibhav :-D
Hi Vaibhav. Thanks for the reply. You are right vaibhav. I have tried that. That works on my system very well. But when I uploaded my site on the server and tried to test it, it gives me error. For example you open www.innovault.com and try to make your login there. Your login will be created successfully but you will get error page with error "Could not Access CDO.Message Object" as well. This error comes when system tries to send u a mail informing that your account has been created including your username and password. Is there any thing to setup from my mailserver or something else? Plz reply me soont its very urgent. Thank you very much. Regards, Chetan
-
Hi Vaibhav. Thanks for the reply. You are right vaibhav. I have tried that. That works on my system very well. But when I uploaded my site on the server and tried to test it, it gives me error. For example you open www.innovault.com and try to make your login there. Your login will be created successfully but you will get error page with error "Could not Access CDO.Message Object" as well. This error comes when system tries to send u a mail informing that your account has been created including your username and password. Is there any thing to setup from my mailserver or something else? Plz reply me soont its very urgent. Thank you very much. Regards, Chetan
Hi there, For this issue, you might contact to the administrator of your website to fix the problem... << >>