21
Hadesteam
Re: http to https
  • 2017/3/15 14:14

  • Hadesteam

  • Not too shy to talk

  • Posts: 162

  • Since: 2011/9/5 1


Is there someone who has already passed on https? I would like to ask how Google reacted to the change (positions in the search engine)?

Regards

22
aerograf
Re: http to https
  • 2017/3/15 15:52

  • aerograf

  • Quite a regular

  • Posts: 214

  • Since: 2017/1/7 1


After the transition, I did not notice the difference. More for yourself and go to html5.
Here's the topic:
Https://webmasters.googleblog.com/2014/08/https-as-ranking-signal.html
Https://support.google.com/webmasters/answer/34444?hl=en

23
Hadesteam
Re: http to https
  • 2017/5/20 19:30

  • Hadesteam

  • Not too shy to talk

  • Posts: 162

  • Since: 2011/9/5 1


https://www.google.pl/?gws_rd=ssl#q=site:kulturystyka.org.pl/modules/news/article.php

every module redirection works fine but in news module is blank page, xoops 2.5.7, module news: 1,68 RC1

category redirect works fine but single article is blank page ...

24
Hadesteam
Re: http to https
  • 2017/5/20 20:58

  • Hadesteam

  • Not too shy to talk

  • Posts: 162

  • Since: 2011/9/5 1


Yes i felt something will be wrong, otherwise it would be too beautiful;)

http://www.kulturystyka.org.pl/modules/news/article.php?storyid=392 - redirection 301 STOP WORKS and other articles

http://www.kulturystyka.org.pl/modules/news/ - WORKS

http://www.kulturystyka.org.pl/modules/news/index.php?storytopic=34 - all categories WORKS

maybe with this redirect code is something wrong?
$checkScheme = function () {
        
$s $_SERVER;
        
$parsed parse_url(XOOPS_URL);
        
$targetScheme $parsed['scheme'];
        
$currentScheme = (!empty($s['HTTPS']) && $s['HTTPS'] !== 'off') ? 'https' 'http';
        if (
!== strcmp($targetScheme$currentScheme)) {
            
$host $parsed['host'];
            
$port = isset($parsed['port']) ? ':' $parsed['port'] : '';
            
$fullUrl $targetScheme '://' $host $port $s['REQUEST_URI'];
            
header('Location: ' $fullUrltrue301);
            exit();
        }
    };
    
$checkScheme();


Now i switch off this code, because i'm afraid of google position, i will wait for your help

25
berndtausten
Re: http to https

Thanks to all! Very useful info.

26
xoobaru
Re: http to https
  • 2018/3/18 21:24

  • xoobaru

  • Just can't stay away

  • Posts: 494

  • Since: 2010/12/2


If you are seeing some images and not others, your server is telling your browser to no longer display the unsecured images.

You can verify by right clicking on the image or placeholder that does not display and the select your browsers Inspect option in the dropdown. Do you see a url that begins with http:// (unsecured) in the inspect code?

Now try this for an image you can see. Do you see https:// (secured) instead of http:// ?

If yes to both of your above tests, any changes made to httpd.conf or .htaccess to enforce TLS result in the browsers no longer being allowed to display unsecured content. That is because it will only honor secured content.

There is another possibility for this symptom.

If you renamed all http:// in your database dump to https:// as recommended above, but the external server associated with one of the url that you changed does not support https://, the associated content may not be served to your browser. It may even produce an error.

27
xoobaru
Re: http to https
  • 2018/3/18 21:35

  • xoobaru

  • Just can't stay away

  • Posts: 494

  • Since: 2010/12/2


Quote:

Hadesteam wrote:
Yes i felt something will be wrong, otherwise it would be too beautiful;)

http://www.kulturystyka.org.pl/modules/news/article.php?storyid=392 - redirection 301 STOP WORKS and other articles

http://www.kulturystyka.org.pl/modules/news/ - WORKS

http://www.kulturystyka.org.pl/modules/news/index.php?storytopic=34 - all categories WORKS

maybe with this redirect code is something wrong?
$checkScheme = function () {
        
$s $_SERVER;
        
$parsed parse_url(XOOPS_URL);
        
$targetScheme $parsed['scheme'];
        
$currentScheme = (!empty($s['HTTPS']) && $s['HTTPS'] !== 'off') ? 'https' 'http';
        if (
!== strcmp($targetScheme$currentScheme)) {
            
$host $parsed['host'];
            
$port = isset($parsed['port']) ? ':' $parsed['port'] : '';
            
$fullUrl $targetScheme '://' $host $port $s['REQUEST_URI'];
            
header('Location: ' $fullUrltrue301);
            exit();
        }
    };
    
$checkScheme();


Now i switch off this code, because i'm afraid of google position, i will wait for your help



This following t '://' allows php to build the url as either http:// if the system does not support TLS, or as https:// if it does support TLS.

For systems such as all my sites which are 100% hardccore SSL, I edit :// to https:// and no http: url construction is possible. Be judicioius. You still cannot use a https link to access an external resource that does not support https so you need a good overview and sense of your requirements, and what constraints you are willing to live with (some missing imagery or broken ssl lock display in the url bar).

Login

Who's Online

225 user(s) are online (142 user(s) are browsing Support Forums)


Members: 0


Guests: 225


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: Mar 31
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits