I have a website on SHIVAPALACE.IN but it is not opening, the admin panel works fine but the front end doesn't open and no error is shown, i have tried to delete my .htaccess and create a new one but nothing works. only a blank page is seen. Can someone help me?
Thanks & Regards
Akshat
Update 1.0
Try this method.
1.Add the following code in your wp-config.php file.
error_reporting(E_ALL); ini_set('display_errors', 1);
define( 'WP_DEBUG', true);
2.Disabling All Plugins
3.Increasing the Memory Limit
If all above didnt work. Then it is a strong indicator that your web hosting provider is having some issues
Related
i'm working on word-press to create eCommerce website and i have face same problem.
i'm working on PC using XAMPP in localhost server. i have create new page in word-press and after that when i have publish the page and then i click on view the page to see the page whose the page look like ,the page show error "object is not found".
also error in menu on website link navigation.
i have already set permalinks as post name.
and now i have search many time on google but i doesn't found any solution.
i'm very feel frustrating.
please help me to find out the solution.
Are the links defined correctly in your database corresponding to your local Wordpress installation?
If yes, maybe FollowSymlinks are disabled and hence your Permalinks are not working correctly.
See the accepted answer from this SO thread:
Wordpress and Xampp not open child pages
Hope this helps.
define('WP_DEBUG', true);
define( 'WP_DEBUG_LOG', true );
define( 'WP_DEBUG_DISPLAY', false );
define('SAVEQUERIES', true);
ini_set( 'log_errors', 1 );
ini_set( 'error_log', WP_CONTENT_DIR . '/debug.log' );
add these lines in wp-config.php and then visit the page, this will not resolve the error but create a debug file in the wp-content folder so you can have the better idea where the issue is.. :)
I am trying to figure out why I am getting a white screen/blank page... I first experienced this when editing a page. After I hit update, the post.php page went blank. When I tried to access the site (top level) it was a blank white page. When I went home, to a new network, the site worked just fine. So I began editing the pages again. I hit update again, and got the white page again. Can't see the front end of the site either. If I access the site from my phone, not using wifi, I can see the site. But here is the kicker... If I try to access ANY Wordpress site on my server, I get a blank white screen. I've searched and can't find anyone who has experienced this? Any help or direction is much appreciated. This is a new VPS server from HostGator. I have contacted HostGator but so far they haven't been able to replicate it.
White screens are PHP errors. Try Debug and see what PHP errors you are getting.
See https://codex.wordpress.org/WP_DEBUG
Add
define( 'WP_DEBUG', true );
define( 'WP_DEBUG_LOG', true );
in wp-config.php and the debug.log file will be in wp-content.
Add this line
define( 'WP_DEBUG_DISPLAY', true);
to wp-config.php to log and dump them to the browser.
For me this was a conflicting plugin - Yoast SEO - I disabled it and it stopped the error.
It occurred whenever I tried to update a post as an admin user.
I have created my own theme which works just fine locally, but when I try to migrate it to a live server the links break.
I've gone through the usual channels: permalink changes, database search & replace using new url, plugin deactivation etc etc, but no joy. It works fine with bog standard themes so I know the theme is the problem and not the database, but just can't pinpoint where the problem is. I've searched through the functions file but can't see any problems there either.
I've created themes before and never had this issue - I've looked through other questions but not found a resolution. Anyone else experienced this?
EDIT:
After adding
error_reporting(E_ALL);
ini_set('display_errors', 'On');
to wp-config.php
The following error was seen:
'Parse error: syntax error, unexpected end of file in /home/museumweb/public_html/wp-content/themes/museum/page.php on line 40'
Which has been fixed now.
For general server 500 errors, always try adding:
error_reporting(E_ALL);
ini_set('display_errors', 'On');
to your wp-config.php file. After solving don't forget to remove it ;)
I am working on wordpres site, site works good but whenever i try to login using wp-admin it shows me error called "cookies are blocked due to unexpected output" and i can see one of the text "password" return on left top area of wp-admin screen.I tried to change password from phpmyadmin but it does not works. can any one help me out for this.
Thanks in advanced
Turn on Debug info by adding following code in wp-config.php
define('WP_DEBUG', true);
It will show you what code might by causing the issue.
Also read this thread please people with same issue have solved:
https://wordpress.org/support/topic/unable-to-log-in-cookies-are-blocked-due-to-unexpected-output?replies=37
If this is happening after moving a multisite to a different domain (for dev purposes for instance) then make sure you edit the following line in your wp-config.php file and change the previous domain to the current one:
define('DOMAIN_CURRENT_SITE', 'newdomainname.com');
I am new to Wordpress and I jut installed it today, I created a username and password, am able to login to wordpress and access the dashboard. I made a few changes, installed a theme, created a menu, picked out a header, etc...
When I try to preview the site however, it just shows a blank white screen, anyone know how to fix this?
thanks in advance.
I ran into a similar problem in the past... to solve it I edited the wp-config.php file and activated the debug function... that let wordpress show me what the error was, so I could fix it...
Basically in wp-config.php search for:
define('WP_DEBUG', false);
and replace it with:
define('WP_DEBUG', true);
Once your done fixing the error don't forget to change it back...
taken from: Wordpress Codex - editing wp-config.php