Version: 2.2.0.105 (new installation)
Web: h**ps://battlefield-ng.com
I found several problems viewing images with SSL certificate, attach the photos to see.
If I find more problems with images, I'll put it here.
I follow his project for years, I like the way you have and the styles.
[SSL] Problems With Images And HTTP/HTTPS
Subject: Re: [SSL] Problems With Images And HTTP/HTTPS
I'm not sure about this but I got it from Google.. ;)
Try adding ONLY ONE OF THESE to your .htaccess file
AFTER:
RewriteEngine On
ADD:
OR
You may lock yourself out and have to clear your browser cache.
:mrgreen:
Try adding ONLY ONE OF THESE to your .htaccess file
AFTER:
RewriteEngine On
ADD:
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
OR
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R,L]
You may lock yourself out and have to clear your browser cache.
:mrgreen:
Subject: Re: [SSL] Problems With Images And HTTP/HTTPS
I think the best way would actually to use links without "http", as in "://imgur.com/...". I think it should work.
Subject: Re: [SSL] Problems With Images And HTTP/HTTPS
The original idea is to look and fix them manually, but can not find.
I had solved temporarily "Redirect permanent" but was not the same.
I want to change it and try to put something like:
Fixed 1 of 3:
File: includes/functions_bbcode.php - Line 91 (smilies of "Quick Reply")
I had solved temporarily "Redirect permanent" but was not the same.
I want to change it and try to put something like:
Code: [Download] [Hide]
- $server_protocol = ($config['cookie_secure']) ? 'h**ps://' : 'h**p://';
Fixed 1 of 3:
File: includes/functions_bbcode.php - Line 91 (smilies of "Quick Reply")
Code: [Download] [Hide]
- 'URL' => 'h**p://' . $host . $config['script_path'] . $config['smilies_path'] . '/' . $row['smile_url'],
Subject: Re: [SSL] Problems With Images And HTTP/HTTPS
We've also got
functions_post.php
Line 729:
And if we change it to the "relative" path.
It should work.
There's also this to deal with:
class_cache_extends.php
I don't know if there is a global way to change all of this, so MG or informpro would be the ones to help sort this out.. ;)
PlayerX wrote: [View Post]
We've also got
functions_post.php
Line 729:
'SMILEY_IMG' => 'http://' . $host . $config['script_path'] . $config['smilies_path'] . '/' . $rowset[$i]['smile_url'],
And if we change it to the "relative" path.
'SMILEY_IMG' => './' . $config['smilies_path'] . '/' . $rowset[$i]['smile_url'],
It should work.
There's also this to deal with:
class_cache_extends.php
function obtain_smileys($from_cache = false)
{
global $db, $config;
if (($smileys = $this->get('_smileys')) === false)
{
$smileys = array();
$smileys_path = create_server_url() . $config['smilies_path'] . '/';
$sql = "SELECT code, smile_url FROM " . SMILIES_TABLE . " ORDER BY smilies_order";
$result = $from_cache ? $db->sql_query($sql, 0, 'smileys_') : $db->sql_query($sql);
while ($row = $db->sql_fetchrow($result))
{
$smileys[] = array(
'code' => $row['code'],
'replace' => '<img src="' . $smileys_path . $row['smile_url'] . '" alt="" />'
);
}
$db->sql_freeresult($result);
$this->put('_smileys', $smileys);
}
return $smileys;
}
{
global $db, $config;
if (($smileys = $this->get('_smileys')) === false)
{
$smileys = array();
$smileys_path = create_server_url() . $config['smilies_path'] . '/';
$sql = "SELECT code, smile_url FROM " . SMILIES_TABLE . " ORDER BY smilies_order";
$result = $from_cache ? $db->sql_query($sql, 0, 'smileys_') : $db->sql_query($sql);
while ($row = $db->sql_fetchrow($result))
{
$smileys[] = array(
'code' => $row['code'],
'replace' => '<img src="' . $smileys_path . $row['smile_url'] . '" alt="" />'
);
}
$db->sql_freeresult($result);
$this->put('_smileys', $smileys);
}
return $smileys;
}
I don't know if there is a global way to change all of this, so MG or informpro would be the ones to help sort this out.. ;)
Subject: Re: [SSL] Problems With Images And HTTP/HTTPS
If you have a patch you want to submit, that'd be sweet!
Subject: Re: [SSL] Problems With Images And HTTP/HTTPS
Thanks for reporting.
I will fix everything if you could help to keep track of all the changes.
I will fix everything if you could help to keep track of all the changes.
Subject: Re: [SSL] Problems With Images And HTTP/HTTPS
Recommend that when installing IP, place a checkbox for SSL, because it would have to change within mysql.
'cookie_secure'
'cookie_secure'
Subject: Re: [SSL] Problems With Images And HTTP/HTTPS
Thank you for the suggestion, I'll try to check if I can do that automatically.
PlayerX wrote: [View Post]
Thank you for the suggestion, I'll try to check if I can do that automatically.
Page 1 of 1
You cannot post new topicsYou cannot reply to topics
You cannot edit your posts
You cannot delete your posts
You cannot vote in polls
You cannot attach files
You can download files
You cannot post calendar events
This is a "Lo-Fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Powered by Icy Phoenix based on phpBB
Generation Time: 0.3525s (PHP: 47% SQL: 53%)
SQL queries: 16 - Debug Off - GZIP Enabled