Quantcast
Channel: FastCGI Module
Viewing all 205 articles
Browse latest View live

Strange Behavior with Handler Mappings

$
0
0

I'm running Plesk with IIS 7.5. Plesk doesn't support anything over 5.3 for PHP so I had to add it via the handler mappings which was working perfectly.

The websites went down this morning literally as I was working on them so I thought it was me. After hours of debugging, I've just noticed that the PHP version in the IIS handler mappings section has reverted back to the default (PHP5). There's only me with access to the server.

I really haven't got a clue how it happened or what steps I need to take to prevent this happening again.

As it stands, I've suspended the 2 domains I have running 5.8 while I get this issue sorted. I'm really not sure what to do as I know Plesk won't help as they don't support 5.5.8.


Performance counters for FastCGI in IIS 7.x

$
0
0

Hello,

Are there any handy PHP/FastCGI monitoring tools for Windows 2008R2? 

To be more specific I'd like to see active FastCGI thread count (current/total), requests per second, and thread number per process etc.

I tried the Perfmon counters but most of the web related counters just didn't work (always showed 0).

Please kindly recommend any Windows or 3rd party commercial tools.

Thanks!

PHP launching a process

$
0
0

I have a php application that ran well on Windows Server 2008 & IIS (7?).  This app uploads an XML file, then launched a parser written in Perl. 

The trick was to have the PHP file process the data (sanity check), send a message to the browser, then launch the Perl parser while passing some variables.

In the end I had to use a two stage approach.  The PHP launched a wrapper like so:

$cmd="start /B perl e:\website\parser_wrapper.pl ".$tmpoutfile." ".$meta->metaid." ".$cusd." ".$whendone." ".$ctarg;$meta->messages[]=$cmd;
// send data back
echo json_encode($meta);
ob_flush();
flush();
pclose(popen($cmd, "r"));
exit;

The parser_wrapper.pl creates a Win32::Process to run the Perl parser application.

$|++;

use Win32::Process;
use Win32;

sub ErrorReport{
	print Win32::FormatMessage( Win32::GetLastError() );
}

Win32::Process::Create($ProcessObj,"c:\\Perl64\\bin\\perl.exe","perl e:\\parser\\nessus_file_parser.pl -w -o $ARGV[0] -s $ARGV[1] -c $ARGV[2] -e $ARGV[3] -t $ARGV[4]",
	0,
        NORMAL_PRIORITY_CLASS,".")|| die ErrorReport();
exit;

On Windows Server 2012 - Default IIS install.  This no longer works.  I'm not married to the process if anyone has a better way for this to work, the only thing I am married to, at least for a while longer, is PHP and Perl.

I should add that the PHP scripts do everything they should be doing except launching the process to run the parser.  The parser runs just fine when passed the variables manually.

Thanks,

Mike

The FastCGI process exited unexpectedly

$
0
0

I am trying to run PHP via FastCGI on a Windows 2008 server.

I followed this installation doc http://learn.iis.net/page.aspx/246/using-fastcgi-to-host-php-applications-on-iis7/ and have checked I completed the steps correclty numerous times.

However when I try to execute a php page i am presented with the following error:

HTTP Error 500.0 - Internal Server Error C:\PHP\php-cgi.exe - The FastCGI process exited unexpectedly

Can you help me?
Thanks in advance

 

I'm desperate! Error 500.

$
0
0

I've got an issue with a production web server. Intermittently throughout the day, every day I get a 500 error. I am running IIS 7.5 with PHP 5.3 (I cannot upgrade iis or php without breaking many scripts and sites so this will have to be phased in over time). This 500 error is related to the FastCgiModule and I am using php-cgi. I've searched and searched and searched and searched with no ideal solutions to my problem.

This is the Failed Request Log and what it says.

216. view trace 
Warning -MODULE_SET_RESPONSE_ERROR_STATUS 


ModuleName 
FastCgiModule Notification 128 HttpStatus 500 HttpReason Internal Server Error HttpSubStatus 0 ErrorCode 2147943629 ConfigExceptionInfo Notification EXECUTE_REQUEST_HANDLER ErrorCode An operation was attempted on a nonexistent network connection. (0x800704cd)


Are there any tips or clues how to stop this from happening?

20 sec delay on Wordpress site

$
0
0

Hi,

I've setup this Wordpress siteusing Web Platform Installer. I am having a delay of about 20 seconds before the main page loads.

The things I've tried so far is changing mysql hostname to 127.0.0.1 at wp-config file, adding skip-name-resolve to my.ini, changing fastcgi instance max. requests to 40, making default document index.php etc,  but nothing works. Does ayone have another idea? Thanks.

Site is running on a Windows 2008 server, dns server on the same machine, php version 5.5.3, mysql version 5.6.

UPDATE:  I have deleted the WPI site and installed Wordpress manually. I'm still testing, but it looks like the problem has gone away.

FastCGI module and connected application

$
0
0

I'm trying to find a proper way to connect an application to IIS over FastCGI.

There's official FastCGI specification and quite old library on fastcgi.com site.
There are also some interesting posts on IIS page in the subject:
http://blogs.iis.net/yaminij/archive/2009/01/08/getting-started-with-writing-a-fastcgi-client-application-fastcgi-test-client.aspx
http://blogs.iis.net/rickjames/archive/2007/02/04/fake-fastcgi-web-server.aspx

Everything looks promising, except connection with IIS over FastCGI assuming multithreaded approach.

Going into details ....

Using FastCGI on *nix platform application can handle concurrent requests that way:

  socket() / bind() / listen()

  // BEGIN thread 1
  accept()
  // END thread 1

  // BEGIN thread 2
  accept()
  // END thread 2


Unfortunately, using IIS FastCGI module, I can't find proper solution to handle multiple concurrent requests with single process (without spawning new processes by IIS FastCGI module or just to decrease its number).

I can get two things from FastCGI module on application side:

1. handle – created using CrateNamedPipe() by IIS FastCGI module

  HANDLE hPipe;
  hPipe = GetStdHandle( STD_INPUT_HANDLE );

