Ubuntu Zend Framework Gotchas

May 23rd, 2006

I’m trying out the Zend Framework using the Apache and PHP Ubuntu packages, however have come across some issues regarding the default way Ubuntu configures them:

  1. mod_rewrite not enabled by default. There’s some information regarding that in this blog entry, basically you just need to execute the following command to enable the module:
  2. sudo ln -s /etc/apache2/mods-available/rewrite.load /etc/apache2/mods-enabled/rewrite.load

  3. Next if you want to use .htaccess files, as detailed in the Zend Manual then you have to edit the virtual host Apache config file (/etc/apache2/sites-available/default), specifically change the Allowoverride bits to:
  4. AllowOverride All

    Or as required.

Comments are closed.