500 Error after installed WP Super Cache plugin

Problem

In WordPress, after installed WP Super Cache plugin, the system cannot be started successfully. The page shows

HTTP Error 500 (Internal Server Error): An unexpected condition was encountered while the server was attempting to fulfill the request.

Reason

The memory size for running this plugin is not enough.

Solution

Increase the PHP memory for WordPress. In wp-config.php, insert below line

define('WP_MEMORY_LIMIT', '96M');

before the line

define('WP_CACHE', true);

If 96M is still not enough, can try increasing more.

Reference

Editing wp-config.php

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

这个站点使用 Akismet 来减少垃圾评论。了解你的评论数据如何被处理

Back to Top