2. name of created pipe

  getenv("_FCGI_X_PIPE_")

What can I do with those things to handle concurrent requests ?
Is there any way to get more handle points to go into multithreaded application version ?
Is there any other way to play with FastCGI IIS module to handle concurrent requests by one application process ?

Does anyone from developers of IIS FastCGI module can give me the final answer ? Is it possible with IIS FastCGI module at all ?

Can I create a named pipe (multiple handle) on application side and pass its name somehow to the IIS module ?
Can I create a new handle to named pipe with given by _FCGI_X_PIPE_ name on application side ?


I've checked several configuration on *nix environments and each of them can handle requests that way... (one application process can handle concurrent multiple requests so it's not necessary to always spawn new process to handle concurrent request)

- Apache + mod_fastcgi
- Nginx (has native fastcgi support)
- lighttpd + spawn_fastcgi


Any help appreciated.

/Adam Kozłowski

Is FastCGI for IIS is single-threaded?

$
0
0

Recentely, I wrote a fastcgi app for IIS and found when my application use multi-threaded,

1. if I used namedpipe mode (IIS fastcgi), my application would hang due to Read-Write to  the named pipe at the same time conflicts.

2. if I used Tcp mode, my application would get hang occationally

According to above, I am suspecting IIS is not support multi-threaded FastCgi apps, is that true?


Application popup: php-cgi.exe - Application Error : The application was unable to start correctly (0xc000007b)

$
0
0

Brand new server build, php 5.4 and 5.5.11 installed through WPI. 5.4 works fine, getting this error below on 5.5. Windows 2012 R2 IIS 8. 

Application popup: php-cgi.exe - Application Error : The application was unable to start correctly (0xc000007b)

I've tried disabling all extensions. This is the error I see when running it from command prompt. I am just trying to run php info. 

Also this is what IIS reports, but the crash is because of the error above. 

HTTP Error 500.0 - Internal Server Error

C:\Program Files (x86)\PHP\v5.5\php-cgi.exe - The FastCGI process exited unexpectedly

The FastCGI process exited unexpectedly

$
0
0

Hello,

I have just installed PHP and mysql using the web platform installer from IIS 8.5, I am running server 2012 r2 with all the latest updates installed. When I make a test php page to echo some text out in order to test if php is working, I get the following error (by the way I also installed Visual C++ Redistributable for Visual Studio 2012 Update 4, 64bit, but I still get the same error):

HTTP Error 500.0 - Internal Server Error

C:\Program Files (x86)\PHP\v5.5\php-cgi.exe - The FastCGI process exited unexpectedly

Most likely causes:

  • IIS received the request; however, an internal error occurred during the processing of the request. The root cause of this error depends on which module handles the request and what was happening in the worker process when this error occurred.
  • IIS was not able to access the web.config file for the Web site or application. This can occur if the NTFS permissions are set incorrectly.
  • IIS was not able to process configuration for the Web site or application.
  • The authenticated user does not have permission to use this DLL.
  • The request is mapped to a managed handler but the .NET Extensibility Feature is not installed.

Things you can try:

  • Ensure that the NTFS permissions for the web.config file are correct and allow access to the Web server's machine account.
  • Check the event logs to see if any additional information was logged.
  • Verify the permissions for the DLL.
  • Install the .NET Extensibility feature if the request is mapped to a managed handler.
  • Create a tracing rule to track failed requests for this HTTP status code. For more information about creating a tracing rule for failed requests, clickhere.

Detailed Error Information:


Module   FastCgiModule
Notification   ExecuteRequestHandler
Handler   PHP55_via_FastCGI
Error Code   0xc000007b

Requested URL   http://localhost:80/index.php
Physical Path   C:\inetpub\wwwroot\index.php
Logon Method   Anonymous
Logon User   Anonymous

More Information:

This error means that there was a problem while processing the request. The request was received by the Web server, but during processing a fatal error occurred, causing the 500 error.

View more information »

Microsoft Knowledge Base Articles:

  • 294807

Intalling a php site in IIS, performance?

$
0
0

Hi. I will be writing a php site and i am thinking about the hosting server. I have used IIS before with FASTCGI on a php forum and did not have issues. Whoever this was not a high traffic forum, so i could not really see any performance problems it may came up with. This will be a high traffic site so i want to know if IIS will have problems. Of course i would have used Apache right from the start but i do have much experience on Linux, so i was thinking, if there is no specific advantage then i should save some time and go with IIS that i know how to work with.
So any suggestions or articles?
Thanks.

IIS8.5 UTF-8 Support for CGI Variables

$
0
0

How do you enable support for UTF-8/Unicode in CGI variables?

The Below fix for version IIS 7.5 does not appear to have any effect on IIS 8.5

reg add HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\w3svc\Parameters /v FastCGIUtf8ServerVariables /t REG_MULTI_SZ /d REQUEST_URI\0PATH_INFO

Link: http://support.microsoft.com/kb/2277918

The hot fix above also is not applicable to the system I am running, Server 2012 R2 & IIS 8.5.

How do I solve this issue?

500 Internal Server, IIS was not able to access the web.config file for the Web site or application. This can occur if the NTFS permissions are set incorrectly

$
0
0

Hi,

I am getting 500 Internal server suddenly from web server. Once it started, it is sending continuously from the web server. I have failure request traces in my hand and pasting one trace info below. Please provide info to proceed on this.

Server: Windows Server 2012 R2 standard.

Failed request trace1:

01010x0WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}1DefaultAppPool16106271570https://10.80.181.105:443/standby_cx_details.phpPOSTGENERAL_REQUEST_START{D42CF7EF-DE92-473E-8B6C-621EA663113A}01540x100WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}RequestMonitorModulePRE_BEGIN_REQUEST_STARTRequestNotifications{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}01550x100WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}RequestMonitorModule0PRE_BEGIN_REQUEST_ENDRequestNotificationsNOTIFICATION_CONTINUE{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}01540x100WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}FailedRequestsTracingModulePRE_BEGIN_REQUEST_STARTRequestNotifications{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}01550x100WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}FailedRequestsTracingModule0PRE_BEGIN_REQUEST_ENDRequestNotificationsNOTIFICATION_CONTINUE{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}014550x0WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}10.80.181.160299710.80.181.105443GENERAL_ENDPOINT_INFORMATION{D42CF7EF-DE92-473E-8B6C-621EA663113A}014500x0WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}Content-Length: 0 Content-Type: application/x-www-form-urlencoded Accept: */* Host: 10.80.181.105GENERAL_REQUEST_HEADERS{D42CF7EF-DE92-473E-8B6C-621EA663113A}014120x80WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}/standby_cx_details.phpURL_CACHE_ACCESS_STARTCache{AC1D69F1-BF33-4CA0-9313-BCA13873E1DC}014130x80WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}truefalse0URL_CACHE_ACCESS_ENDCacheThe operation completed successfully. (0x0){AC1D69F1-BF33-4CA0-9313-BCA13873E1DC}014300x0WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}513GENERAL_GET_URL_METADATA{D42CF7EF-DE92-473E-8B6C-621EA663113A}014430x0WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}PHP_via_FastCGIFastCgiModuleC:\php5nts\php-cgi.exeHANDLER_CHANGED{D42CF7EF-DE92-473E-8B6C-621EA663113A}01510x100WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}HttpCacheModule1falseNOTIFY_MODULE_STARTRequestNotificationsBEGIN_REQUEST{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}01520x100WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}HttpCacheModule1false0NOTIFY_MODULE_ENDRequestNotificationsBEGIN_REQUESTNOTIFICATION_CONTINUE{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}01510x100WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}RequestFilteringModule1falseNOTIFY_MODULE_STARTRequestNotificationsBEGIN_REQUEST{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}01520x100WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}RequestFilteringModule1false0NOTIFY_MODULE_ENDRequestNotificationsBEGIN_REQUESTNOTIFICATION_CONTINUE{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}01510x100WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}FailedRequestsTracingModule1falseNOTIFY_MODULE_STARTRequestNotificationsBEGIN_REQUEST{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}01520x100WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}FailedRequestsTracingModule1false0NOTIFY_MODULE_ENDRequestNotificationsBEGIN_REQUESTNOTIFICATION_CONTINUE{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}01510x100WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}AnonymousAuthenticationModule2falseNOTIFY_MODULE_STARTRequestNotificationsAUTHENTICATE_REQUEST{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}014100x2WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}1AUTH_STARTAuthenticationAnonymous{C33BBE8F-985B-4080-81E6-005F1A06B9E2}014270x2WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}1AUTH_REQUEST_AUTH_TYPEAuthenticationAnonymous{C33BBE8F-985B-4080-81E6-005F1A06B9E2}014110x2WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}4false2AUTH_SUCCEEDEDAuthenticationNTImpersonationImpersonate{C33BBE8F-985B-4080-81E6-005F1A06B9E2}014440x0WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}trueUSER_SET{D42CF7EF-DE92-473E-8B6C-621EA663113A}014280x2WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}AUTH_ENDAuthentication{C33BBE8F-985B-4080-81E6-005F1A06B9E2}01520x100WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}AnonymousAuthenticationModule2false0NOTIFY_MODULE_ENDRequestNotificationsAUTHENTICATE_REQUESTNOTIFICATION_CONTINUE{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}01510x100WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}HttpCacheModule8falseNOTIFY_MODULE_STARTRequestNotificationsRESOLVE_REQUEST_CACHE{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}014150x80WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}OUTPUT_CACHE_LOOKUP_STARTCache{AC1D69F1-BF33-4CA0-9313-BCA13873E1DC}014160x80WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}0OUTPUT_CACHE_LOOKUP_ENDCacheNOT_FOUND{AC1D69F1-BF33-4CA0-9313-BCA13873E1DC}01520x100WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}HttpCacheModule8false0NOTIFY_MODULE_ENDRequestNotificationsRESOLVE_REQUEST_CACHENOTIFICATION_CONTINUE{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}01510x100WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}StaticCompressionModule16falseNOTIFY_MODULE_STARTRequestNotificationsMAP_REQUEST_HANDLER{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}01520x100WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}StaticCompressionModule16false0NOTIFY_MODULE_ENDRequestNotificationsMAP_REQUEST_HANDLERNOTIFICATION_CONTINUE{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}01510x100WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}FastCgiModule128falseNOTIFY_MODULE_STARTRequestNotificationsEXECUTE_REQUEST_HANDLER{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}01240x1000WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}FASTCGI_RAPID_FAILURE_PROTECTIONFastCGI{E3642ACC-3627-42B0-8372-867BAA033B07}013180x100WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}The FastCGI process has failed frequently recently. Try the request again in a whileSET_RESPONSE_ERROR_DESCRIPTIONRequestNotifications{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}013160x100WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}FastCgiModule128500Internal Server Error02147500037MODULE_SET_RESPONSE_ERROR_STATUSRequestNotificationsEXECUTE_REQUEST_HANDLERUnspecified error (0x80004005){002E91E3-E7AE-44AB-8E07-99230FFA6ADE}01520x100WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}FastCgiModule128false2NOTIFY_MODULE_ENDRequestNotificationsEXECUTE_REQUEST_HANDLERNOTIFICATION_FINISH_REQUEST{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}01510x100WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}HttpLoggingModule536870912falseNOTIFY_MODULE_STARTRequestNotificationsSEND_RESPONSE{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}01520x100WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}HttpLoggingModule536870912false0NOTIFY_MODULE_ENDRequestNotificationsSEND_RESPONSENOTIFICATION_CONTINUE{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}01510x100WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}ProtocolSupportModule536870912falseNOTIFY_MODULE_STARTRequestNotificationsSEND_RESPONSE{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}01520x100WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}ProtocolSupportModule536870912false0NOTIFY_MODULE_ENDRequestNotificationsSEND_RESPONSENOTIFICATION_CONTINUE{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}01510x100WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}HttpCacheModule536870912falseNOTIFY_MODULE_STARTRequestNotificationsSEND_RESPONSE{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}01520x100WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}HttpCacheModule536870912false0NOTIFY_MODULE_ENDRequestNotificationsSEND_RESPONSENOTIFICATION_CONTINUE{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}01510x100WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}CustomErrorModule536870912falseNOTIFY_MODULE_STARTRequestNotificationsSEND_RESPONSE{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}010330x0WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}5000500.htmGENERAL_SEND_CUSTOM_ERROR{D42CF7EF-DE92-473E-8B6C-621EA663113A}01520x100WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}CustomErrorModule536870912false0NOTIFY_MODULE_ENDRequestNotificationsSEND_RESPONSENOTIFICATION_CONTINUE{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}014140x80WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}false2200HTTPSYS_CACHEABLECacheVERB_NOT_GETNO_CACHE{AC1D69F1-BF33-4CA0-9313-BCA13873E1DC}014350x0WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}GENERAL_FLUSH_RESPONSE_START{D42CF7EF-DE92-473E-8B6C-621EA663113A}014470x0WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}Cache-Control: private Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/8.5GENERAL_RESPONSE_HEADERS{D42CF7EF-DE92-473E-8B6C-621EA663113A}015490x0WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">< html xmlns="http://www.w3.org/1999/xhtml"> < head> < title>IIS 8.5 Detailed Error - 500.0 - Internal Server Error</title> < style type="text/css"> < !-- body{margin:0;font-size:.7em;font-family:Verdana,Arial,Helvetica,sans-serif;} code{margin:0;color:#006600;font-size:1.1em;font-weight:bold;} .config_source code{font-size:.8em;color:#000000;} pre{margin:0;font-size:1.4em;word-wrap:break-word;} ul,ol{margin:10px 0 10px 5px;} ul.first,ol.first{margin-top:5px;} fieldset{padding:0 15px 10px 15px;word-break:break-all;} .summary-container fieldset{padding-bottom:5px;margin-top:4px;} legend.no-expand-all{padding:2px 15px 4px 10px;margin:0 0 0 -12px;} legend{color:#333333;;margin:4px 0 8px -12px;_margin-top:0px; font-weight:bold;font-size:1em;} a:link,a:visited{color:#007EFF;font-weight:bold;} a:hover{text-decoration:none;} h1{font-size:2.4em;margin:0;color:#FFF;} h2{font-size:1.7em;margin:0;color:#CC0000;} h3{font-size:1.4em;margin:10px 0 0 0;color:#CC0000;} h4{font-size:1.2em;margin:10px 0 5px 0; }#header{width:96%;margin:0 0 0 0;padding:6px 2% 6px 2%;font-family:"trebuchet MS",Verdana,sans-serif; color:#FFF;background-color:#5C87B2; }#content{margin:0 0 0 2%;position:relative;} .summary-container,.content-container{background:#FFF;width:96%;margin-top:8px;padding:10px;position:relative;} .content-container p{margin:0 0 10px 0; }#details-left{width:35%;float:left;margin-right:2%; }#details-right{width:63%;float:left;overflow:hidden; }#server_version{width:96%;_height:1px;min-height:1px;margin:0 0 5px 0;padding:11px 2% 8px 2%;color:#FFFFFF; background-color:#5A7FA5;border-bottom:1px solid #C1CFDD;border-top:1px solid #4A6C8E;font-weight:normal; font-size:1em;color:#FFF;text-align:right; }#server_version p{margin:5px 0;} table{margin:4px 0 4px 0;width:100%;border:none;} td,th{vertical-align:top;padding:3px 0;text-align:left;font-weight:normal;border:none;} th{width:30%;text-align:right;padding-right:2%;font-weight:bold;} thead th{background-color:#ebebeb;width:25%; }#details-right th{width:20%;} table tr.alt td,table tr.alt th{} .highlight-code{color:#CC0000;font-weight:bold;font-style:italic;} .clear{clear:both;} .preferred{padding:0 5px 2px 5px;font-weight:normal;background:#006633;color:#FFF;font-size:.8em;} --> < /style> < /head> < body> < div id="content"> < div class="content-container"> <h3>HTTP Error 500.0 - Internal Server Error</h3> <h4>The FastCGI process has failed frequently recently. Try the request again in a while</h4> < /div> < div class="content-container"><fieldset><h4>Most likely causes:</h4> <ul> %09<li>IIS received the request; however, an internal error occurred during the processing of the request. The root cause of this error depends on which module handles the request and what was happening in the worker process when this error occurred.</li> %09<li>IIS was not able to access the web.config file for the Web site or application. This can occur if the NTFS permissions are set incorrectly.</li> %09<li>IIS was not able to process configuration for the Web site or application.</li> %09<li>The authenticated user does not have permission to use this DLL.</li> %09<li>The request is mapped to a managed handler but the .NET Extensibility Feature is not installed.</li> </ul> </fieldset> < /div> < div class="content-container"><fieldset><h4>Things you can try:</h4> <ul> %09<li>Ensure that the NTFS permissions for the web.config file are correct and allow access to the Web server's machine account.</li> %09<li>Check the event logs to see if any additional information was logged.</li> %09<li>Verify the permissions for the DLL.</li> %09<li>Install the .NET Extensibility feature if the request is mapped to a managed handler.</li> %09<li>Create a tracing rule to track failed requests for this HTTP status code. For more information about creating a tracing rule for failed requests, click <a href="http://go.microsoft.com/fwlink/?LinkID=66439">here</a>. </li> </ul> </fieldset> < /div> < div class="content-container"> <fieldset><h4>Detailed Error Information:</h4> <div id="details-left"> <table border="0" cellpadding="0" cellspacing="0"> <tr class="alt"><th>Module</th><td>&nbsp;&nbsp;&nbsp;FastCgiModule</td></tr> <tr><th>Notification</th><td>&nbsp;&nbsp;&nbsp;ExecuteRequestHandler</td></tr> <tr class="alt"><th>Handler</th><td>&nbsp;&nbsp;&nbsp;PHP_via_FastCGI</td></tr><tr><th>Error Code</th><td>&nbsp;&nbsp;&nbsp;0x80004005</td></tr> </table> </div> <div id="details-right"> <table border="0" cellpadding="0" cellspacing="0"> <tr class="alt"><th>Requested URL</th><td>&nbsp;&nbsp;&nbsp;https://10.80.181.105:443/standby_cx_details.php</td></tr><tr><th>Physical Path</th><td>&nbsp;&nbsp;&nbsp;C:\home\svsystems\admin\web\standby_cx_details.php</td></tr> <tr class="alt"><th>Logon Method</th><td>&nbsp;&nbsp;&nbsp;Anonymous</td></tr> <tr><th>Logon User</th><td>&nbsp;&nbsp;&nbsp;Anonymous</td></tr> <tr class="alt"><th>Request Tracing Directory</th><td>&nbsp;&nbsp;&nbsp;C:\inetpub\logs\FailedReqLogFiles</td></tr> </table> <div class="clear"></div> </div> </fieldset> < /div> < div class="content-container"> <fieldset><h4>More Information:</h4> This error means that there was a problem while processing the request. The request was received by the Web server, but during processing a fatal error occurred, causing the 500 error. <p><a href="http://go.microsoft.com/fwlink/?LinkID=62293&amp;IIS70Error=500,0,0x80004005,9600">View more information &raquo;</a></p> <p>Microsoft Knowledge Base Articles:</p> <ul><li>294807</li></ul> </fieldset> < /div> < /div> < /body> < /html> GENERAL_RESPONSE_ENTITY_BUFFER{D42CF7EF-DE92-473E-8B6C-621EA663113A}014360x0WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}60690GENERAL_FLUSH_RESPONSE_ENDThe operation completed successfully. (0x0){D42CF7EF-DE92-473E-8B6C-621EA663113A}01020x0WIN-VCON105-CS{80003856-0003-A100-B63F-84710C7967BB}60691435000GENERAL_REQUEST_END{D42CF7EF-DE92-473E-8B6C-621EA663113A}

