Home | Support Forums | Demo | Purchase | Contact Us | MPopper | MChecker | News | Knowledgebase
Welcome Guest Search | Active Topics | Members | Log In | Register

install error A server Error has occured Options · View
thaigeo
Posted: Saturday, September 16, 2006 10:59:28 AM
Rank: Newbie
Groups: Member

Joined: 9/16/2006
Posts: 6
Points: 18
Location: Thailand
when i install mailyoulike test in local
and install at c:\inetpub\wwwroot
after login @admin@ password excel

then it redirect to page


A server Error has occured !


Please Try Again


and this part in URL bar:
http://localhost/ErrServer.htm?aspxerrorpath=/chk_login.aspx
or
http://192.168.1.100/ErrServer.htm?aspxerrorpath=/chk_login. aspx  
if test from another computer


in web.config

<!-- Enter Key as provided    -->
<add key="LNK-KEY" value="" />


<!-- Place where Dic folder is located  -->
<add key="DictionaryFolder" value="dic" />


<!-- Enter 1 for MS ACCESS and 2 for MS SQL -->
<add key="dbtype" value="1" />

<!-- Enter Name of Virtual Folder - PUT / AT THE BEGIINING ( IF YOU HAVE UPLOADED FILES TO THE ROOT THEN DO NOT PUT / ) -->
<add key="vfolder" value="" />

<!-- Enter Name of MS ACCESS Database -->
<add key="db_name" value="Access/mylv3.mdb" />

--------

Please tell me what is problem and How i do it?



admin
Posted: Saturday, September 16, 2006 12:25:19 PM

Rank: Administration
Groups: Administration

Joined: 7/1/2008
Posts: 256
Points: 574
in web.config file change customErrors mode from On to Off like below


<!-- Enter customErrors mode="On" to hide error from user 
-->
<!-- If a Error occur redirect user to a page  
-->
<customErrors mode="Off"
defaultRedirect="ErrDefault.htm">
<error statusCode="401"
redirect="ErrUnauthorized.htm" />
<error statusCode="404"
redirect="ErrPageNotFound.htm" />
<error statusCode="500"
redirect="ErrServer.htm" />
</customErrors>

then you can see
the exact error details  mostly the problem is with  modify permission to set
correctly !

Thanks

 
thaigeo
Posted: Sunday, September 17, 2006 1:52:45 AM
Rank: Newbie
Groups: Member

Joined: 9/16/2006
Posts: 6
Points: 18
Location: Thailand

this message error:



Server Error in '/' Application.



[Microsoft][ODBC Microsoft Access Driver] Operation must use an updateable query.


Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.Runtime.InteropServices.COMException: [Microsoft][ODBC Microsoft Access Driver] Operation must use an updateable query.

Source Error:





Line 260:			
Line 261:
Line 262: fun.save_log("login",SK_valUsername)
Line 263: if Session("SK_UserAuthorization") ="admin" then
Line 264: Dim fun as new mailyoulikev3.functions

Source File: c:\inetpub\wwwroot\chk_login.aspx    Line: 262

Stack Trace:





[COMException (0x80004005): [Microsoft][ODBC Microsoft Access Driver] Operation must use an updateable query.]
ADODB.CommandClass.Execute(Object& RecordsAffected, Object& Parameters, Int32 Options) +0
MailYouLikev3.functions.insert2(Object& MM_editConnection, String& MM_editTable, String& MM_editRedirectUrl, String& MM_fieldsStr, String& MM_columnsStr) +1691
MailYouLikev3.functions.save_log(Object type, Object data) +465
ASP.chk_login_aspx.__Render__control1(HtmlTextWriter __w, Control parameterContainer) in c:\inetpub\wwwroot\chk_login.aspx:262
System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children) +2065883
System.Web.UI.Control.RenderChildren(HtmlTextWriter writer) +24
System.Web.UI.Page.Render(HtmlTextWriter writer) +26
System.Web.UI.Control.RenderControlInternal(HtmlTextWriter writer, ControlAdapter adapter) +25
System.Web.UI.Control.RenderControl(HtmlTextWriter writer, ControlAdapter adapter) +121
System.Web.UI.Control.RenderControl(HtmlTextWriter writer) +22
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1896





Version Information: Microsoft .NET Framework Version:2.0.50727.42; ASP.NET Version:2.0.50727.42


admin
Posted: Sunday, September 17, 2006 2:01:45 AM

Rank: Administration
Groups: Administration

Joined: 7/1/2008
Posts: 256
Points: 574
Do the following steps

1 - Change your .NET Version to 1.1
2 - Give
Modify permission on all subfolders of  mailyoulike

Thanks
thaigeo
Posted: Sunday, September 17, 2006 4:56:55 AM
Rank: Newbie
Groups: Member

Joined: 9/16/2006
Posts: 6
Points: 18
Location: Thailand

Now I change it already (.net ver 1.1 and permission all subfolders)


but it have same error



Server Error in '/' Application.



[Microsoft][ODBC Microsoft Access Driver] Operation must use an updateable query.


Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.Runtime.InteropServices.COMException: [Microsoft][ODBC Microsoft Access Driver] Operation must use an updateable query.

Source Error:





Line 260:			
Line 261:
Line 262: fun.save_log("login",SK_valUsername)
Line 263: if Session("SK_UserAuthorization") ="admin" then
Line 264: Dim fun as new mailyoulikev3.functions

Source File: c:\inetpub\wwwroot\chk_login.aspx    Line: 262

Stack Trace:





[COMException (0x80004005): [Microsoft][ODBC Microsoft Access Driver] Operation must use an updateable query.]
ADODB.CommandClass.Execute(Object& RecordsAffected, Object& Parameters, Int32 Options) +0
MailYouLikev3.functions.insert2(Object& MM_editConnection, String& MM_editTable, String& MM_editRedirectUrl, String& MM_fieldsStr, String& MM_columnsStr) +1644
MailYouLikev3.functions.save_log(Object type, Object data) +476
ASP.chk_login_aspx.__Render__control1(HtmlTextWriter __output, Control parameterContainer) in c:\inetpub\wwwroot\chk_login.aspx:262
System.Web.UI.Control.RenderChildren(HtmlTextWriter writer) +27
System.Web.UI.Control.Render(HtmlTextWriter writer) +7
System.Web.UI.Control.RenderControl(HtmlTextWriter writer) +243
System.Web.UI.Page.ProcessRequestMain() +1926





Version Information: Microsoft .NET Framework Version:1.1.4322.2300; ASP.NET Version:1.1.4322.2300

admin
Posted: Sunday, September 17, 2006 9:31:06 AM

Rank: Administration
Groups: Administration

Joined: 7/1/2008
Posts: 256
Points: 574
The permissions are not set correctly this error means that mailyoulike is
trying to modify the ACCESS database  but it cannot do so as it does have
permission to modify it make sure you have given  write/modify permission to all
sub folders !
thaigeo
Posted: Sunday, September 17, 2006 9:54:53 AM
Rank: Newbie
Groups: Member

Joined: 9/16/2006
Posts: 6
Points: 18
Location: Thailand

Ok now I can install it


but have new problem :


I can't create domain:


------------------------------------
I write in Add New Domain
------------------------------------


Domain Name : i2005.net
Mail Server name : i2005.net
User name : @admin@
Password : excel


it error : UserName or Password Invalid

admin
Posted: Sunday, September 17, 2006 10:01:21 AM

Rank: Administration
Groups: Administration

Joined: 7/1/2008
Posts: 256
Points: 574
Mail server should be

mail.domain.com
and user name should be full email address (in most cases )

try to use any pop3 client(e.g outlook) with these details . if pop3 client is able to connect to your mail server then use the same details in mailyoulike and it will work !

Thanks
thaigeo
Posted: Sunday, September 17, 2006 10:19:50 AM
Rank: Newbie
Groups: Member

Joined: 9/16/2006
Posts: 6
Points: 18
Location: Thailand

Thank for respond.


but now i'm install new server.. you mean i must create pop3 service for domain and mail account on server before create domain in MYL or not?


If yes .. I create in POP3 Service is domain "i2005.net" and create mail account "admin" already but it can't connect.. Please tell me more information .

admin
Posted: Sunday, September 17, 2006 11:23:05 AM

Rank: Administration
Groups: Administration

Joined: 7/1/2008
Posts: 256
Points: 574
Mailyoulike is a web based email client it is not a mail server
you need to install a mail server in order to use mailyoulike.
once you have mail server create pop3 account  and set that pop3 account as a catch all account

once that is set use that pop3 account  details  in add new domain in MYL

You can also email  us your server info and we can do a complete install for you !

Thanks
thaigeo
Posted: Sunday, September 17, 2006 12:20:02 PM
Rank: Newbie
Groups: Member

Joined: 9/16/2006
Posts: 6
Points: 18
Location: Thailand

Ok


Now I can create domain and access to admin already!


but now when i create new USER (write complete form) and summit


it will redirect to message "Not a valid id"


and URL " http://www.i2005.net/mail/reg_complete.aspx?id=l5nk3yqplusrh surQX8m2MvjoB04wCoBLVF"


Please tell me What wrong?

admin
Posted: Sunday, September 17, 2006 1:20:37 PM

Rank: Administration
Groups: Administration

Joined: 7/1/2008
Posts: 256
Points: 574
Hi !
This a problem with your browser cache you need to press ctrl f5 on
your keyboard you will see updated page from the server then 

also you can
disable email confirmation for new user from the preferences  page



Thanks
Users browsing this topic
Guest


Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.

Main Forum RSS : RSS

Powered by Yet Another Forum.net version 1.9.1.8 (NET v2.0) - 3/29/2008
Copyright © 2003-2008 Yet Another Forum.net. All rights reserved.
This page was generated in 0.147 seconds.