Hi there,
If you had a custom directory, for example if you renamed your /wp-content directory to something different like /content, version 11.5 (soon to be launched) will now find any custom content directories and install correctly.
Previously the CJT plugin was using some older CONST values to generate a directory path such as PLUGINDIR in combination with ABSDIR. The constant PLUGINDIR is hardcoded in WP core to ‘wp-content’ which is why it will always look for that directory in its core.
However, there’s a different constant value in WP ie. WP_CONTENT_DIR which will always point to the content directory for the WP no matter the name of the directory. When you change the directory name from wp-content to something else, you have to mention that change and a new directory name in wp-config.php. WP_CONTENT_DIR automatically reads those new constants and updates the content dir name on the fly.
I am not 100% sure if this was your issue, but thought we would let you know of this development that fixes a related installation issue.
Thanks