php5 PHP531 no longer supports ISAPI
To use a higher version of PHP on IIS6, the fastCGI extension must be installed. OMicrosoft Fastcgi Extension for IIS 5.1 and 6.0
Then let your IIS6 support FastCGI.
Then set the CGI and FastCGI parameters in php.ini: fastcgi.impersonate = 1 fastcgi.logging = 0 cgi.fix_pathinfo=1 cgi.force_redirect =0 cgi.rfc2616 _headers= 1 Then make a batch file and run the code: c %windir%system32inetsrvfcgiconfig.js -add -section:"PHP" ^ -extension:php -path:"C:PHPphp-cgi.exe" Replace C:PHPphp-cgi.exe with your own installation path! If you are using phpMyadmin version 3.1.0rc and need to change .libraries/select_lang.lib.php, you need to change lines 147 and 148 if (($envType == 1 && eregi('^(' . $expr . ')(;q=[0-9]\.[0-9])?$', $str)) || ( $envType == 2 && eregi('((|[|;[[:space:]])(' . $expr . ')(;|]|))', $str))) { Replace with : if (($envType == 1 && preg_match('^(' . $expr . ')(;q=[0-9]\.[0-9])?$', $str))|| ($envType == 2 && preg_match('((|[|;[[:space:]])(' . $expr . ')(;|]|))', $str))) { An error will be reported: in .librariesselect_lang.lib.php#147 eregi() is deprecated Backtrace .librariesselect_lang.lib.php#147: eregi() .libraries select_lang.lib.php# 81: PMA_langDetect( string zh-cn, integer 1, ) .librariesselect_lang.lib.php#361: PMA_langCheck() .librariescommon.inc.php#560: require_once(.librariess elect_lang.lib .php) .index.php#34: require_once(.librariescommon.inc.php) Also note: Install PHP5.3.1 on IIS, the official recommendation is Non-thread-safe build of PHP Download address:
PHP for Windows: Binaries and Sources Releases.
Detailed introduction:http://www.php.net/manual/en/install.windows.iis6.php
The above introduces php5 PHP531 no longer supports ISAPI, including php5 content. I hope it will be helpful to friends who are interested in PHP tutorials.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

The differences between php5 and php8 are in terms of performance, language structure, type system, error handling, asynchronous programming, standard library functions and security. Detailed introduction: 1. Performance improvement. Compared with PHP5, PHP8 has a huge improvement in performance. PHP8 introduces a JIT compiler, which can compile and optimize some high-frequency execution codes, thereby improving the running speed; 2. Improved language structure, PHP8 introduces some new language structures and functions. PHP8 supports named parameters, allowing developers to pass parameter names instead of parameter order, etc.

How to change port 80 in php5: 1. Edit the port number in the Apache server configuration file; 2. Edit the PHP configuration file to ensure that PHP works on the new port; 3. Restart the Apache server, and the PHP application will start running on the new port. run on the port.

Solution steps for php5 not listening to port 9000: 1. Check the PHP-FPM configuration file; 2. Restart the PHP-FPM service; 3. Turn off the firewall or configure port forwarding; 4. Check whether other processes occupy port 9000.

The syntax differences between php7 and php5 are: 1. PHP7 introduces strict type declarations, while the type of PHP5 variables is implicit; 2. PHP7 introduces support for scalar type declarations, but PHP5 does not; 3. PHP7 introduces NULL Merge operator, while PHP5 checks whether a variable exists and is not null, you need to use a conditional statement; 4. PHP7 adds a new comparison operator "<=>", but PHP5 does not; 5. PHP7 introduces a new feature anonymous class , while PHP5 does not.

The differences between the version of php7 and 5 include performance improvements, scalar type declarations, return value type declarations, exception handling improvements, anonymous classes, syntax improvements, new operators, enhanced error handling and the removal of some old features. Detailed introduction: 1. Performance improvement. PHP7 introduces a new Zend engine, named Zend Engine 3.0, which brings significant performance improvement. The performance of PHP7 is approximately twice that of PHP5, mainly through improved memory management. , optimized function calls and exception handling, enhanced garbage collection, etc.

When using PHP5, some users may encounter the situation that port 9000 cannot be listened to. At this time, we need to perform some configuration and troubleshooting work to solve this problem.

If you are a website administrator, you may encounter a situation where you need to change the PHP5 port from the default port 80. This process may be a little hurried, but as long as you follow the steps below, it will be easily completed.

PHP is a widely used server-side programming language used to develop dynamic websites and applications. In recent years, the release of PHP7 has attracted some attention. PHP7 has many improvements and optimizations over previous versions (such as PHP5). In this article, we will explore the syntax differences between PHP7 and PHP5.
