This article mainly introduces how to solve the problem of invalid access to the php memory location. This article analyzes the cause of the problem, which is caused by sqlite extension. if you need it, refer to the following configuration environment:
Win2003SP2 + IIS6 + php5.26 + mysql5.0.51a + zend3.3a + PhpMyAdmin2.11.7.1 PHP execution method: isapi. Mysql is manually installed.
Solution and steps for "invalid memory location access" errors: (some invalid debugging steps are skipped ..)
1. enable IIS errors. no error cause is found!
2. check for IIS Extensions. The ISAPI, php. ini, and Mysql configurations, and the corresponding installation directory ACLs permissions are all correct.
3. reclaim IIS process. the error still shows "invalid memory location access "....
4. open display_startup_errors = On in php. ini. The problem is finally found... (Note: If you open display_startup_errors of php. ini, if php has an error, a prompt will be displayed, and there will be a record in the event viewer. If it is set to display_startup_errors = Off, no prompt will be displayed)
V. Error Analysis
The code is as follows:
Warning
Cannot load module 'sqlite 'because required module 'pdo' is no loaded
The above error message was finally found. Probably because SQLite desktop database support is enabled in the php. ini configuration, but the related pdo mode is not enabled, the pdo module loading fails .....
6. the solution is also very simple. because the php_sqlite.dll file is not loaded when it is loaded, the system prompts that the access to the memory location is invalid when running the phpinfo () function. Find the php. ini configuration file and remove the semicolon before "; extension = php_pdo.dll". extension = php_sqlite.dll
Then, clear the IIS application pool process and solve the problem completely.