rajkumar
rajkumar

Reputation: 61

Word press Not Displaying Theme

Internal Server Error The server encountered an internal error or mis configuration and was unable to complete your request.

Please contact the server administrator, and inform them of the time the error occurred, and anything you might have done that may have caused the error.

More information about this error may be available in the server error log.

Upvotes: 0

Views: 54

Answers (1)

dipmala
dipmala

Reputation: 2011

You can increase memory limit in 3 ways,

Edit your wp-config.php file

define('WP_MEMORY_LIMIT', '256M'); // if this is not in your wp-config file.

Edit your PHP.ini file

If you have access to your PHP.ini file, change the line in PHP.ini

memory_limit = 256M ; Maximum amount of memory a script may consume (64MB) //If your line shows 64M try 256M:

Edit your .htaccess file

If you don’t have access to PHP.ini try adding this to an .htaccess file:

 php_value memory_limit 256M

Hope this will help you.

Upvotes: 2

Related Questions