Blank screen while WordPress installation ?
March 4th, 2010
There is situation: you install new wordpress blog, insert config data but when it goes to the http://[yourdomain]/wp-admin/install.php you get just blank screen. There can be few reasons, but when it’s your first installation probably you have memory limit issue on you server. You can fix this by adding line below in your .htaccess file:
# increase memory up to 32 mb, if you need you can make this amount bigger
php_value memory_limit 32M
If this does not helps, then you should add this line to your .htaccess file:
php_value display_errors ”1″
This will force PHP to show what error cause blank screen, and when you know problem it’s easy to find solution



