Problem adding subpage - goes into edit mode on parent page.

Permalink
This has just started happening, due to a new theme. No javascript errors though. (version 5.5.2)
Say I go to my parent page - News. I click "Add sub page", but then it just goes into the news page in edit mode.
No sub page is added and I don't get the pop to name the page, choose page type etc.
This is on the master admin account too.

Thanks in advance for your help!
Dave

madesimplemedia
 
rossj replied on at Permalink Reply
I'm currently having the exact same problem. Did you find a solution?
rossj replied on at Permalink Reply
Ok I solved this for me. The problem was various Concrete5 forms were still POSTing to regular HTTP URLs, even though my site uses HTTPS. This caused the POSTs to be blocked by the browser and the pages to not be created.

The reason that Concrete5 was still using HTTP URLs is that I have it behind HAProxy which is terminating the HTTPS connection, such that PHP doesn't know that it should use HTTPS. Adding
$_SERVER["HTTPS"] = true;
to the top of index.php resolved the issue for me.
madesimplemedia replied on at Permalink Reply
madesimplemedia
Thanks for the reply and info.
This won't be my issue as I'm not using https at all :(