I changed the http page address to https and now it is giving error [duplicate]

3

I changed from http to https the address of this site here http: link , I did this in the area of wordpress settings .. And now the site is routed to hostagor's error page. What do I do? I do not understand anything about http and https.

    
asked by anonymous 15.12.2017 / 05:55

1 answer

0

This error indicates that the header of your page has already been submitted.

  

Warning: Can not modify header information - headers already sent by   (output started at /home/akaua982/public_html/wp-config.php:1) in   /home/akaua982/public_html/wp-includes/pluggable.php on line 1211

When using a server side language, any blank space before opening the php is considered a header output for the client. As in case the header has already been sent to the file /home/akaua982/public_html/wp-config.php in line 1 as indicated in the error message it is impossible to change the header in line 1211 of the file / home / akaua982 / public_html / wp -includes / pluggable.php because it already has output. Look in your wp-config.php file for blank lines before opening the php code or after closing and removing. This should correct the problem.

    
15.12.2017 / 08:18