Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/typo3/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
TYPO3安装工具上写着;功能被禁用&引用;_Typo3 - Fatal编程技术网

TYPO3安装工具上写着;功能被禁用&引用;

TYPO3安装工具上写着;功能被禁用&引用;,typo3,Typo3,当我查看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

当我查看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.

我的配置或服务器中缺少什么?

您使用的是哪个PHP版本?如您所见,TYPO3 4.7至少需要PHP5.3。因为上面的这些函数在PHP5之后就可以使用了,所以我猜您运行的是一个较低的版本


您可以通过
php--version

了解这只是一个信息,一些php函数在活动的php.ini中被禁用。 幸运的是,这个列表中没有TYPO3所依赖的函数。
您可以忽略它。

这不是问题:-)但如果您坚持,只需检查php.ini并注释掉这一行(disable_functions=…),然后重新启动apache。要找出php.ini所在的位置,请将phpinfo()放在一个空的php脚本中并执行此命令。在靠近顶部的某个地方,您将找到此配置文件的路径。检查过程非常荒谬,请参见