Problem porting to new server

Permalink
I've moved my site richcutler.co.uk to a new server.

Success but with one problem: in the Dashboard the Page Properties no longer work as they should. There are no Save/Cancel buttons, and clicking on commands such as Page Redirect has no effect - clicking on a command brings up the following error message in Chrome's console:

"Uncaught ReferenceError: ccmShowAttributeKey is not defined (index):1"

Clicking on "(index):1" shows the code below.

Anyone any ideas as I'm at a complete loss - I know only a very little about programming!

Thanks in advance for any help.....

__________________________

<script>(function() {with (this[2]) {with (this[1]) {with (this[0]) {return function(event) {ccmShowAttributeKey(9)
};}}}})</script>

<script>

$(function() {

$(window).on('resize', function() {
ccm_testFixForms();
});
$('form').each(function() {
$(this).attr('original-class', $(this).attr('class'));
});
ccm_testFixForms();
});
</script>

 
ConcreteOwl replied on at Permalink Reply
ConcreteOwl
You are using cloudflare as a cdn, It looks like Cloudflare is converting script tags from text/javascript to text/rocketscript .. Could be causing a conflict with concrete own javascripts..
Apparently, You can disable Rocket Loader by going to:
settings->CloudFlare settings (Performance Settings)->Rocket Loader->Toggle Off (this feature is optional ).

Read this for an explanation of how to use Rocket Loader
https://support.cloudflare.com/hc/en-us/articles/200168056-What-does...
RichCutler replied on at Permalink Reply
Thanks for replying - appreciated!

I disabled Cloudflare completely earlier - but that didn't fix the problem. So, there's something wrong even without Cloudflare.

(I will disable Rocket Loader anyway.)
RichCutler replied on at Permalink Reply
Still got this problem...

Anyone any thoughts on how I can fix it?