Versions Compared

Key

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

...

No Format
$ cd app
$ su -c "./Console/cake cache" ${APACHE_USER}
[...]
Done clearing cache
Note

Sometimes the cache clearing fails due to "internal error", which is usually Cake being confused by cached models not matching the new code. In this case you will need to manually clear the cache. Remove the cache files, but leave the directory structure in place. Something like

Code Block
# rm tmp/cache/model/*
# rm tmp/cache/persistent/*

 

Update Database Schema

Generally, updating the database schema is required when upgrading COmanage Registry. You may need to run this command as a user that has permission to write to your tmp directory.

...