===============================================================================

Trace 2:

01010x0WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}1DefaultAppPool16106276760https://10.80.181.105:443/get_file_replication_config.php?id=BBA9CC4A-E491-9C46-99725DFEC5674710POSTGENERAL_REQUEST_START{D42CF7EF-DE92-473E-8B6C-621EA663113A}01540x100WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}RequestMonitorModulePRE_BEGIN_REQUEST_STARTRequestNotifications{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}01550x100WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}RequestMonitorModule0PRE_BEGIN_REQUEST_ENDRequestNotificationsNOTIFICATION_CONTINUE{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}01540x100WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}FailedRequestsTracingModulePRE_BEGIN_REQUEST_STARTRequestNotifications{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}01550x100WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}FailedRequestsTracingModule0PRE_BEGIN_REQUEST_ENDRequestNotificationsNOTIFICATION_CONTINUE{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}014550x0WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}10.80.30.1136515110.80.181.105443GENERAL_ENDPOINT_INFORMATION{D42CF7EF-DE92-473E-8B6C-621EA663113A}014500x0WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}Content-Length: 0 Content-Type: application/x-www-form-urlencoded Accept: */* Host: 10.80.181.105GENERAL_REQUEST_HEADERS{D42CF7EF-DE92-473E-8B6C-621EA663113A}014120x80WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}/get_file_replication_config.php?id=BBA9CC4A-E491-9C46-99725DFEC5674710URL_CACHE_ACCESS_STARTCache{AC1D69F1-BF33-4CA0-9313-BCA13873E1DC}014130x80WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}truefalse0URL_CACHE_ACCESS_ENDCacheThe operation completed successfully. (0x0){AC1D69F1-BF33-4CA0-9313-BCA13873E1DC}014300x0WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}513GENERAL_GET_URL_METADATA{D42CF7EF-DE92-473E-8B6C-621EA663113A}014430x0WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}PHP_via_FastCGIFastCgiModuleC:\php5nts\php-cgi.exeHANDLER_CHANGED{D42CF7EF-DE92-473E-8B6C-621EA663113A}01510x100WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}HttpCacheModule1falseNOTIFY_MODULE_STARTRequestNotificationsBEGIN_REQUEST{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}01520x100WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}HttpCacheModule1false0NOTIFY_MODULE_ENDRequestNotificationsBEGIN_REQUESTNOTIFICATION_CONTINUE{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}01510x100WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}RequestFilteringModule1falseNOTIFY_MODULE_STARTRequestNotificationsBEGIN_REQUEST{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}01520x100WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}RequestFilteringModule1false0NOTIFY_MODULE_ENDRequestNotificationsBEGIN_REQUESTNOTIFICATION_CONTINUE{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}01510x100WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}FailedRequestsTracingModule1falseNOTIFY_MODULE_STARTRequestNotificationsBEGIN_REQUEST{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}01520x100WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}FailedRequestsTracingModule1false0NOTIFY_MODULE_ENDRequestNotificationsBEGIN_REQUESTNOTIFICATION_CONTINUE{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}01510x100WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}AnonymousAuthenticationModule2falseNOTIFY_MODULE_STARTRequestNotificationsAUTHENTICATE_REQUEST{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}014100x2WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}1AUTH_STARTAuthenticationAnonymous{C33BBE8F-985B-4080-81E6-005F1A06B9E2}014270x2WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}1AUTH_REQUEST_AUTH_TYPEAuthenticationAnonymous{C33BBE8F-985B-4080-81E6-005F1A06B9E2}014110x2WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}4false2AUTH_SUCCEEDEDAuthenticationNTImpersonationImpersonate{C33BBE8F-985B-4080-81E6-005F1A06B9E2}014440x0WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}trueUSER_SET{D42CF7EF-DE92-473E-8B6C-621EA663113A}014280x2WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}AUTH_ENDAuthentication{C33BBE8F-985B-4080-81E6-005F1A06B9E2}01520x100WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}AnonymousAuthenticationModule2false0NOTIFY_MODULE_ENDRequestNotificationsAUTHENTICATE_REQUESTNOTIFICATION_CONTINUE{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}01510x100WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}HttpCacheModule8falseNOTIFY_MODULE_STARTRequestNotificationsRESOLVE_REQUEST_CACHE{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}014150x80WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}OUTPUT_CACHE_LOOKUP_STARTCache{AC1D69F1-BF33-4CA0-9313-BCA13873E1DC}014160x80WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}0OUTPUT_CACHE_LOOKUP_ENDCacheNOT_FOUND{AC1D69F1-BF33-4CA0-9313-BCA13873E1DC}01520x100WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}HttpCacheModule8false0NOTIFY_MODULE_ENDRequestNotificationsRESOLVE_REQUEST_CACHENOTIFICATION_CONTINUE{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}01510x100WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}StaticCompressionModule16falseNOTIFY_MODULE_STARTRequestNotificationsMAP_REQUEST_HANDLER{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}01520x100WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}StaticCompressionModule16false0NOTIFY_MODULE_ENDRequestNotificationsMAP_REQUEST_HANDLERNOTIFICATION_CONTINUE{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}01510x100WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}FastCgiModule128falseNOTIFY_MODULE_STARTRequestNotificationsEXECUTE_REQUEST_HANDLER{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}01240x1000WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}FASTCGI_RAPID_FAILURE_PROTECTIONFastCGI{E3642ACC-3627-42B0-8372-867BAA033B07}013180x100WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}The FastCGI process has failed frequently recently. Try the request again in a whileSET_RESPONSE_ERROR_DESCRIPTIONRequestNotifications{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}013160x100WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}FastCgiModule128500Internal Server Error02147500037MODULE_SET_RESPONSE_ERROR_STATUSRequestNotificationsEXECUTE_REQUEST_HANDLERUnspecified error (0x80004005){002E91E3-E7AE-44AB-8E07-99230FFA6ADE}01520x100WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}FastCgiModule128false2NOTIFY_MODULE_ENDRequestNotificationsEXECUTE_REQUEST_HANDLERNOTIFICATION_FINISH_REQUEST{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}01510x100WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}HttpLoggingModule536870912falseNOTIFY_MODULE_STARTRequestNotificationsSEND_RESPONSE{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}01520x100WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}HttpLoggingModule536870912false0NOTIFY_MODULE_ENDRequestNotificationsSEND_RESPONSENOTIFICATION_CONTINUE{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}01510x100WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}ProtocolSupportModule536870912falseNOTIFY_MODULE_STARTRequestNotificationsSEND_RESPONSE{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}01520x100WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}ProtocolSupportModule536870912false0NOTIFY_MODULE_ENDRequestNotificationsSEND_RESPONSENOTIFICATION_CONTINUE{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}01510x100WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}HttpCacheModule536870912falseNOTIFY_MODULE_STARTRequestNotificationsSEND_RESPONSE{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}01520x100WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}HttpCacheModule536870912false0NOTIFY_MODULE_ENDRequestNotificationsSEND_RESPONSENOTIFICATION_CONTINUE{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}01510x100WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}CustomErrorModule536870912falseNOTIFY_MODULE_STARTRequestNotificationsSEND_RESPONSE{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}010330x0WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}5000500.htmGENERAL_SEND_CUSTOM_ERROR{D42CF7EF-DE92-473E-8B6C-621EA663113A}01520x100WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}CustomErrorModule536870912false0NOTIFY_MODULE_ENDRequestNotificationsSEND_RESPONSENOTIFICATION_CONTINUE{002E91E3-E7AE-44AB-8E07-99230FFA6ADE}014140x80WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}false2200HTTPSYS_CACHEABLECacheVERB_NOT_GETNO_CACHE{AC1D69F1-BF33-4CA0-9313-BCA13873E1DC}014350x0WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}GENERAL_FLUSH_RESPONSE_START{D42CF7EF-DE92-473E-8B6C-621EA663113A}014470x0WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}Cache-Control: private Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/8.5GENERAL_RESPONSE_HEADERS{D42CF7EF-DE92-473E-8B6C-621EA663113A}015490x0WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">< html xmlns="http://www.w3.org/1999/xhtml"> < head> < title>IIS 8.5 Detailed Error - 500.0 - Internal Server Error</title> < style type="text/css"> < !-- body{margin:0;font-size:.7em;font-family:Verdana,Arial,Helvetica,sans-serif;} code{margin:0;color:#006600;font-size:1.1em;font-weight:bold;} .config_source code{font-size:.8em;color:#000000;} pre{margin:0;font-size:1.4em;word-wrap:break-word;} ul,ol{margin:10px 0 10px 5px;} ul.first,ol.first{margin-top:5px;} fieldset{padding:0 15px 10px 15px;word-break:break-all;} .summary-container fieldset{padding-bottom:5px;margin-top:4px;} legend.no-expand-all{padding:2px 15px 4px 10px;margin:0 0 0 -12px;} legend{color:#333333;;margin:4px 0 8px -12px;_margin-top:0px; font-weight:bold;font-size:1em;} a:link,a:visited{color:#007EFF;font-weight:bold;} a:hover{text-decoration:none;} h1{font-size:2.4em;margin:0;color:#FFF;} h2{font-size:1.7em;margin:0;color:#CC0000;} h3{font-size:1.4em;margin:10px 0 0 0;color:#CC0000;} h4{font-size:1.2em;margin:10px 0 5px 0; }#header{width:96%;margin:0 0 0 0;padding:6px 2% 6px 2%;font-family:"trebuchet MS",Verdana,sans-serif; color:#FFF;background-color:#5C87B2; }#content{margin:0 0 0 2%;position:relative;} .summary-container,.content-container{background:#FFF;width:96%;margin-top:8px;padding:10px;position:relative;} .content-container p{margin:0 0 10px 0; }#details-left{width:35%;float:left;margin-right:2%; }#details-right{width:63%;float:left;overflow:hidden; }#server_version{width:96%;_height:1px;min-height:1px;margin:0 0 5px 0;padding:11px 2% 8px 2%;color:#FFFFFF; background-color:#5A7FA5;border-bottom:1px solid #C1CFDD;border-top:1px solid #4A6C8E;font-weight:normal; font-size:1em;color:#FFF;text-align:right; }#server_version p{margin:5px 0;} table{margin:4px 0 4px 0;width:100%;border:none;} td,th{vertical-align:top;padding:3px 0;text-align:left;font-weight:normal;border:none;} th{width:30%;text-align:right;padding-right:2%;font-weight:bold;} thead th{background-color:#ebebeb;width:25%; }#details-right th{width:20%;} table tr.alt td,table tr.alt th{} .highlight-code{color:#CC0000;font-weight:bold;font-style:italic;} .clear{clear:both;} .preferred{padding:0 5px 2px 5px;font-weight:normal;background:#006633;color:#FFF;font-size:.8em;} --> < /style> < /head> < body> < div id="content"> < div class="content-container"> <h3>HTTP Error 500.0 - Internal Server Error</h3> <h4>The FastCGI process has failed frequently recently. Try the request again in a while</h4> < /div> < div class="content-container"><fieldset><h4>Most likely causes:</h4> <ul> %09<li>IIS received the request; however, an internal error occurred during the processing of the request. The root cause of this error depends on which module handles the request and what was happening in the worker process when this error occurred.</li> %09<li>IIS was not able to access the web.config file for the Web site or application. This can occur if the NTFS permissions are set incorrectly.</li> %09<li>IIS was not able to process configuration for the Web site or application.</li> %09<li>The authenticated user does not have permission to use this DLL.</li> %09<li>The request is mapped to a managed handler but the .NET Extensibility Feature is not installed.</li> </ul> </fieldset> < /div> < div class="content-container"><fieldset><h4>Things you can try:</h4> <ul> %09<li>Ensure that the NTFS permissions for the web.config file are correct and allow access to the Web server's machine account.</li> %09<li>Check the event logs to see if any additional information was logged.</li> %09<li>Verify the permissions for the DLL.</li> %09<li>Install the .NET Extensibility feature if the request is mapped to a managed handler.</li> %09<li>Create a tracing rule to track failed requests for this HTTP status code. For more information about creating a tracing rule for failed requests, click <a href="http://go.microsoft.com/fwlink/?LinkID=66439">here</a>. </li> </ul> </fieldset> < /div> < div class="content-container"> <fieldset><h4>Detailed Error Information:</h4> <div id="details-left"> <table border="0" cellpadding="0" cellspacing="0"> <tr class="alt"><th>Module</th><td>&nbsp;&nbsp;&nbsp;FastCgiModule</td></tr> <tr><th>Notification</th><td>&nbsp;&nbsp;&nbsp;ExecuteRequestHandler</td></tr> <tr class="alt"><th>Handler</th><td>&nbsp;&nbsp;&nbsp;PHP_via_FastCGI</td></tr><tr><th>Error Code</th><td>&nbsp;&nbsp;&nbsp;0x80004005</td></tr> </table> </div> <div id="details-right"> <table border="0" cellpadding="0" cellspacing="0"> <tr class="alt"><th>Requested URL</th><td>&nbsp;&nbsp;&nbsp;https://10.80.181.105:443/get_file_replication_config.php?id=BBA9CC4A-E491-9C46-99725DFEC5674710</td></tr><tr><th>Physical Path</th><td>&nbsp;&nbsp;&nbsp;C:\home\svsystems\admin\web\get_file_replication_config.php</td></tr> <tr class="alt"><th>Logon Method</th><td>&nbsp;&nbsp;&nbsp;Anonymous</td></tr> <tr><th>Logon User</th><td>&nbsp;&nbsp;&nbsp;Anonymous</td></tr><tr class="alt"><th>Request Tracing Directory</th><td>&nbsp;&nbsp;&nbsp;C:\inetpub\logs\FailedReqLogFiles</td></tr> </table> <div class="clear"></div> </div> </fieldset> < /div> < div class="content-container"> <fieldset><h4>More Information:</h4> This error means that there was a problem while processing the request. The request was received by the Web server, but during processing a fatal error occurred, causing the 500 error. <p><a href="http://go.microsoft.com/fwlink/?LinkID=62293&amp;IIS70Error=500,0,0x80004005,9600">View more information &raquo;</a></p> <p>Microsoft Knowledge Base Articles:</p> <ul><li>294807</li></ul> </fieldset> < /div> < /div> < /body> < /html> GENERAL_RESPONSE_ENTITY_BUFFER{D42CF7EF-DE92-473E-8B6C-621EA663113A}014360x0WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}61330GENERAL_FLUSH_RESPONSE_ENDThe operation completed successfully. (0x0){D42CF7EF-DE92-473E-8B6C-621EA663113A}01020x0WIN-VCON105-CS{80003A5D-0001-D100-B63F-84710C7967BB}61331915000GENERAL_REQUEST_END{D42CF7EF-DE92-473E-8B6C-621EA663113A}

