Zendextensionmanager.dll--zend Extension Manager
Zend Extension Manager Minimalist installation Tutorial:
1, installation Zend Optimizer 3.3.0a:http://www.jb51.net/softs/9305.html
This will put the Zend Extension Manager v1.2.0, and plug in the Zend Optimizer 3.3.0a.
Zend Extension Manager principle:
1, open php.ini, find
[Zend]
Zend_extensi
Zend_extension_manager.optimizer_ts= "e:\Zend\ZendOptimizer-3.3.0\lib\Optimizer-3.3.0"
Let me explain:
When you install only optimizer or debugger zend_extension_ts is a DLL that points directly to optimizer or debugger, now this points to Zendextensionmanager
The Zendextensionmanager principle is to find the folder that Zend_extension_manager.optimizer_ts points to
Then go to the php-5.2.x folder and read the ZendOptimizer.dll under the folder
So the path structure is E:\......\optimizer-3.3.0\php-5.2.x\zendoptimizer.dll
But in the ZEND_EXTENSION_MANAGER.OPTIMIZER_TS, the parent directory of php-5.2.x is filled in.
Plug in Zend Debugger:
2, know the principle is much simpler after
Zend Debugger 5.2.10:http://downloads.zend.com/pdt/server-debugger/zenddebugger-5.2.10-cygwin_nt-i386.tar.gz
Just put the extracted 5_2_x_comp\zenddebugger.dll under such a path:
E:\Zend\ZendDebugger-5.2.10\php-5.2.x\ZendDebugger.dll
Don't forget to change 5_2_x_comp to php-5.2.x, I made this low-level mistake.
In PHP.ini Plus
Zend_extension_manager.debug_server_ts= "e:\Zend\ZendDebugger-5.2.10"
Zend_debugger.expose_remotely=allowed_hosts
Zend_debugger.allow_hosts=127.0.0.1/32,127.0.0.1/24
Put the dummy.php in the root directory of the website
Restart Apache,ok
The above describes the debugger optimizer and debugger compatibility problems, including the debugger aspects of the content, I hope that the PHP tutorial interested in a friend helpful.