当我查看TYPO3 4.7的Install Tool > Basic configuration
时,我在黄色中看到一条消息Functions disabled
和此文本
disable_functions=pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
The above list of functions are disabled. If TYPO3 use any of these there might be trouble.
TYPO3 is designed to use the default set of PHP4.3.0+ functions plus the functions of GDLib.
Possibly these functions are disabled due to security risks and most likely the list would include a function like exec() which is use by TYPO3 to access ImageMagick.
我在配置或服务器中缺少什么?
答案 0 :(得分:0)
您使用的是哪个PHP版本? TYPO3 4.7至少需要PHP 5.3,因为你可以看到here。由于以上这些功能自PHP5起可用,我猜您运行的版本较低。
您可以使用php --version
答案 1 :(得分:0)
这只是一个信息,在活动的php.ini中禁用了一些PHP函数。 幸运的是,这个列表中没有TYPO3所依赖的功能。 你可以忽略它。