Question :
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.
Answer :
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.