-
Posted to
IIS 7 - Troubleshooting
by
mvolo
on
05-15-2009, 11:51 AM
Hi Kevin,
OPTION A
It sounds like you are developing this application on XP, and publishing to Windows Server 2008. You best bet is to configure this app to run in Classic mode, since you may have other compatibility issues in Integrated mode (Default on W2k8).
In inetmgr.exe, select your site, and then in basic settings make it run in ...
-
Posted to
Configuration & Scripting
by
mvolo
on
06-10-2008, 1:57 PM
Hi Vikram,
Check your firewall to make sure port 66 is open.
Also, run the following to make sure the site is started:
> %windir%\system32\inetsrv\appcmd list sites
The full diagnostics are at ...
-
Posted to
IIS7 - Configuration & Scripting
by
mvolo
on
05-27-2008, 10:48 AM
Update on this:
In the absence of an official article, I describe the fixed port best practice here: http://mvolo.com/blogs/serverside/archive/2008/05/26/Accessing-IIS-7.0-configuration-remotely-and-on-server-core.aspx.
There is a batch file to configure fixed port access, and a tool you can use to check common connectivity ...
-
Posted to
IIS7 - Classic ASP
by
mvolo
on
03-13-2008, 4:00 PM
Ok, now do appcmd list apps. Make sure that your app is in the correct application pool for which you are setting the loadUserProfile:false. Note that on Vista SP1 and Windows Server 2008 you dont need to do this, as we dont load load the user profile by default.
In addition, you may need to follow the various KBs around this error, for example ...
-
Posted to
IIS7 - Classic ASP
by
mvolo
on
03-13-2008, 9:53 AM
Hi vibhub,
Can you run the following:
> %windir%\system32\inetsrv\appcmd list apppools
and show the output.
Thanks,
Mike Volodarsky
Program Manager
IIS Core Server
Visit mvolo.com for more IIS 7.0 posts, tools, and info
-
Posted to
ASP.NET Administration
by
mvolo
on
02-20-2008, 1:18 PM
Yep.
Its a free tool - get it from http://www.microsoft.com/downloads/details.aspx?FamilyID=B134A806-D50E-4664-8348-DA5C17129210&displaylang=en.
See if your can reproduce this problem by requesting your image directly, and make sure you get redirected to the right URL.
Thanks,
Mike Volodarsky
Program Manager
IIS Core Server
Visit ...
-
Posted to
Web Deployment Tool (MS Deploy)
by
mvolo
on
02-20-2008, 1:07 PM
Cool, thanks for the clarification.
Mike
-
Posted to
PHP Community
by
mvolo
on
02-20-2008, 1:02 PM
Masso,
How is your web site created? It should be the same web site, with two bindings: one for http, one for https.
The fact that you dont see any output from a PHP segment in your HTML file is expected - PHP is not involved in serving HTML files.
Have you tried putting a simple hello world PHP script into your web site, and accessing it first ...
-
Posted to
FastCGI Handler
by
mvolo
on
02-18-2008, 10:35 AM
I dont see any mention of cgi.rfc2616_headers there ... is there another place where you see this setting being recommended?
As I mentioned before, the impersonation issue is most likely due to your permissions. It may be acceptable to disable impersonation if your are OK with running the PHP scripts under the application pool ...
-
Posted to
Classic ASP
by
mvolo
on
02-14-2008, 2:31 PM
Hi Aaron,
This is not true.
ASP doesnt preallocate any memory for session storage (besides the minimum amount to store the session dictionary object). A session is just a dictionary that stores the data you put into it - so if you put 5Mb worth of data into the session, it will keep it alive for you across requests. If you put 5K of data into ...