windows-server-2008

Different result in IIS express and IIS

大城市里の小女人 提交于 2019-12-11 08:27:34
问题 I recently installed webmatrix on a windows 2008 machine. I installed dotnetnuke using webmatrix, I visited the site using a browser on the server, finished installing the site, and everything works just fine. I than created a site in IIS, and pointed it at the folder where I installed dotnetnuke. When I visit the site using my domain name and on port 80 with a browser on my server, it takes me to the install page. When I visit the site using a remote computer, it says "This site is currently

How to set up a SharePoint 2010 developer machine?

此生再无相见时 提交于 2019-12-11 08:12:36
问题 As the release date for the public beta of SharePoint 2010 is coming closer and closer, I'm wondering how to set up a developer machine for it. I've heard that for developing on SharePoint a 64 bit system is needed and that Microsoft advises to use Windows 7 64 bit and install SharePoint 2010 on it. I think that won't be an option for me as I only have one computer here at work and I don't like to install SharePoint on the same machine that I use for my normal office work (email stuff,

Windows Server 2008, IIS7.5 and connection to MS Access 97 database

时光怂恿深爱的人放手 提交于 2019-12-11 07:56:01
问题 I know, the topic sounds terrible. But I actually have to connect these technologies. Problem I am currently migrating company's intranet (written mostly in classic ASP) from Windows Server 2003 32 bit with IIS 6 to Windows Server 2008 R2 64 bit with IIS 7.5. Everything works perfectly fine except for one subpage which uses set conn = server.createobject("adodb.connection") to connect to connstring="DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=path\to\mdb\which\is\really\there" . I open

Control IIS 7 server from Windows 2003 server programmatically

对着背影说爱祢 提交于 2019-12-11 07:28:00
问题 We run various jobs using a Windows 2003 server. Some of these jobs send app pool commands to web servers running IIS 6 (recycle, start, stop). Now we have a Windows 2008 web server running IIS 7, and we want to send the same commands. This is all done using C#. This is the code we use to send commands for IIS 6: var methodToInvoke = "Stop"; // could be "Stop", "Start", or "Recycle" var co = new ConnectionOptions { Impersonation = ImpersonationLevel.Impersonate, Authentication =

Could not load file or assembly or one of its dependencies. Access is denied [duplicate]

夙愿已清 提交于 2019-12-11 07:19:20
问题 This question already has answers here : Could not load file or assembly 'someProject' or one of its dependencies. Access is denied (7 answers) Closed 5 years ago . Now I decided to ask for some help. After having investigate for 2 days on my issue, I cannot figure out any solution. Maybe I will be luckier here! So here is my issue: On our production server (Windows Server 2008) we have a windows services running which is responsible to run some Jobs automatically. These jobs are configurable

User driven session expiration

梦想与她 提交于 2019-12-11 06:53:25
问题 I need to give my ASP.NET website users a way to control their session timeout. I am using FormsAuthenticationTicket and cookies . I want to give the users a way to specify how long the session will stay active. The range can vary between a few minutes to 1 day or even more. I'm using idleTimeout (I asked a question here). Also, I save the value entered by the user in the database and using that value I initialize the FormsAuthenticationTicket . I have 2 more concerns: Application Pool and

Configuration error in Apache

做~自己de王妃 提交于 2019-12-11 06:26:10
问题 When i created server In Apache 2.2 on Windows Server 2008, Python 3.3 and Django 1.5. It give me this error why? This is in my conf: WSGIScriptAlias / D:/Rocnikova_prace/mysite/mysite/wsgi.py WSGIPythonPath D:/Rocnikova_prace/mysite <Directory D:/Rocnikova_prace/mysite/mysite> <Files wsgi.py> Order deny,allow Require all granted </Files> </Directory> [crit] [client 127.0.0.1] configuration error: couldn't perform authentication. AuthType not set!: /hlavni_stranka/ 回答1: Ok i Know where was

Delete the disabled accounts since 90 days based on custom attribute value

隐身守侯 提交于 2019-12-11 06:23:31
问题 I move automatically all ad disabled accounts in OU adding the date of deactivation in extensionattribute4 with this the script : import-module activedirectory $timer = (Get-Date) $TargetOU = "OU=Disabled Accounts,DC=domain,DC=lan" $DisabledAccounts = get-aduser -filter { enabled -eq $false } -SearchBase "OU=Test,OU=EMEA,DC=domain,DC=lan" ForEach ($account in $DisabledAccounts) { set-aduser -Identity $account.distinguishedName -add @{extensionAttribute4="$timer"} } ForEach ($account in

Permission for PHP on Windows Server

瘦欲@ 提交于 2019-12-11 05:59:00
问题 I was trying to use imagejpeg() and it's failed. is_writable() function returns false . So, I assume the issue is with permissions. I have a windows server so chmod() won't work. Plesk is installed on the server and I have changed all the permissions to allow but still is_writable() is false . The server is running Windows Server 2008 R2. I contacted the hosting company and they recommended this: https://technet.microsoft.com/en-us/library/cc772196%28v=ws.11%29.aspx Would this help...? Any

Issues with porting COM+ applications from Windows 2003 to Windows 2008 Server

别说谁变了你拦得住时间么 提交于 2019-12-11 03:13:55
问题 We are migrating our applications from Windows Server 2003 to Windows Server 2008 R2. I am facing some issues with the migration. I have deployed many COM+ components (32 bit) and DCOM components (32 bit) in the Windows Server 2008 R2. These COM+ and DCOM components are VC++ code. I have a .net 3.5 service 32 bit deployed in the same server, which calls the COM+ components mentioned above. Whenever i try to start the Service , it does not start and throw multiple errors in the event log. The