Support has been upgraded!
The Support Forum is closed. Not to worry! Providing the top quality support you expect and we're known for will continue! We're not ending support, just changing where you submit requests. This will provide you with the best experience possible.
Premium Support
Have you purchased an addon for Connections such as one of our premium templates or extensions with a valid license and you need help?
Please open a Support Ticket in your user account.
Free Support
Are you using the free Connections plugin? Don't worry, you are still very important to us! We are still providing you with the same high quality support that we're known for.
Please open a new support topic in the WordPress support forums for Connections.
Tagged: 8.20
- This topic has 9 replies, 2 voices, and was last updated 5 years ago by
J.
-
AuthorPosts
-
06/05/2018 at 4:53 pm #464616
J
GuestIs this possible?
06/06/2018 at 8:52 am #464638Steven Zahm
KeymasterAre you certain this question pertains to Connections? It has no options in regards to forcing HTTPS.
06/06/2018 at 10:40 am #464644j
GuestMy apologies if this is the wrong forum, but I got here from clicking on the Support Forums link for “Connections Business Directory,” version 8.2 from my WP site. In the README documentation within the plugin, update 8.6.12 indicates “* OTHER: Replace
http
withhttps
for wordpress.org and connections-pro.com domain links.” Every time I put a link into one of my connections, the URL is autotmatically pre-pended with HTTPS, no matter what I do. This causes some of my active links to be directed to an error page when the linked domain does not support HTTPS.06/06/2018 at 11:05 am #464645Steven Zahm
KeymasterThe item in the changelog you are referencing are only links within Connections which resolve to this site and wp.org.
If you are speaking in regards to when you add a link URL address to an entry, Connections will prefix this the link with
http://
if it was not provided. It does not prefix withhttps
. I just double checked the code to make sure.Perhaps another plugin in forcing the https???
Please try the plugin conflict check.
Let me know what you learn
06/06/2018 at 11:51 am #464651J
GuestHmm. Well, I’ve disabled every plugin on my site, and then I re-activated only Connections Business Directory. It’s still doing the same thing, no matter what I put into the URL field under the Links for any connection, it is adding https://. If I put http://, it removes that and adds https://. Even if I remove http://www., it will still add https://. This only happens in this one specific area in the Connections URL field specifically, and no where else on my site. The Title field directly above the URL field does not do this, and my workaround right now is just telling people to highlight the Title and copy/paste to get to the link. It didn’t use to do this, this is new behavior within the past year or so, and it seems that even previously created links without HTTPS have been updated to HTTPS. Creating a brand new entry still exhibits the same behavior. Perhaps I’m doing something wrong, but I’ve been trying to figure this out for a few months now.
06/06/2018 at 12:05 pm #464652Steven Zahm
KeymasterThis is almost certainly being caused by something outside of Connections…
Please create a temp admin account using this plugin:
https://wordpress.org/plugins/temporary-login-without-password/
Send me the token URL, as a private reply, and I’ll take a closer look today.
06/07/2018 at 3:22 pm #464865J
GuestEverytime I post a URL in a reply, even a private reply, I get this message – *** Forbidden. Message seems to be spam. ***
06/07/2018 at 3:26 pm #464867Steven Zahm
KeymasterSend it to me via the Contact link at the very, very, bottom of this page.
06/08/2018 at 10:29 am #464997Steven Zahm
KeymasterI received the email with the token link.
I was able to track down the cause to the theme. You are not the first user to experience this issue:
Their issue was the opposite though, it was changing https to http.
The theme’s filter basically forces SSL or not on all URLs run thru the core WP function to escape (clean) URLs based on whether the calling page is SSL or not.
Such a filter is fine if all the links are only ever going to be internal to the site but as you’ve experience this is not good if another plugin uses URLs and they are external.
To correct this issue, I installed the Code Snippets plugin and added the following snippet:
function cn_remove_maya_clean_url_filter() { remove_filter( 'clean_url', 'yiw_ssl_url' ); } add_action( 'after_setup_theme', 'cn_remove_maya_clean_url_filter' );
This removes the filter added by the theme allowing WP to filter URLs normally again.
I’ll also include in this in the next Connections update.
Hope this helps!
06/08/2018 at 11:09 am #465000J
GuestThank you so much! That did resolve the issue. I really appreciate your time looking into this matter.
-
AuthorPosts
You must be logged in to reply to this topic.