Carol’s Vault
Best Freeware, Open Source Software
Best Freeware, Open Source Software
I’ve had some Wordprress installation problems with version 2.8.5 and with 2.8.6 when trying to install new plugins and themes via WP dashboard, as well as upgrading.
The problem:
Downloading the file works perfect and without errors but it stops when it has to unpack.
Basically, nothing happens.
I can see the zipped file on my ftp server, but this same file should be automatically unzipped and installed….which it doesn’t.
WordPress support forums has some topics on this, but people actually have errors; they do not get a black installation page after.
The fix i found that works for me:
As usual, a memory issue which can easily be fixed.
By default, most hosts limit the memory to 32MB, but the workaround in WordPress is to modify wp_settings.php on line 13 and change WP_MEMORY_LIMIT from 32 MB to 64MB.
Find the file into your WordPress root directory, back it up, make the change, save and upload.
if ( !defined(‘WP_MEMORY_LIMIT’) )
define(‘WP_MEMORY_LIMIT’, ’32M’);
change to:
if ( !defined(‘WP_MEMORY_LIMIT’) )
define(‘WP_MEMORY_LIMIT’, ’64M’);
That should fix it! After making this change, i was able to install themes and plugins without a problem whatsoever.
Try installing a new theme or plugin from your dashboard.
Hope it works for you too!
Comments are closed.
March 25, 2010 - 2:04 AM
That seemed to do the trick. I've upped the memory limit on other blogs of mine due to some more complicated scripts running on the front end. I never realized how resource intensive the auto install/upgrade functionality is.
February 14, 2010 - 3:28 PM
Changing permissions to 777 and then back to 755 helped some people.
Try disabling all plugins at once via dashboard and try installing a new one, or updating an existing. See what happens.
Make sure that after changing the mem. limit, you upload the right file online.
Let me know if that helped.
If you have the cache plugin, uninstall it and see what happens.
February 14, 2010 - 2:40 PM
Yes, I did. The strange thing is that I don't get an error message, just a blank screen for minutes with a toolbar message saying the data is being transfered…
I changed the file & folder permissions to 777, WP_MEMORY_LIMIT to 64M , deleted the plugin and tried to install another one (in case that the plugin is faulty). No use.
Is it possible that the installed theme or WordPress version 2.9.1. somehow blocks the new plugins?
February 13, 2010 - 6:50 PM
Did you changed the permissions back to 755?
It did work for some people, but didn't work for me.
February 13, 2010 - 6:43 PM
Unfortunately this doesn't work for me. I also tried to change the file permission to 777, but didn't help.