Editing in FireFox isn't working

Permalink
I can not edit a page in Firefox. When I go edit page en click on the contentblock I get a window with some HTML (see attachement).
I checked with Firebug and there are 3 problems:
- $ is not defined
- tinyMCE is not defined
- ccm-activateFileSelectors is not defined

I've got the latest version of Concrete en Firefox. What can I do to make this works.
The site works fine in Chrome but my client can only works with Explorer en Firefox and both browsers not working in the edit mode.

1 Attachment

MacAnne
 
Brainakazariua replied on at Permalink Reply
Brainakazariua
That screen is normal but does it get stuck on it? When I try it on my own site it jumps to the actual edit screen after a few seconds.
MacAnne replied on at Permalink Reply
MacAnne
Well it stays this way even after a lot of seconds.
And this is not a perfect way to edit the content.
Brainakazariua replied on at Permalink Reply
Brainakazariua
Are they using an old version of firefox?
and I suggest you check the logs of the enviroment to see if it gives some sort of error.
MacAnne replied on at Permalink Reply
MacAnne
They are using the latest version of FireFox and so do I.
Both systems (Mac :-) and PC :-( ) having the same problems.
What do you mean with environment? Firebug sees 3 problems (see above) and I don't know what to do about it.
I'm not really a crack with these things.
Brainakazariua replied on at Permalink Reply
Brainakazariua
the enviroment is the part of your site on the server.
the log is a log which the server keeps with errors.

The server logs can give better ideas to what the problem might be then the browser, if you can't find those or don't understand them you might ask your hosting provider about them.
MacAnne replied on at Permalink Reply
MacAnne
Hi, I looked in the log on the server but there are no issues that leads to the problems that I'm having with the editing.
MacAnne replied on at Permalink Best Answer Reply
MacAnne
Hi, I found the solution. It was a (js)problem with the theme. The designer of it gave me a workaround and it's working fine.
Thanx for trying to help me!
zenmaster replied on at Permalink Reply
I have exactly the same problem.

Will not work in Firefox v3.6.12. Fine in Opera.

Firebug error - tinyMCE is not defined.

No server error messages logged.

Unlikely to be the template as it's the supplied "Plain Yoghurt".
Mnkras replied on at Permalink Reply
Mnkras
zenmaster try re-uploading the current /concrete directory (may be in /updates
zenmaster replied on at Permalink Reply
I've just done that.

It doesn't work at all now, either in Firefox or Opera.

A complete fail! 10 hours of my life that I'll never see again.

I'm out of here.
MacAnne replied on at Permalink Reply
MacAnne
Hi,
what I did is this:
In the theme sources delete the following line in the header (in default.php, left_sidebar.php and right_sidebar.php):

<script type="text/javascript" src="<?php echo $this->getThemePath()?>/js/jquery.ui.js"></script>

This was the solution for me!
dreamstudio replied on at Permalink Reply
I am also having the same problem with the screenshot and $is not defined etc. I tried a different default theme and still causes the same problem.

Anyone got any ideas what else I can try. Server people are via third party so I know getting any help from them is going to be slow and long winded process
xmla replied on at Permalink Reply 1 Attachment
xmla
I'm having the same issue. Under Firefox only, when I go to edit a wysiwyg content block, under 5.4.2.2 (updated).

My templates ( plain yogurt ) do not include the jquery code mentioned above.

Please advise on the fix for this.

Thank you for your assistance.

M
XMLA
utomo replied on at Permalink Reply
Read the macAnne explanation

Hi,
what I did is this:
In the theme sources delete the following line in the header (in default.php, left_sidebar.php and right_sidebar.php):

<script type="text/javascript" src="<?php echo $this->getThemePath()?>/js/jquery.ui.js"></script>

This was the solution for me!
xmla replied on at Permalink Reply
xmla
Here is my default.php
--
<?php
defined('C5_EXECUTE') or die("Access Denied.");
$this->inc('elements/header.php'); ?>

<div id="central">
<div id="sidebar">
<?php
$as = new Area('Sidebar');
$as->display($c);
?>
</div>

<div id="body">
<?php
$a = new Area('Main');
$a->display($c);

?>
</div>

<div class="spacer"> </div>
</div>
<?php $this->inc('elements/footer.php'); ?>
--

None of my files contain the line you mention.

M
XMLA