I just installed it tonight. Not that bad.
Download this:
winSCP
http://winscp.net/eng/download.php#download2
Putty
http://the.earth.li/~sgtatham/putty/latest/x86/putty.exe
Then download the newest eaccelerator-0.9.5 (As of 1-15-2007)
http://sourceforge.net/projects/eaccelerator
Follow this tutorial
http://www.eaccelerator.net/wiki/InstallFromSource
Load up winSCP, Log in using your SSH details.
Make sure you are in your root directory (/)
Create a new folder called ea
Then extract the eaccelerator-0.9.5 to your desktop and transfer the whole folder to the ea folder
Once uploaded use the tutorial above:
Load up SSH (I use putty)
type: Wait for each command to finish before typing the next line.
phpize
./configure
make
make install
mkdir /tmp/eaccelerator
chmod 0777 /tmp/eaccelerator
Then copy the default values to put in php.ini
zend_extension="
/usr/lib/php4/eaccelerator.so"
eaccelerator.shm_size="16"
eaccelerator.cache_dir="/tmp/eaccelerator"
eaccelerator.enable="1"
eaccelerator.optimizer="1"
eaccelerator.check_mtime="1"
eaccelerator.debug="0"
eaccelerator.filter=""
eaccelerator.shm_max="0"
eaccelerator.shm_ttl="0"
eaccelerator.shm_prune_period="0"
eaccelerator.shm_only="0"
eaccelerator.compress="1"
eaccelerator.compress_level="9"
I had to change the "zend_extension" path to point to my eaccelerator.so file.
Restart apache (httpd), I did this from WHM There is a ssh command but I dont know what it is.
Then in ssh, type
php -v
It should say:
Code:
PHP 4.4.3 (cli) (built: Aug 11 2006 00:31:02)
Copyright (c) 1997-2006 The PHP Group
Zend Engine v1.3.0, Copyright (c) 1998-2004 Zend Technologies
with eAccelerator v0.9.5, Copyright (c) 2004-2006 eAccelerator, by eAccelerator
If you get the above, the it's installed correctly.