@basb -Does your forum work as expected for an entire session by accessing https://www.ssl-id.de/forum.xxxxx.de/? Can you browse the forum and does the url stay at https://www.ssl-id.de/forum.xxxxx.de or does it redirect to your sub url? I could add a https suffix url variable to the code base that would be appended around line 170 of the default.php file if the protocol is https. Not 100% sure how it would work in your case. Let me know.
@basb - When you say it doesn't work, are you getting the same parse error??? Can you post the body of that function here so I can check it... I assume you have cleared your cache etc.
@basb - Any chance you could provide a link to see for myself what's happening? I will try to have a look at this in the next couple of days, but I imagine it's probably to do with the WebRoot and Domain methods of the /library/core/class.url.php file... Might not be possible with your setup.
The sign in popup was doing my head in. I created a custom plugin and added this code to my header in order to remove the popup class. Works like a charm now!
class CustomJSPlugin extends Gdn_Plugin {
public function Base_Render_Before(&$Sender)
{
$JavaScript = '
$(document).ready(function() {
$("#Frame ul li a").removeClass("SignInPopup");
});
';
// Send it to the Header of the page
$Sender->Head->AddString($JavaScript);
}
}
On another note, I was running into trouble with the sslcontrollerhelper.js file. Basically, when I loaded up the dashboard I was getting errors about my https pages being only partially secured. Running a diagnostic in firebug, I can see the request:
I thought that Minify might be causing the issue and with Minify disabled, the site checks out as being secure but the diagnostics still show this request as a returning a 404. Something to be concerned about?
Comments
https://www.ssl-id.de/forum.xxxxx.de/? Can you browse the forum and does the url stay at https://www.ssl-id.de/forum.xxxxx.de or does it redirect to your sub url? I could add a https suffix url variable to the code base that would be appended around line 170 of the default.php file if the protocol is https. Not 100% sure how it would work in your case. Let me know.
Thanks!
change line 168 of the plugin's default.php to read...
if(substr($URL, 0, 8) == $this->_HTTPS_PROTOCOL) $URL = www.ssl-id.de/ . substr($URL, 8);
and enable the plugin.
Let me know if that works for you.
Parse error: syntax error, unexpected '.' in /mnt/web2/33/57/51669757/htdocs/mannoderquadrat/forum/plugins/SSLControllers/default.php on line 168
if(substr($URL, 0, 8) == $this->_HTTPS_PROTOCOL) $URL = 'www.ssl-id.de/' . substr($URL, 8);
Thanks for you help!
I will try to have a look at this in the next couple of days, but I imagine it's probably to do with the WebRoot and Domain methods of the /library/core/class.url.php file... Might not be possible with your setup.
But the latest release of vanilla seems to work with it!
The sign in popup was doing my head in. I created a custom plugin and added this code to my header in order to remove the popup class. Works like a charm now!
class CustomJSPlugin extends Gdn_Plugin {
$(document).ready(function() { $("#Frame ul li a").removeClass("SignInPopup"); });public function Base_Render_Before(&$Sender)
{
$JavaScript = '
';
// Send it to the Header of the page
$Sender->Head->AddString($JavaScript);
}
}
On another note, I was running into trouble with the sslcontrollerhelper.js file. Basically, when I loaded up the dashboard I was getting errors about my https pages being only partially secured. Running a diagnostic in firebug, I can see the request:
GET getwebroot, which makes a request to https://%domain-name%/plugin/getwebroot
is returning a 404.
I thought that Minify might be causing the issue and with Minify disabled, the site checks out as being secure but the diagnostics still show this request as a returning a 404. Something to be concerned about?