Hey guys! I'm having an issue with (I believe) WordPress sessions. I have a front-end user upload option that uses the WordPress media upload, which works flawlessly without https. When I switch the site over to https and try to upload media, the async-upload.php file is called (when uploading) and I am immediately logged out of the site, before the upload completes. Here is what I have in my wp-config file:
define('WP_HOME','https://www.domain.com');
define('WP_SITEURL','https://www.domain.com');
define('FORCE_SSL_LOGIN', true);
define('FORCE_SSL_ADMIN', true);
Again, if I use http the upload works flawlessly, but as soon as I switch to https I'm logged out as soon as I initiate the upload.
Any help would be appreciated!
Thanks!
~Sarah