wordpress blank screen

Status
Not open for further replies.

rahuldas14

Active Member
116
2010
0
0
I am facing a problem with a blog. The admin section of my wordpress now results in blank screen.
I can see the wp-login page. But once I login its blank.
Kindly help me fix it.
 
18 comments
Log in with FTP and download all the plugins to your local machine, and then delete all the plugins from the wordpress directory.

After that try to log in to your wordpress admin and install all the plugins one by one.

If you have the blank screen after removing the plugins then back up your data base download from the server your theme and remove and reinstall the wordpress.
 
I dont want to delete them. As if I delete them my whole website will be lost nearly as some of them are the backbone. Looks and contents depend on them.
Can I disable them somehow and try to get it?
 
There's a high probability that the white screen is caused by some php or sql error. You can be sure if that's the case turning your errors display on.

Then you get to know where the error is, instead of deleting everything on a crazy manner.
 
You have to edit your php.ini.
If it's already turned on ( lulz) it will look like display_errors=yes. If it says so, just correct it, save the file and then restart apache and check the WP admin page.
 
Or you can try increase your memory usage, add

Code:
define ('WP_MEMORY_LIMIT', '64M');

on the wp-config.php file under

Code:
define ('WPLANG', '');

I've been on that kind of problem once and fixed it using this method.
 
Find this line in your wp-config.php file
PHP:
define('WP_DEBUG', false);
And change it to:
PHP:
define('WP_DEBUG', true);

Then see if it gives any error(s) 8-)
 
Find this line in your wp-config.php file
PHP:
define('WP_DEBUG', false);
And change it to:
PHP:
define('WP_DEBUG', true);

Then see if it gives any error(s) 8-)
Thanks dude. Got the following

Notice: Use of undefined constant PLUGIN_URL - assumed 'PLUGIN_URL' in /home/moviocom/public_html/wp-content/plugins/delete-duplicate-posts/delete-duplicate-posts.php on line 84

Notice: Use of undefined constant PLUGIN_PATH - assumed 'PLUGIN_PATH' in /home/moviocom/public_html/wp-content/plugins/delete-duplicate-posts/delete-duplicate-posts.php on line 85

Now how to deal with the this plugin? I mean how can I fix or disable or delete this plugin?
 
Last edited:
well there are few reason which causes this shitty error i had faced same problem but i fixed it myself just do this

if you installed any plugin or activated it just remove it
if you installed any theme to use on wordpress just remove it!
if you upgraded your wordpress automatically then you messed up with something so just go and do manual upgrade thats it!

thanks
 
Status
Not open for further replies.
Back
Top