I have install a new site where I have used Wordpress platform. After installing the site, I found the site showing up noting even after login admin also showing nothing only can see the left site menu. Please note that I did not use any new theme, it is the same default theme of wordpress. Please help me
Might be memory issue ? or a plugin issue ? Why not try increasing the memory limit, or disable plugins one by one and see whats causing the issue.
Yes, @TheMostCreative is right. That's the way I solved this problem some months ago. I disabled all plugin one by one and detected which one was the bad one. P.S: If there is a blank page error you probably use a nulled theme or plugin which is not so good (maybe it is infected).
There is a good chance that this is due to memory limitations. What hosting provider do you use? Is it s a VPS or Shared Hosting?
What version of WP did you install? There is a bug in WordPress 3.3.1 causing the issue. It may affect other versions as well. To solve the issue you can update WordPress to the current stable release and do integration testing afterwards. Or you can do a quick bug fix. To fix the bug: Open file blog/wp-admin/includes/screen.php in your favorite text editor. On line 706 find the following PHP statement: <?php echo self::$this->_help_sidebar; ?> Replace it with the statement: <?php echo $this->_help_sidebar; ?> Save your changes. Hope this helps.