- I make changes local on my mac in dev mode.
- After committing the changes I login via ssh to my server.
- There I make the command
git pull
Now I see my changes on my webpage.
Unfortunately this only works in dev
mode.
When I change the mode to production mode in my .env file, then I do not see any updates. What can I do?
CodePudding user response:
You probably need to clear the cache. This can be done with the following command :
php bin/console cache:clear
CodePudding user response:
The following command solved the problem:
rm -rf var/cache/
CodePudding user response:
php bin/console cache:clear --env=prod
to be sure
If you use phpfpm on your server, it can also be required to restart phpfpm service after the cache:clear.
This should not be used in production environemment :
rm -rf var/cache