Home  >  Article  >  Backend Development  >  PHP "Invalid access to memory location"_PHP Tutorial

PHP "Invalid access to memory location"_PHP Tutorial

WBOY
WBOYOriginal
2016-07-13 17:45:18910browse

In a newly configured PHP environment, or if configuration changes have just been made, such as a newly loaded DLL extension, when accessing the page, the error "Invalid memory location access." may occur. The main reason is that the DLL extension failed to load.

We need to find which DLL file has a problem loading. The troubleshooting method is:

Change display_startup_errors = Off in php.ini to display_startup_errors = On.

When you visit the PHP page, a PHP error dialog box will pop up on the server. You can clearly see which DLL file failed to load. Sometimes multiple DLL files fail to load. You need to comment with a semicolon (;) first. Remove the dll prompted in php.ini and continue to access it to check repeatedly.

After commenting out the problematic DLLs with semicolons (;), PHP can run normally.

The above is the method of searching online. The principle is correct, but when it comes to the specific problem I encountered, it doesn't have to be so troublesome. Pause IIS first, end the w3wp.exe process, delete the originally loaded dll, and re-add the new dll. Then restart IIS.

from:Doomsday blog

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/478683.htmlTechArticleNewly configured PHP environment, or just made configuration changes, such as a newly loaded DLL extension, access the page, maybe An invalid memory location access will occur. error. The main reason is DLL extension loading...
Statement:
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