Update standalone authored by bgm's avatar bgm
...@@ -44,18 +44,16 @@ cd standalone ...@@ -44,18 +44,16 @@ cd standalone
composer install composer install
``` ```
Apply this patch: https://github.com/civicrm/civicrm-core/pull/22227
And then change some permissions: And then change some permissions:
``` ```
# Keeping smarty files outside the public webroot # Keeping smarty files outside the public webroot
chgrp www-data templates_c chgrp www-data data/templates_c
chmod g+w templates_c chmod g+w data/templates_c
# Some uploads are assumed to be publicly accessible, I think? # Some uploads are assumed to be publicly accessible, I think?
chgrp www-data upload chgrp www-data data/upload
chmod g+w upload chmod g+w data/upload
``` ```
Old notes, the initial composer setup was: Old notes, the initial composer setup was:
... ...
......