Thank you for taking the time to try the Development Version. I have done more testing and the error messages listed in your first post seem to be related to the script errors I fixed in the Development Version dated 20150518 (or 20150519). I have three suggestions:
- Make sure you are running the Development Version. You can go to the Plugins/Installed Plugins screen and look for the date in the Description field. You can also go to the Settings/Media Library Assistant General tab and look for the date in the screen title.
- Make sure you have “refreshed” the Media/Library grid screen. Unless you click the browser’s “refresh page” button you will not get the corrected copy of the MLA scripts.
- If the problem persists, reproduce it with uncompressed scripts and post the updated error messages to this topic.
I hope suggestion 2. will resolve your issue. I do not change the version number of my Development Versions so the WordPress update process will work when the next official MLA version is released. I frequently forget to completely refresh the browser page when I make JavaScript changes, and I also forgot to alert you to this possibility as well. I regret the oversight.
If refreshing your browser page does not cure the problem, you can try suggestion 3. Edit your WordPress wp-config.php file and look for a line that defines the SCRIPT_DEBUG
constant. If you find it, set the value to true
. If you do not find it, add something like this to your wp-config.php
file:
/**
* Several constants are used to manage the loading, concatenating and compression of scripts and CSS:
* define('SCRIPT_DEBUG', true); loads the development (non-minified) versions of all scripts and CSS,
* and disables compression and concatenation,
* define('CONCATENATE_SCRIPTS', false); disables compression and concatenation of scripts and CSS,
* define('COMPRESS_SCRIPTS', false); disables compression of scripts,
* define('COMPRESS_CSS', false); disables compression of CSS,
* define('ENFORCE_GZIP', true); forces gzip for compression (default is deflate).
*/
define('SCRIPT_DEBUG', true); // true
This should go just above the /* That's all, stop editing! Happy blogging. */
line in the file.
I hope these suggestions either resolve the issue or give us more information to investigate. Thanks for your patience and your help.