Home Backend Development PHP7 Introduction to the process of upgrading ThinkPHP3.2.3 from php5 to php7

Introduction to the process of upgrading ThinkPHP3.2.3 from php5 to php7

Apr 14, 2021 am 10:38 AM

Introduction to the process of upgrading ThinkPHP3.2.3 from php5 to php7

First of all, does ThinkPHP3.2.3 support php7? Absolutely.

Under windows, the previous project was deployed in Apache2.4.17 php5.x version. Because the customer's network security scan found many vulnerabilities, including high-risk vulnerabilities in apache and php, as many as hundreds of times. , in urgent need of repair, if not repaired, there will be a risk of site closure.

So I contacted the software supplier, who previously promised to cooperate with the upgrade, but ultimately failed to upgrade. The reply given was that ThinkPHP3.2.3 cannot be deployed in php7.

So I had to rely on myself. After groping for three or four days, I finally upgraded successfully. Now I will share with you the general process.

Recommended (free): PHP7

1. Upgrade apache, download address http://httpd.apache.org/download.cgi , the downloaded version is, 2.4.33

The most important one is the configuration file as shown below:

##apache loading php support

PHPIniDir d:/GPS-LOCK/php/php.ini

LoadModule php7_module D:/GPS-LOCK/php/php7apache2_4.dll

Encountered many problems in this step, enable the PHPIniDir path, Apache could not start. Finally, it was found that the php.ini file referenced php_ptheads.dll multi-threading. After repeated attempts, the problem was solved.

2. Upgrade php, download address: https://windows.php.net/download/ What is downloaded here is 7.2.26,

Now we will summarize the problems expected when upgrading php7

1. Here you need to install the compiled vc class library version corresponding to php7, vc_redist.x64.exe, the installation is vc15

2, sql server database support

This is because php7 does not load the sql server related dll by default

3. You need to download Microsoft Drivers for PHP for SQL Server https://www.microsoft .com/en-us/download/details.aspx?id=20098, I downloaded version 7.2

Modify the location file as follows

4, In the php.ini file of php7, ext omits php_.dll. Just configure it as shown above. Currently, you need to copy the decompressed file to the php\ext directory.

3. I think the system can run normally under php7. As a result, the project uses multi-threading and requires PHP to support pthreads. It is about to crash. After adding extension=pthreads to the php.ini file, apache cannot start again. It turns out that ptheads needs to be run in cli mode. The ptheads download address is https://windows.php.net/downloads/pecl/releases/pthreads/

Unzip the download package

1. Put pthreadVC2. The dll file is placed in the php root directory

2. Copy php_pthreads.dll to the php\ext directory.

Start apache again and find that it cannot be started. After searching a lot of information, it turns out that ptheads needs Running in cli mode, my solution is to create two php.ini configuration files, one for the site to use php.ini and the other php-cli.ini file for ptheads to use. The contents of the files are the same. At this point, the upgrade is finally completed. .

Since the original poster was not born in a PHP major, he took many detours, but the loophole was finally fixed. If everyone also encounters this problem, you can communicate and discuss it together.

The above is the detailed content of Introduction to the process of upgrading ThinkPHP3.2.3 from php5 to php7. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to Use Sessions Effectively in PHP 7? How to Use Sessions Effectively in PHP 7? Mar 10, 2025 pm 06:20 PM

This article details effective PHP 7 session management, covering core functionalities like session_start(), $_SESSION, session_destroy(), and secure cookie handling. It emphasizes security best practices including HTTPS, session ID regeneration, s

How to Monitor PHP 7 Performance with Tools like New Relic? How to Monitor PHP 7 Performance with Tools like New Relic? Mar 10, 2025 pm 06:28 PM

This article explains how to monitor PHP 7 application performance using New Relic. It details New Relic's setup, key performance indicators (KPIs) like Apdex score and response time, bottleneck identification via transaction traces and error track

How to Upgrade from PHP 5.6 to PHP 7? How to Upgrade from PHP 5.6 to PHP 7? Mar 10, 2025 pm 06:29 PM

This article details upgrading PHP 5.6 to PHP 7, emphasizing crucial steps like backing up, checking server compatibility, and choosing an upgrade method (package manager, compiling, control panel, or web server configuration). It addresses potentia

How to Autoload Classes in PHP 7? How to Autoload Classes in PHP 7? Mar 10, 2025 pm 06:20 PM

This article explains PHP 7's autoloading, using spl_autoload_register() to load classes on demand. It details best practices like namespace-based autoloading and caching for performance optimization, addresses common issues (e.g., class not found

How to Use Git for Version Control in PHP 7 Projects? How to Use Git for Version Control in PHP 7 Projects? Mar 10, 2025 pm 06:27 PM

This article guides PHP 7 developers on using Git for version control. It covers initialization, staging, committing, ignoring files, remote repositories, branching, merging, conflict resolution, and essential Git commands. Best practices for effic

How to Deploy a PHP 7 Application to a Web Server? How to Deploy a PHP 7 Application to a Web Server? Mar 10, 2025 pm 06:28 PM

This article details deploying PHP 7 applications, covering methods (FTP, SSH, deployment tools), server configuration (Apache/Nginx, PHP-FPM), database setup, and crucial security considerations. It highlights common challenges like server compatib

How to Use Xdebug for Debugging PHP 7 Code? How to Use Xdebug for Debugging PHP 7 Code? Mar 10, 2025 pm 06:26 PM

This article explains how to use Xdebug for debugging PHP 7 code. It covers Xdebug configuration (installation, php.ini settings, IDE setup), breakpoint usage (conditional, function, remote), and troubleshooting connection issues. Effective debuggi

What is Object-Oriented Programming (OOP) in PHP 7? What is Object-Oriented Programming (OOP) in PHP 7? Mar 10, 2025 pm 02:53 PM

This article explains Object-Oriented Programming (OOP) in PHP 7, highlighting its benefits: modularity, reusability, maintainability, and improved code organization. It details classes, objects, inheritance, and polymorphism, illustrating their use

See all articles