Cant edit any page created with cornerstone, loads forever

Hei, I cant edit any page and have already updated everything you recomended but still not working,

can you guys help me out?

Hello @Frontcom,

Thanks for asking. :slight_smile:

I checked the website and opened couple of pages in Cornerstone and I can replicate the problem on my end. However, looking at the dev tools, I see following error message. Please see secure note.

To fix the problem, under Settings > General please include HTTPS in WordPress Address (URL) and Site Address (URL). However, looking at the settings it seems that you have hardcoded the links in wp-config.php file as the values are not editable. Using FTP softwares like Filezilla, please login FTP and make the necessary changes in wp-config.php file. You can take a look at following tutorial for some help and scroll down to Edit wp-config.php section.

https://codex.wordpress.org/Changing_The_Site_URL

Thanks.

Hello, you where right, the issue was regarding the HTTPS, but not as easy to solve,

I found that the solution that worked for me was to include this code in the wp-config.php

define(‘FORCE_SSL_ADMIN’, true);
if (strpos($_SERVER[‘HTTP_X_FORWARDED_PROTO’], ‘https’) !== false)
$_SERVER[‘HTTPS’]=‘on’;

Thanks for your time

Glad you were able to resolve it :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.