Gogster
Forum Replies Created
-
Yes, that plugin works. Thank you for your prompt attention.
Hi, it’s a regular single-site install. I can confirm that it is in relation to the redis object cache plugin https://en-gb.ww.wp.xz.cn/plugins/redis-cache/. If I delete object-cache.php I can access the admin again but if I re-enable object caching I’m back to square one.
I tried disabling SB and enabling redis cache, flush the cache then re-enabling SB but the issue came back so I cannot have object caching without breaking the site now.
I had the same problem where all of the files in the WP Media Uploader were showing http:// not https:// for the file url. I found the problem to be because I’d renamed the wp-content folder using iThemes Security plugin. I did this long before I needed to secure the site with SSL.
I eventually found the following line in wp-config.php which was causing the problem:
define( 'WP_CONTENT_URL', 'http://www.example.com/new-content-folder' );
and replaced it with:
define( 'WP_CONTENT_URL', 'https://www.example.com/new-content-folder' );Hope this helps.
Forum: Plugins
In reply to: [Responsive Lightbox & Gallery] Non-SSL-Links on SSL-Optional sitesI’ve just come across the same issue. In my case the problem is due to the lightbox script (I was using Swipebox) which isn’t visible in the admin editor.
I went into the js file wp-content > plugins > responsive-lightbox > assets > (choose your script) and modified the script in there.
Of course, this will probably cause issues when the plugin is updated but at least it’s a temporary fix.
Forum: Themes and Templates
In reply to: [Hueman] PHP Warning: wp-includes/functions.php on line 1366Forum: Themes and Templates
In reply to: [Hueman] PHP Warning: wp-includes/functions.php on line 1366I had the exact same problem today after moving a website from one server to another. The problem was the setting for “upload_path” in wp_options table (I couldn’t access admin section to change it).
Mine was set to the old server path, I updated it and it worked.
Yours should probably be something like /var/www/vhosts/bujjon.com/httpdocs/wp-content/uploads
(assuming that WP is installed in root). HTH