Which binaries are thread safe / non-streamed for use with PHP / WAMP?

I am trying to configure remote debugging on the platform of Windows 7, WAMP Server 2.2, PHP, Komodo IDE. I need to select Komodo debugger DLL file from the following list:

  • nts-v6-x86
  • nts-vc9-x86
  • ts-v6-x86
  • TS-v9-x86

I do not know what type of binary code to choose in this situation. Can someone tell me?

+4
source share
2 answers

Wamp 2.2 was built with VC9. This means that to use PHP mod_php with Apache 2.2, you need a streaming, secure version of PHP.

For Fastcgi (with mod_fastcgi) or using the CLI, you can and should use a non-threading version (NTS).

+2
source

PHP binaries for Windows are distributed in versions that are not streaming (nts) or thread safe (ts) and are created against VC9 or VC6:

You must select the debugger that matches the installed PHP distribution.

+1
source

Source: https://habr.com/ru/post/1395818/


All Articles