Installing Turck MMCache
I am currently trying to install MMCache, but I'm stuck at one of the steps.1) Login as root in SSH
2) Run the following commands in the following order:
cd /
mkdir mmcache
cd mmcache
wget http://unc.dl.sourceforge.net/source...e-2.4.6.tar.gz
tar xvzf turck-mmcache-2.4.6.tar.gz
cd turck-mmcache-2.4.6
export PHP_PREFIX="/usr"
$PHP_PREFIX/bin/phpize
./configure --enable-mmcache=shared --with-php-config=$PHP_PREFIX/bin/php-config
make
make install
Starting from the red part, when I try to execute those commands in SSH, it says directory not found. When i replace phpize in the command with php, it freezes and doesn't respond.
What's the problem?