php - Symfony on Synology -
i use latest dsm on synology (ds415+), dsm 6.1.3-15152 update 4, , try install new symfony application, doesn't work.
i tried:
symfony new projectname
but ends with:
✕ symfony 3.3.9 installed system doesn't meet technical requirements! fix following issues before executing symfony application:
- token_get_all() must available install , enable tokenizer extension.
then tried:
composer create-project symfony/framework-standard-edition projectname
the install process ends fine, after running command:
php bin/symfony_requirements
it's same tokenizer extension issue
i tried:
php56 symfony.phar new projectname
same previous install command.
well, i'm having own issues symfony on dsm6, frustrating!
synology decided build own php packet source. choose remove capabilities , extensions (including tokenizer) build. that's why can't run symfony php version doesn't meet symfony requirements.
but in case, should continue using php56 (version 5.6) instead of php (version 7). change
php bin/symfony_requirements
to
php56 bin/symfony_requirements
i'm pretty sure you're not out of woods yet.
Comments
Post a Comment