> Van: Matthew Weier O'Phinney [mailto:[email protected]] > > * On Zend Server on my ubuntu install, I had to do a few things to > enable FastCGI: > > % cd /etc/apache2/mods-enabled > % sudo ln -s ../mods-available/fastcgi.load . > % sudo ln -s ../mods-available/fastcgi.conf . > % sudo ln -s ../mods-available/actions.load . > % sudo ln -s ../mods-available/actions.conf .
There is a Debian/Ubuntu tool for this, a2enmod (accompanied by a2dismod, a2ensite and a2dissite) % sudo a2enmod fastcgi % sudo a2enmod actions % sudo /etc/init.d/apache2 restart It's quicker and more fool proof. Vincent de Lau [email protected]
