drupal 8 install erro (An AJAX HTTP error occurred. HTTP Result Code: 200 Debugging information follows)
- An AJAX HTTP error occurred. HTTP Result Code: 200 Debugging information follows. Path: http://example.com/drupal/install.php?profile=standard&locale=en&id=1&op=do StatusText: OK ResponseText: ( ! ) Fatal error: Maximum execution time of 30 seconds exceeded in
复制代码
由于php执行超时所致,在php.ini中找到
把后面的默认的30数字改成180或者更高,意思为180秒。
- ;;;;;;;;;;;;;;;;;;;
- ; Resource Limits ;
- ;;;;;;;;;;;;;;;;;;;
- ; Maximum execution time of each script, in seconds
- ; http://php.net/max-execution-time
- ; Note: This directive is hardcoded to 0 for the CLI SAPI
- max_execution_time = 180
复制代码
|