White screen in wp-admin in WORDPRESS

-1

Hello everyone, I'm having a problem with my wordpress just by placing ONLINE on the webpage that the WP-ADMIN screen goes white.   I tried to connect the DEBUG but no error appears, I have already uploaded 5x, I already deleted all the plugins and tried and nothing. In local host it gets normal.

I made the entire installation of Wordpress with the IP and Direct Hosting database and I created the blog in localhost with everything functional but when I played it online wp-admin stays white screen

    
asked by anonymous 16.12.2015 / 19:42

1 answer

0

You may also be seeing the white screen because it has exhausted the memory limit of your server's php. This can be caused by some plugin or thema that consumes a lot of php memory.

Sometimes it can also mean that there is a problem with your web hosting server. So since the problem can be caused by a number of factors, this may require a lot of different solutions.

To increase the php memory limit, go to php.ini and change the following line:

memory_limit = 512M

Probably in 64 or 128, change to 512.

If you are not using php.ini in your hosting, ie you are using Apache Handler, PHP is in Apache module and you will need to create an .htaccess file and put the following value:

php_value memory_limit 512M
    
24.02.2016 / 16:36