We have been using this PHP accelerator (0.9.X), on multiple servers, for a long time. It's used on some high traffic sites without any problem. Install: a) Download a copy of eAccelerator that is compatible with your version of PHP. This can be an issue with eAccelerator. Sometimes it can take a little time before the Windows binaries are available for the most recent version of PHP. Windows binaries: Since the release of the windows binaries are not always available, I decided to start offering eAccelerator windows binaries. b) Copy a compatible eaccelerator.dll to your PHP extensions folder (like: c:\php\extensions replace with your actual folder location). Make sure the configuration directive extension_dir in your php.ini is properly pointing to your extensions folder. Like: extension_dir = "c:/php/extensions" c) Create a folder (with the appropriate permissions) for the temporary cached files. For example: D:\tmp\eaccelerator d) Add the following to your php.ini (as the first loaded extension): extension="eaccelerator.dll" eaccelerator.shm_size="64" ; 20MB per heavy site ? eaccelerator.cache_dir="D:\tmp\eaccelerator" eaccelerator.enable="1" eaccelerator.optimizer="1" eaccelerator.check_mtime="1" ; 0 should be faster but will skip checking the modified date on your cached files eaccelerator.debug="0" eaccelerator.filter="" eaccelerator.shm_max="0" eaccelerator.shm_ttl="0" ( I have used 3600 = 1 hour) eaccelerator.shm_prune_period="0" ( testing 1800) eaccelerator.shm_only="0" (testing 1 this seem noticeably faster?) eaccelerator.compress="1" eaccelerator.compress_level="9" eaccelerator.keys = "shm" (testing) eaccelerator.sessions = "shm" (testing) eaccelerator.content = "shm" (testing) eaccelerator.admin.name="yourusername" (upto eAccelerator 0.9.4) eaccelerator.admin.password="yourpassword" (upto eAccelerator 0.9.4) eaccelerator.allowed_admin_path = "C:\MySites\sitebuddy\wwwroot\control.php" (NEW in eAccelerator 0.9.5) e) Restart your Web Server. f) WEB interface eAccelerator 0.9.4: This accelerator provides a real nice web interface. Use the provided eaccelerator.php (control.php in eAccelerator 0.9.5) to get data and perform certain operations. I recommend also renaming this file (for better security). Also read the "readme" for how to implement password security between your eAccelerator 0.9.4 install and this script (a password encryption script is provided). Basically you will end up with 2 new directives in your php.ini: eaccelerator.admin.name="PhpAdminName" eaccelerator.admin.password="$2$avd2.M04.$YOURAHsPASSWORDdsesENCRYPTEDdcETRmK3" and a modified eaccelerator.php like: