Yuguiboy wrote: ↑02 Jul 2018, 15:47
Hi!
When I launch "run.bat", the command prompt appears then disappears instantly with some errors that I can't read because the window go away too fast. I can't find logs file, where they are?
parameters.yml
Hi,
You can check your logs in var/logs/prod.log
you can also edit the run.bat file as follows to see the error in the command prompt
Code: Select all
@echo off
cd %~dp0
cd ..
chcp 65001
ECHO Clearing caches
RMDIR /S /Q var\cache\prod
ECHO Checking for database updates
php bin/console propel:migration:diff --env=prod
php bin/console propel:migration:migrate --env=prod
ECHO Launching eXpansion
php bin\console eXpansion:run -vvv --env=prod
pause
It will be fixed in next release:
https://github.com/eXpansionPluginPack/ ... issues/379
We forgot to add the pause at the end of the file that allows the command prompt to stay open after an error.
Miss wrote: ↑02 Jul 2018, 17:48
Removed password from that post
Thanks