IIS/PHP Install on Win Server 2008R2

$
0
0

Hello,

I am trying to build a webserver with PHP support. I am trying to install PHP 5.5.15 (NTS)&nbsp;on Windows Server 2008 R2, using IIS 7.5. I have installed all available service packs/updates to Server 2008. I have downloaded the Windows msi&nbsp;installer from from php.net for php. While I am very Windows networking compliant (MCSE, 20 yrs experience), I am an extreme novice when it comes to php and am not a programmer. I am having three (3) problems - 1) I am not sure I have installed php, or installed it correctly. How do I tell? I have installed CGI and related services/features on Server 2008. 2) When I double click win-cgi nothing happens, so that's why I think I may not have installed php, or installed it properly. I am trying to execute an open source php script that creates a social networking/dating website. I have edited the php.ini file as directed by the script install instructions, but when I attempt to execute the script, I get the third 3) problem&nbsp;with the following error message:

You have 4 error(s):

1) Please install "PDO" PHP extension with MySQL driver.

2) Please install "GD" graphics PHP extension.

3) Please install "cURL" PHP library.

4) Please install the "mbstring" PHP extension.

I have placed the php files in a folder called "PHP55" and confirmed the files are in the folder. I am running MySQL server v5.6. Please help. I don't know what is missing or what I am doing wrong. If I had had hair, I wouldn't. I would have pulled it all out by now. So all that remains is deciding which temple to point the gun at. I believe the resolution is simple, just not sure how to resolve it. You can view the error message at:http://www.blackpeopleexchange.com/_install. Thank you very much for your help.

