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.
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.
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.
Well it stays this way even after a lot of seconds.
And this is not a perfect way to edit the content.
And this is not a perfect way to edit the content.
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.
and I suggest you check the logs of the enviroment to see if it gives some sort of error.
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.
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.
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.
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.
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.
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!
Thanx for trying to help me!
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".
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".
zenmaster try re-uploading the current /concrete directory (may be in /updates
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.
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.
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!
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!
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
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
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
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
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!
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!
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
--
<?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