31 lines
1.4 KiB
Bash
Executable File
31 lines
1.4 KiB
Bash
Executable File
#!/bin/bash
|
|
# =============================================================================
|
|
# VITEC — fix backend asset permissions after a deploy via the Windows sshfs mount
|
|
# -----------------------------------------------------------------------------
|
|
# sshfs-win (WinFsp) writes newly deployed files with mode 770 (no other-read).
|
|
# The webserver runs as "other" (suexec) -> assets under Resources/Public and
|
|
# public/_assets return HTTP 403 (backend icons / CSS / JS missing).
|
|
#
|
|
# chmod OVER the Windows mount does NOT change the real server mode, so this
|
|
# has to run ON THE SERVER, via real SSH, as the site owner (vitecevo).
|
|
#
|
|
# Usage (from the live/ project root on the server):
|
|
# bash fix-asset-perms.sh
|
|
# =============================================================================
|
|
set -u
|
|
cd "$(dirname "$0")" || exit 1
|
|
|
|
echo "[perms] Project root: $(pwd)"
|
|
echo "[perms] Setting files 644 / directories 755 under Resources/Public + _assets ..."
|
|
find public/_assets public/fileadmin/icons packages/vitec/Resources/Public -type f -exec chmod 644 {} \; 2>/dev/null
|
|
find public/_assets public/fileadmin/icons packages/vitec/Resources/Public -type d -exec chmod 755 {} \; 2>/dev/null
|
|
|
|
echo "[perms] Flushing TYPO3 caches ..."
|
|
if [ -x vendor/bin/typo3 ]; then
|
|
vendor/bin/typo3 cache:flush
|
|
else
|
|
echo "[perms] (vendor/bin/typo3 not found — skip cache flush)"
|
|
fi
|
|
|
|
echo "[perms] Done."
|