Regards,

Larry            

Joomla website is becoming too slow

$
0
0

Hi,

I have a Joomla 2.5 running on iis8 with fastcgi, I noticed lately that when the visitor reaches to 300-400 simultaneously the website becomes to slow, even the point that it will return a 500 Service Unavailable.

Restarting the IIS will then solve the issue.

Can someone help me sort this thing, is there any settings that I missed like setting in the php.ini or in the fastcgi


And additional info about my problem, when the website encounter error 500, only the php application is not running static html can be opened let say mywebsite.com/app.php is not opening but mywebsite.com/app.html is opening


IIS 7 + INSTALL PHP

$
0
0

Hey IIS Team,

i've got a little problem.

My Problem is that i've installed PHP over the Handlerzuordnungen ( Modul ) and if i go to my site, i've got the Error:

Thank you for your Help!

MediaWiki Every other Page refresh no Stylesheet

$
0
0

Hello,

I have come to the conclusion that IIS is my problem at the moment as I have fallen back to prior version of PHP and mediawiki with the same result.

Currently I have the same situation on both IIS 7.5 and 8 when I navigate to my mediawiki site it will render fine and then I do a page refresh and it returns with no stylesheet. I then refresh again and all looks fine.

Looking in a fiddler session when the stylesheet fails to load properly I see the following header on the URL supposedly fetching the CSS.

