English version - [General] SSL problem
evilmc - 22-08-2014, 15:58 Temat postu: [General] SSL problem Hello,
I buy SSL Comodo for my forum and now I have problem with ADS and Youtube, don't show embed links.
I use bbcode for Youtube links, and now don't show embed videos, and for Google Ads don't show banners.
How to fix this problem?
[ Added: 23-08-2014, 20:28 ]
any idea?
[ Added: 24-08-2014, 13:25 ]
I fix problem with Youtube links:
OPEN .htaccess
ADD:
Kod: | RewriteEngine on
RewriteBase /
RewriteRule ^youtube/(.*)$ https://www.youtube.com/$1 [L] |
And change file includes/bbcode.php
ADD both lines with http and htpps:
Kod: |
$patterns[] = "#\[youtube\]http://(?:www\.)?youtube.com/watch\?v=([0-9A-Za-z-_]{11})[^[]*\[/youtube\]#is";
$replacements[] = $bbcode_tpl['youtube'];
$patterns[] = "#\[youtube\]https://(?:www\.)?youtube.com/watch\?v=([0-9A-Za-z-_]{11})[^[]*\[/youtube\]#is";
$replacements[] = $bbcode_tpl['youtube'];
|
And change bbcode in theme like this:
Kod: | <!-- BEGIN youtube -->
<object width="650" height="350">
<param name="movie" value="https://www.example.com/youtube/v/{YOUTUBEID}"></param><param name="wmode" value="transparent"></param>
<embed src="https://www.example.com/youtube/v/{YOUTUBEID}" type="application/x-shockwave-flash" wmode="transparent" width="650" height="350"></embed>
</object>
<!-- END youtube --> |
I fix problem with Adsense
Kod: | https://support.google.com/adsense/answer/10528?hl=en |
|
|
|