500 Internal Server error
-
I am getting 500 Internal Server error 3 weeks after setting up my blog site. I have added 3 blogs and have previously been able to edit and set up appearance etc. Now I can see the site, read the blogs from a reader perspective but am getting an error message when I try to read comments, edit the page etc. I am not a web site savvy person at all but found the set up ect straight forward but this has confounded me and when I read other blogs about errors I cannot understand how to fix as I am not versed in web development Can anyone help please? I installed Jetpack and other plugins as advised.
Thanks in advance and apologies for being the least savvy on the forum!The page I need help with: [log in to see the link]
-
Hello, @joziggy
Showing error for edit the page ”
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator to inform of the time the error occurred and of anything you might have done that may have caused the error.
More information about this error may be available in the server error log.”Thanks.
Thank you for that. Is it really thick of me to ask is that My server? Or ww.wp.xz.cn or who?
TIAI appreciate your answer so swiftly too, that was nice
<?php
/**
* WordPress Error API.
*
* Contains the WP_Error class and the is_wp_error() function.
*
* @package WordPress
*//**
* WordPress Error class.
*
* Container for checking for WordPress errors and error messages. Return
* WP_Error and use is_wp_error() to check if this class is returned. Many
* core WordPress functions pass this class in the event of an error and
* if not handled properly will result in code errors.
*
* @package WordPress
* @since 2.1.0
*/
class WP_Error {
/**
* Stores the list of errors.
*
* @since 2.1.0
* @var array
*/
public $errors = array();/**
* Stores the list of data for error codes.
*
* @since 2.1.0
* @var array
*/
public $error_data = array();/**
* Initialize the error.
*
* If$codeis empty, the other parameters will be ignored.
* When$codeis not empty,$messagewill be used even if
* it is empty. The$dataparameter will be used only if it
* is not empty.
*
* Though the class is constructed with a single error code and
* message, multiple codes can be added using theadd()method.
*
* @since 2.1.0
*
* @param string|int $code Error code
* @param string $message Error message
* @param mixed $data Optional. Error data.
*/
public function __construct( $code = ”, $message = ”, $data = ” ) {
if ( empty($code) )
return;$this->errors[$code][] = $message;
if ( ! empty($data) )
$this->error_data[$code] = $data;
}
The topic ‘500 Internal Server error’ is closed to new replies.