vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Forum and Server Management (https://vborg.vbsupport.ru/forumdisplay.php?f=232)
-   -   Who is moving to https? (https://vborg.vbsupport.ru/showthread.php?t=323946)

RichieBoy67 01-05-2017 07:12 PM

Quote:

Originally Posted by Stratis (Post 2580395)
I had a horrible experience, I turn my forum to htpps, all was fine.
until i made a logout. I saw that as a guest all my forums are centering (all post, text and images was in center, when I loged in all is ok again.


Has any one this experience?. I panic for a little and back my forum to http.
Problem with centering was in all browsers and all skin, even standar skin.

Sounds like the css url is still http://

Try updating styles too in the maintenance section.

Stratis 01-05-2017 07:20 PM

Quote:

Originally Posted by RichieBoy67 (Post 2580396)
Try updating styles too in the maintenance section.

I did that, Why when I log, than it is all as supposed to be.
Secure is ok in both situations, that means all guests will see my forum centered
Thank you for the answers

In Omnibus 01-05-2017 07:40 PM

Quote:

Originally Posted by Domenico (Post 2580318)
Everybody, just do it!

Are you paying for it? Some of us can't use use free SSL certificates.

RichieBoy67 01-05-2017 07:43 PM

Quote:

Originally Posted by Stratis (Post 2580397)
I did that, Why when I log, than it is all as supposed to be.
Secure is ok in both situations, that means all guests will see my forum centered
Thank you for the answers

Did you try searching your templates and plug ins for http:// ??

--------------- Added [DATE]1483652671[/DATE] at [TIME]1483652671[/TIME] ---------------

Quote:

Originally Posted by In Omnibus (Post 2580398)
Are you paying for it? Some of us can't use use free SSL certificates.

Well you can get a paid one for like $10 a year..There are free ones as well. Why can't you get a free one?

Paul M 01-05-2017 07:56 PM

Quote:

Originally Posted by In Omnibus (Post 2580398)
Are you paying for it? Some of us can't use use free SSL certificates.

Why cant you use free ones ?

kylek 01-05-2017 08:45 PM

Quick question - if you had google analytic's running before the switch to https do you have to start and make a new account on google or can you just go into your google account and change the urls over to https?

RichieBoy67 01-05-2017 08:46 PM

Not not analytics but you will need to create a new webmaster tools account.

In Omnibus 01-06-2017 12:21 AM

Quote:

Originally Posted by Paul M (Post 2580401)
Why cant you use free ones ?

The web host doesn't allow it.

RichieBoy67 01-06-2017 12:26 AM

Quote:

Originally Posted by Stratis (Post 2580397)
I did that, Why when I log, than it is all as supposed to be.
Secure is ok in both situations, that means all guests will see my forum centered
Thank you for the answers

Make sure you are at 4.2.3 or above..

Dave 01-06-2017 12:59 AM

Quote:

Originally Posted by In Omnibus (Post 2580408)
The web host doesn't allow it.

Then it's honestly time to find a new host...

RichieBoy67 01-06-2017 01:30 AM

Quote:

Originally Posted by Dave (Post 2580410)
Then it's honestly time to find a new host...

They probably want to force her to buy one through them. :eek:

Stratis 01-06-2017 06:44 AM

Quote:

Originally Posted by RichieBoy67 (Post 2580399)
Did you try searching your templates and plug ins for http:// ??

I found the problem, I had an announcement about turning to https, I had these two in wrong order, so when user loged out there was a problem, now it is ok.
<div align="center">xxxxxx<div/>
<vb:if condition="$show['member']">xxxxxxxxx</vb:if>


Quote:

Originally Posted by RichieBoy67 (Post 2580409)
Make sure you are at 4.2.3 or above..

For now I am in vb4.2.0 (Is there a problem with https??

Quote:

Originally Posted by RichieBoy67 (Post 2580404)
Not not analytics but you will need to create a new webmaster tools account.

Is this correct? I must do that to?? Why?
I only insert the url of my forum with HTTPS, so I I have both. Is this wrong?



Thank you Richie for you help :)

--------------- Added 06 Jan 2017 at 20:04 ---------------

Quote:

Originally Posted by Kane@airrifle (Post 2580336)
SQL query it away?
Code:

UPDATE post SET pagetext = REPLACE(pagetext,
'http://path-to-image-store.com/',
'https://path-to-image-store.com/');

Take a backup etc..

How exactly I will change this to https

http://www.MYSITE/users/10/Down12.png
http://www.MYSITE/users/133/up13.png


All links are the same until here,
http://www.MYSITE/users/


Thanks

RichieBoy67 01-06-2017 04:45 PM

Yes you need to add it to google webmaster tools. They treat it like a brand new url basically.

Don't know about that url but you should be able to find it either in a template or phpadmin. Could be a signature image.

--------------- Added [DATE]1483729061[/DATE] at [TIME]1483729061[/TIME] ---------------

Quote:

Originally Posted by Kane@airrifle (Post 2580336)
SQL query it away?
Code:

UPDATE post SET pagetext = REPLACE(pagetext,
'http://path-to-image-store.com/',
'https://path-to-image-store.com/');

Take a backup etc..

This also needs to be done for phrases table, users table for signatures and any place else where a full local http:// url could be hiding.:up:

Kane@airrifle 01-06-2017 05:42 PM

Quote:

How exactly I will change this to https

http://www.MYSITE/users/10/Down12.png
http://www.MYSITE/users/133/up13.png


All links are the same until here,
http://www.MYSITE/users/
What is the source of the URL; is it in posts, signatures, some other table?

Stratis 01-06-2017 05:45 PM

Quote:

Originally Posted by Kane@airrifle (Post 2580454)
What is the source of the URL; is it in posts, signatures, some other table?

images in posts [IMG]

Thanks

Kane@airrifle 01-06-2017 05:54 PM

Quote:

Originally Posted by Stratis (Post 2580455)
images in posts [IMG]

Thanks

Assuming "mysite" is your forum url ...

Code:

UPDATE post SET pagetext = REPLACE(pagetext,
'http://www.mysite/users/',
'https://www.mysite/users/');

Usual backup warnings etc...

Paul M 01-06-2017 05:54 PM

Quote:

Originally Posted by In Omnibus (Post 2580408)
The web host doesn't allow it.

Seriously ?

Get a new host, who you get your SSL certificate from is non of their business.

In Omnibus 01-06-2017 09:09 PM

Quote:

Originally Posted by Paul M (Post 2580459)
Seriously ?

Get a new host, who you get your SSL certificate from is non of their business.

Easier said than done when you've paid for a year of dedicated hosting in advance. I would still like a reasonable explanation as to why Google considers this a necessity for sites which contain absolutely zero personal identifying information and conduct zero financial transactions. I'm sure we won't receive one. But there is something more to their insistence on SSL than our security. I think their advertisers are requesting or requiring it. Otherwise, I cannot imagine they would care in the least.

RichieBoy67 01-06-2017 09:22 PM

What is dedicated hosting?

You would have to ask Google, Apple, Microsoft, Mozilla and others for an explanation.

blind-eddie 02-28-2017 12:56 PM

What a pita https is.
I clicked let's encrypt within my cpanel and went to working on changing all http to https. My site is heavily modified and still shows "Your connection to this site is not fully secure".
I went through all my plugins editing and find a few refuse to use https.
Having trouble wrapping my head around how to get some addons to accept https and others refuse to function using https....
Upgrading to the latest stable vb4 would be set up default https?

RichieBoy67 02-28-2017 01:28 PM

This should help..

https://www.whynopadlock.com/

And no, I do not think just doing an upgrade would save you though the latest beta works well with https:// it is not going to change your content.

blind-eddie 02-28-2017 01:56 PM

Thanks Richie, I have been fixing links shown from whynopadlock. Exhausting.

RichieBoy67 02-28-2017 02:00 PM

Did you use this bro?

UPDATE post SET pagetext = REPLACE(pagetext, 'http://path-to-image-store.com/', 'https://path-to-image-store.com/');

blind-eddie 02-28-2017 02:13 PM

No, do I need to? I seem to be having an issue with only one image that I can not find anywhere.

Now to get a couple addons working properly with https..

RichieBoy67 02-28-2017 04:51 PM

Check your signature table.. I found many non compliant images there

I went into phpadmin and did a search there for the non ssl urls..

blind-eddie 02-28-2017 05:06 PM

I think I am winning.
I have one image that I cannot find anywhere.
http://anti-flag.com/forum/public/st...xclamation.png

Any thoughts on finding it?

Kane@airrifle 02-28-2017 05:42 PM

It's in your css somewhere - search in styles -
Code:

/* format vBCode table */
)

Code:

#image {
  line-height: 1.5em;
  list-style-image: url(http://anti-flag.com/forum/public/style_images/antiflag/exclamation.png);
}


blind-eddie 02-28-2017 06:01 PM

yep....it was there. Only place I did not search.
Thank you.

Kane@airrifle 02-28-2017 06:30 PM

Great. All you need to do now is convert your ad servers to get rid of the mixed content warnings.

blind-eddie 03-02-2017 03:22 PM

I am glad I switched to https.

blind-eddie 03-16-2017 10:13 PM

Did you have any issues with (vb4) quick reply or the bbcodes showing page as insecure?

CAG CheechDogg 03-16-2017 11:23 PM

I have and had no issues with either eddie ... I have been on https for the last 5 years now

blind-eddie 03-17-2017 12:57 AM

odd, on a friends vb4 site everything is perfect but only when the quick reply is shut off.
I turn it back on, the page shows insecure.
I checked and edited the custom bbcode to https, checked all default bbcode, thoughts?

Kane@airrifle 03-17-2017 10:28 AM

Quote:

Originally Posted by blind-eddie (Post 2583970)
odd, on a friends vb4 site everything is perfect but only when the quick reply is shut off.
I turn it back on, the page shows insecure.
I checked and edited the custom bbcode to https, checked all default bbcode, thoughts?

Double check the button image paths.

blind-eddie 03-17-2017 10:36 AM

Triple checked... oddly enough, when adding insecure https URL to https://www.whynopadlock.com it shows the link as secure. I am baffled.

Kane@airrifle 03-17-2017 11:17 AM

whynopadlock has limitations. For example, only registered members see the QR box - or any other elements you have chosen to hide from guest viewing

CAG CheechDogg 03-17-2017 03:35 PM

Very strange I don't see anywhere on my site what would possibly cause that either ...

--------------- Added [DATE]1489768605[/DATE] at [TIME]1489768605[/TIME] ---------------

Can you provide a link to yer' friends site ...

blind-eddie 03-17-2017 06:19 PM

Quote:

Originally Posted by CAG CheechDogg (Post 2583993)
Very strange I don't see anywhere on my site what would possibly cause that either ...

--------------- Added [DATE]1489768605[/DATE] at [TIME]1489768605[/TIME] ---------------

Can you provide a link to yer' friends site ...

I got it worked out Cheech, I started my own thread about it even though I hijacked this one pretty good.

gsk8 09-28-2017 12:52 PM

Hi all!

Did anyone encounter problems with avatars not working after migrating to https? The images are in the directory, but when viewing the avatar manager (and the individual users), they are not showing up. Stumped here...

Am using WP and VB and am wondering how to fix my .htaccess as well.

Paula

RichieBoy67 09-28-2017 08:32 PM

It has been awhile but I used replacement variables. I believe that fixed the avatars.

I used this in htaccess:
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteCond %{HTTP:X-Forwarded-Proto} !https [NC]
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

For wordpress there is a plug in. I will look at one of my sites and let you know what it is. I cannot recall right now.

##
The wordpress plug in is Really Simple SSL

You may still have to do work though to fix it depending on plug ins, themes, widgets, etc. I did on a couple of my sites.


All times are GMT. The time now is 09:37 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01502 seconds
  • Memory Usage 1,837KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (5)bbcode_code_printable
  • (22)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete