cristianotestai Posted July 8, 2011 Share Posted July 8, 2011 Hi, I need help to deploy my app on my IIS 7.0. My app is in the directory: c:\inetpub\wwwroot\markbook I set the Application Pool as instructed on the website of UniGui. Also the user IIS_USRS is with full permission to access the directory. ext-3-3-0 folder is also located in wwwroot\markbook Attached are two images related to the problem, the principle refers to the Web.config file. I never realized deploy to IIS, so sorry for simple questions. Tks. Quote Link to comment Share on other sites More sharing options...
Administrators Farshad Mohajeri Posted July 8, 2011 Administrators Share Posted July 8, 2011 Try giving full access to IUSR account.for c:\inetpub\wwwroot\markbook folder. Quote Link to comment Share on other sites More sharing options...
cristianotestai Posted July 8, 2011 Author Share Posted July 8, 2011 Try giving full access to IUSR account.for c:\inetpub\wwwroot\markbook folder. Hi Farshad, Now i config IUSR acess and occours the same error.. Tks for help.. Quote Link to comment Share on other sites More sharing options...
Administrators Farshad Mohajeri Posted July 9, 2011 Administrators Share Posted July 9, 2011 What is the URL you use to access your ISAPI app? Quote Link to comment Share on other sites More sharing options...
cristianotestai Posted July 9, 2011 Author Share Posted July 9, 2011 What is the URL you use to access your ISAPI app? Farshad.. Is ok now the loading login page, but occours the AV below, in log file: MbWebServer: 00000B2C: 14:55:01:EFCreateError : Cannot create file "c:\windows\system32\inetsrv\iphist.dat". Access is denied MbWebServer: 00000B2C: 14:55:05:EAccessViolation : Access violation at address 020DB88D in module 'MbWebServer.dll'. Write of address 0000000C but, i did not find the file in the inetsrv directory.. any idea? Tks again.. Quote Link to comment Share on other sites More sharing options...
cristianotestai Posted July 9, 2011 Author Share Posted July 9, 2011 Farshad.. Is ok now the loading login page, but occours the AV below, in log file: MbWebServer: 00000B2C: 14:55:01:EFCreateError : Cannot create file "c:\windows\system32\inetsrv\iphist.dat". Access is denied MbWebServer: 00000B2C: 14:55:05:EAccessViolation : Access violation at address 020DB88D in module 'MbWebServer.dll'. Write of address 0000000C but, i did not find the file in the inetsrv directory.. any idea? Tks again.. I'm sorry.. I shared and gave full permission to the users IIS_USRS and IUSR accounts, and the AV occours.. Quote Link to comment Share on other sites More sharing options...
Administrators Farshad Mohajeri Posted July 9, 2011 Administrators Share Posted July 9, 2011 I'm sorry.. I shared and gave full permission to the users IIS_USRS and IUSR accounts, and the AV occours.. AV still occurs? Quote Link to comment Share on other sites More sharing options...
cristianotestai Posted July 9, 2011 Author Share Posted July 9, 2011 AV still occurs? Yes Farshad, I do not know why he tries to create this file iphist.dat. In my local machine, creating a Stand Alone Server to load the app it creates this file in the same directory of the app. In the production server (IIS 7.0), when I run the action(login button), occours the AV, where he can not create this file iphist.dat(inetsrv directory). Quote Link to comment Share on other sites More sharing options...
Administrators Farshad Mohajeri Posted July 9, 2011 Administrators Share Posted July 9, 2011 Yes Farshad, I do not know why he tries to create this file iphist.dat. In my local machine, creating a Stand Alone Server to load the app it creates this file in the same directory of the app. In the production server (IIS 7.0), when I run the action(login button), occours the AV, where he can not create this file iphist.dat(inetsrv directory). One of the components you use creates it. uniGUI doesn't create such a file. There is a problem with credentials here. You must carefully check access rights. You can also try giving full access to everyone for that folder. Quote Link to comment Share on other sites More sharing options...
cristianotestai Posted July 10, 2011 Author Share Posted July 10, 2011 One of the components you use creates it. uniGUI doesn't create such a file. There is a problem with credentials here. You must carefully check access rights. You can also try giving full access to everyone for that folder. Farshad, I found what is creating that file. It was the code below one of my classes: var tIpObj: TIdIPWatch; begin inherited; tIpObj: TIdIPWatch.Create = (nil) / / create file iphist.dat try IP: = tIpObj.LocalIP; finally tIpObj.Free; end; end; I will not use it and now is ok! Tks for help friend. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.