marcilla
Forum Replies Created
-
Forum: Plugins
In reply to: [Download Manager] Fatal error after updateSame issue. Rolled back and running just fine.
Awaiting updates. ThanksForum: Installing WordPress
In reply to: js errors (visual editor, tinymce)I would try those things, but this is from a completely vanilla install of 4.01 from a fresh download, and these errors were present right out of the gates once setup was complete.
I did try those things on the original site (which was from an upgrade), but to no avail. That’s why I tried to replicate the error from a fresh install to see if it was a different issue, since a fresh install would rule out all the plugin and theme problems.
Forum: Installing WordPress
In reply to: js errors (visual editor, tinymce)Just as a followup, the errors I linked were from Chrome’s Java console. As for the Firefox console, the only error that seems to be firing is:
ReferenceError: tinymce is not defined
I did some comparisons to my other WP and noticed the requests looked different. In the actual source code on the php, the src references of the lines firing the errors appear to be looking for this:
../wp-includes/js/tinymce/wp-tinymce.php?ver..
or
../wp-includes/js/mediaelement/mediaelementplayer.min.css?ver..
(among others)While monitoring console of the problem site, the requests seem to be pointing to this instead (as shown in the errors of the intial post):
../wp-includes/js/?ver..
Is this a Rewrite issue or something? A bit stumped here…
Forum: Installing WordPress
In reply to: js errors (visual editor, tinymce)Here’s the current htaccess. Should something be adjusted?
RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # add a trailing slash to /wp-admin RewriteRule ^wp-admin$ wp-admin/ [R=301,L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule ^(wp-(content|admin|includes).*) $1 [L] RewriteRule ^(.*\.php)$ $1 [L] RewriteRule . index.php [L]