* if you let default values, MW should be available at localhost:666 and the phpmyadmin at localhost:8080
* You'd better leave default values, some stuff is hardcoded...
* Once application installed, you can generate some grid with these commands in the php container. It will generates 10 grids in french and english with at least 150 (and 250 for french) foundable forms.
* Once application installed, you can generate some grid with these commands in the php container. It will generates 10 grids in french and english with at least 150 (and 250 for french) foundable forms.
> php bin/console magicword:generate-grid english 10 150
> php bin/console magicword:generate-grid french 10 250
sprintf('Configured default timezone "%s" must be supported by your installation of PHP',@date_default_timezone_get()),
'Your default timezone is not supported by PHP. Check for typos in your <strong>php.ini</strong> file and have a look at the list of deprecated timezones at <a href="http://php.net/manual/en/timezones.others.php">http://php.net/manual/en/timezones.others.php</a>.'
);
...
...
@@ -633,12 +626,6 @@ class SymfonyRequirements extends RequirementCollection
'Install and enable the <strong>mbstring</strong> extension.'
);
$this->addRecommendation(
function_exists('iconv'),
'iconv() should be available',
'Install and enable the <strong>iconv</strong> extension.'
);
$this->addRecommendation(
function_exists('utf8_decode'),
'utf8_decode() should be available',
...
...
@@ -737,7 +724,7 @@ class SymfonyRequirements extends RequirementCollection
'Install and/or enable a <strong>PHP accelerator</strong> (highly recommended).'
);
if(strtoupper(substr(PHP_OS,0,3))==='WIN'){
if('WIN'===strtoupper(substr(PHP_OS,0,3))){
$this->addRecommendation(
$this->getRealpathCacheSize()>=5*1024*1024,
'realpath_cache_size should be at least 5M in php.ini',
...
...
@@ -780,7 +767,11 @@ class SymfonyRequirements extends RequirementCollection