kimdre
Forum Replies Created
-
It seems to work!
However the issues described in this issue still persist -> https://ww.wp.xz.cn/support/topic/404-errors-on-asset-load/
I also still have this issue with my bitnami wordpress container and the latest versions 3.39 and 3.41.
My current workaround is using version 3.37 until it is fixed. You can download the package and install it to replace it with the currently installed version.
To download the old version use this url: https://downloads.wp.xz.cn/plugin/nextgen-gallery.3.37.zip
Unfortunately, neither option worked for me. 🙁
I also tried your code with the new version 3.41 but got the following error:
RuntimeException thrown /bitnami/wordpress/wp-content/plugins/nextgen-gallery/products/photocrati_nextgen/modules/nextgen_basic_album/templates/extended/default-view.php is not a valid MVC templateOk i was able to fix the issues by doing the following:
- The plugin tried to load all assets from the absolute path of the webserver for some reason:
/bitnami/wordpress/wp-contentinstead of/wp-content- I was able to fix this by rewriting the path with a .htaccess rule:
RedirectMatch 301 ^/bitnami/wordpress/wp-content/(.*) /wp-content/$1
- I was able to fix this by rewriting the path with a .htaccess rule:
- The plugins tries to load asses from an insecure http connection and thefore gets blocked because of Mixed Content errors
- I was able to fix this by also adding a .htaccess rule:
Header always set Content-Security-Policy: upgrade-insecure-requests
- I was able to fix this by also adding a .htaccess rule:
Please let the devs of this plugin look into these issues, as this is not how to load assets and violates security best-practices and your plugin is the only one I have installed with this behaviour.
- This reply was modified 2 years, 8 months ago by kimdre.
I already tried to reinstall the plugin and cleared any cache.
The settings in the admin panel also don’t seem to show up/work.
- The plugin tried to load all assets from the absolute path of the webserver for some reason: