所以我今天早些时候安装了Drupal 8 beta,安装完成后我在localhost / drupal上得到了以下内容:
我决定删除Drupal 8并获得稳定版本,只是因为这是问题所在。事实证明我也有稳定版本。
可能是apache2.conf问题吗?但我是Drupal的新手,并且在没有使用CMS的其他网站上没有其他问题。
感谢您的时间。
编辑:
handle($request) // Handle the response object. ->prepare($request)->send(); $kernel->terminate($request, $response); } catch (HttpExceptionInterface $e) { $response = new Response($e->getMessage(), $e->getStatusCode()); $response->prepare($request)->send(); } catch (Exception $e) { $message = 'If you have just changed code (for example deployed a new module or moved an existing one) read http://drupal.org/documentation/rebuild'; if (Settings::get('rebuild_access', FALSE)) { $rebuild_path = $GLOBALS['base_url'] . '/rebuild.php'; $message .= " or run the rebuild script"; } // Set the response code manually. Otherwise, this response will default to a // 200. http_response_code(500); print $message; throw $e; }
答案 0 :(得分:1)
尝试查看位于/private/etc/apache2
确保取消注释#LoadModule php5_module libexec/apache2/libphp5.so
。
答案 1 :(得分:0)
如果您安装新版本的php(在我的情况下是php7),您应该安装
sudo apt-get install libphp7.0-embed