4571 Posts in 1382 Topics by 1376 members
| Go to End | ||
| Author | Topic: | 1326 Views |
-
Re: SilverStripe 3.0 Beta 3 issue : "tinyMCE is not defined"

30 August 2012 at 10:18am
I just pushed a fix for this that'll be included in 3.0.2. In the mean time, you can grab the updated index.php file from https://github.com/silverstripe/silverstripe-installer/blob/3.0/index.php
-
Re: SilverStripe 3.0 Beta 3 issue : "tinyMCE is not defined"

30 August 2012 at 11:12am
Simon's index.php update seems to solve the tinymce problem.
Before discovering this, I solved the problem by going to the HtmlEditorField class (in farmework/forms) and turning off using gzip.
Simply change $use_gzip on line 14 from true to false. -
Re: SilverStripe 3.0 Beta 3 issue : "tinyMCE is not defined"

30 August 2012 at 7:07pm
Thanks Simon. Will give it a try. Cheers
-
Re: SilverStripe 3.0 Beta 3 issue : "tinyMCE is not defined"

30 August 2012 at 8:18pm
Did you manage to resolve the issue ?
Even I am facing the same issue. What is the solution for this ? -
Re: SilverStripe 3.0 Beta 3 issue : "tinyMCE is not defined"

30 August 2012 at 9:54pm
I haven't tried the Simon's patch yet, hands are full today.
You have to make sure that the installation script finishes cleanly (normally redirecting you to your new installation).
If it ends warning that it cannot use clean urls then you need to make sure that the directives on your Apache is configured with the mod rewrite module enabled and that the <Directory> directive in the appropriate web server configuration file (httpd.conf -or vhosts.conf if you are using that) allow overrides. Here's my setup:
<Directory "/Library/WebServer/Documents/silverstripe">
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
Allow from all
</Directory>
(note that this is a dev setup and bit permissive. It might not be safe for production, depending on your needs)
Hope it helps. -
Re: SilverStripe 3.0 Beta 3 issue : "tinyMCE is not defined"

31 August 2012 at 10:39pm
Hi,
Thanks Simon for the fix. It works!!
| 1326 Views | ||
| Go to Top |


