我已经检查过了。日志中没有错误。我在用MAMP。
我还补充了

error_reporting(E_ALL);
ini_set('display_errors', TRUE);
ini_set('display_startup_errors', TRUE);

tail -n 20 /Applications/MAMP/logs/php_error.log中。
我的记忆极限是
memory_limit = 512M

有什么建议吗?

最佳答案

也许你必须启用干净的url?将此添加到.htaccess文件:

<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
</IfModule>

关于postgresql - WSOD即将开启Drupal 7项目的第一页,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39488872/

10-12 02:32