Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
bash
bash
cd /var/www/core
svn co http://code.google.com/p/terena-core/trunk 

Create some empty configuration filefiles, and change permissions so that the following directories and files are writable by the web server user. In most cases this is www-data:www-data:

Code Block
shell
shell
cd var/www/core/trunk
sudo touch application/configs/application.ini public/index.php public/.htaccess
sudo chown -v www-data:www-data cache data/logs data/mails languages uploads public/includes
sudo chown -v www-data:www-data public/.htaccess public/index.php application/configs/application.ini

...