问题1: It seems like the PHP binary "C:\php/php" cannot be executed by FLOW3. Set the correct path to the PHP executable
解决:必须了解YAML的配置规则
core:
phpBinaryPathAndFilename: 'F:/xampp/php/php.exe'
问题2: Warning: symlink(): Cannot create symlink, error code(1314)
解决:window 下不支持 symlink 格式,只能将mirrorMode 改为 copy, 不能在用link
resource:
publishing:
fileSystem:
mirrorMode: 'copy'
settings.yaml 配置如下
TYPO3:
FLOW3:
persistence:
# It is good practice to not specify user name and password of the database
# connection in this global Settings.yaml file. Rather specify them in the
# settings of the respective context (Production / Development ...).
backendOptions:
host: '127.0.0.1' # adjust to your database host
# On Windows, you might need to uncomment the following lines and specify
# the location of the PHP binary manually.
core:
phpBinaryPathAndFilename: 'F:/xampp/php/php.exe'
resource:
publishing:
fileSystem:
mirrorMode: 'copy'