Cache 
If-Modified-Since: Fri, 03 Oct 2014 00:18:06 GMT
Pragma: no-cache

The problem seems that the file is cached so it wont refresh itself and it ends up being read by the browser as a bad MIME type and is an empty file resulting in the plain HTML.

I do not have any URL Rewrite rules in place and have the same behavior from local server host and various remote machines under different browsers so its something being served back.

IIS/PHP working but no images on website

$
0
0

Hello,

 

Currently I have a W2003 server with fastCGI running an adserver (Revive adserver).

I am moving to a new hosting company. The new server is W2008 R2. FastCGI and PHP seem to be working. The adserver works, but for an important detail, the site is plain text, no image, no color... You can see the difference here:http://netinred.com/adserver.jpg

I have tried different releases of PHP without any luck. Now the only difference between the 2 servers is IIS and Windows. They have same PHP, and same adserver. But my experience with IIS7 is very little compared with IIS6...

If anybody has any idea or needs any extra information, please feel free to let me know.

Thank you in advance,2 version os website

Error 500 if Server-Side Processing Exceeds 5 Seconds - PHP 5.5.10, IIS 7.0, FastCGI

$
0
0

I'm moving a website off of on old server running Windows Server 2003 Standard (32-bit), IIS 6.0, PHP 5.3.12, and CGI and onto a new server running Windows Server 2008 Standard (32-bit), IIS 7.0, PHP 5.5.10 and FastCGI. 

On the new server, if a processing step exceeds 5 seconds, the page stops responding and then after the activityTimeout configured in applicationHost.Config an error 500 appears, "The FastCGI process exceeded configured activity timeout".  On the old server, the same processing step takes 29 seconds, but finishes successfully.  The processing step in particular is querying a database to prepare a page of search options.  If I reduce the size of the database table to 400,000 records, the processing step takes 4.91 seconds on the new server and succeeds.  If I increase to 500,000 records, the processing step takes just over 5 seconds and fails.  The entire table is around 880,000 records and will grow a bit through time.

So, the big question is why does IIS 7.0, PHP 5.5.10, and FastCGI give up after 5 seconds?  If I view the processes tab on the server, I can see that PHP-CGI.exe has one CPU fully occupied for the processing time -- I’ve observed closer to 10 seconds on a longer processing step before PHP-CGI.exe returns to 0 CPU usage.  So, it seems to me that it’s doing the job, but some other 5 second timer out there says “if you don’t talk to me within 5 seconds, I’m going to give up”.  In PHP.ini, max_execution_time is set to 300.

Thank you in advance for any advice.

Running 32bit App on Win64 Using IIS

$
0
0

I am moving to a Win7 64-bit IIS computer from a Win7 32-bit IIS computer.  I have a problem with one php script that starts Office Word.  It does not work on 64-bit IIS.  On IIS I enabled the app pool to run 32-bit apps to run and set the 'Identity' of the app pool to a user.  This works on Win7 32-bit IIS Express and IIS.  It also works on Win7 64-bit IIS Express.  I boiled the script down to Word simply writing a one line text file.

<?php
        if (is_dir("C:\Program Files (x86)")){$runWord = '"C:\Program Files (x86)\Microsoft Office\Office14\Winword.exe C:\userdata\tripq\trip-web\test.dotm"';
        } else {$runWord = '"C:\Program Files\Microsoft Office\Office14\Winword.exe" "C:\userdata\tripq\trip-web\test.dotm"';
        }$WshShell1 = new COM("WScript.Shell");$oExec1 = $WshShell1->Run($runWord, 7, true);$oExec1 = null;
?>

I have looked for several days now and can't find anything to help.  On the few postings I have found the solution always appears to be to switch to the 64-bit version.  There are several issues with switching to Office 64-bit so I would like to try to get Word 32-bit working. 

This is used in a small office with about 10 users.

Do you have any ideas on what to try?

Viewing all 205 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>