justinianch
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] Error : Your preview doesn’t have any records to importI was able to fix this on my AWS Lightsail/bitnami instance.
- Bitnami uses a symlink (
/opt/bitnami/wordpress→/bitnami/wordpress) - The Events Calendar 6.16.4 added a path traversal security check that uses
realpath()to resolve symlinks - WordPress’s
wp_upload_dir()returns the symlinked path - The two paths never matched so every CSV was rejected with the misleading
invalid-csv-fileerror
The fix — setting
WP_CONTENT_DIRandWP_CONTENT_URLin wp-config.php — forces WordPress to use the real path, so they match.
This is what I added to wp-config.php:
define( ‘WP_CONTENT_DIR’, ‘/bitnami/wordpress/wp-content’ );
define( ‘WP_CONTENT_URL’, ‘https://www.SITENAME.com/wp-content’ );Forum: Plugins
In reply to: [The Events Calendar] Error : Your preview doesn’t have any records to importThe same thing is happening to me. Even if I try to import a file that previously worked, I get the “Your preview doesn’t have any records to import” error and can’t import the file.
Forum: Plugins
In reply to: [Gutenberg] Navigation block doesn’t work on mobileFor anyone who finds this via search, I finally ended up removing the Navigation Block from all my pages and replaced it with a built-in navigation menu. Using the Mega Menu plugin, I was able to style it and place it where I wanted on the pages via a php tag. I can place it anywhere else using a shortcode.
Forum: Plugins
In reply to: [Gutenberg] Navigation block doesn’t work on mobileOK. Glad it’s working on some devices! I checked on two iPhones, running iOS 16.1.1 and 16.6.1 and it’s not working on either of them.
Forum: Plugins
In reply to: [Gutenberg] Navigation block doesn’t work on mobileThanks for looking! It’s actually the Navigation Block embedded into the page a bit further down that isn’t working.
Forum: Themes and Templates
In reply to: [Futurio] WordPress Navigation Block not expanding on mobileI switched to the 2025 Theme and it’s not working there either, so I’ll close this out.
Forum: Plugins
In reply to: [Quotes and Tips by BestWebSoft] Display all Quotes/TipsRight, but I’d like to display all of the quotes in a category, not just one at a time. Is that possible?
Thanks!
- Bitnami uses a symlink (