Jump to content

Member Map


Recommended Posts

Posted

I get the following error (certificate) on the member map page:

[blocked] The page at 'https://www.jaguarforum.nl/forum/index.php/membermap/' was loaded over HTTPS, but ran insecure content from 'http://ecn.dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=7.0&mkt=nl_NL.UTF8': this content should also be loaded over HTTPS.

This causes the page to be blank, I edited the http in the mapprofile template to https but it still shows the above,,

https://www.jaguarfo....php/membermap/

any help is welcome

Gr

Dennis

Posted

I get the following error (certificate) on the member map page:

[blocked] The page at 'https://www.jaguarforum.nl/forum/index.php/membermap/' was loaded over HTTPS, but ran insecure content from 'http://ecn.dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=7.0&mkt=nl_NL.UTF8': this content should also be loaded over HTTPS.

This causes the page to be blank, I edited the http in the mapprofile template to https but it still shows the above,,

https://www.jaguarfo....php/membermap/

any help is welcome

Gr

Dennis

Did you rebuild cache after the change?

Posted

I get the following error (certificate) on the member map page:

[blocked] The page at 'https://www.jaguarforum.nl/forum/index.php/membermap/' was loaded over HTTPS, but ran insecure content from 'http://ecn.dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=7.0&mkt=nl_NL.UTF8': this content should also be loaded over HTTPS.

This causes the page to be blank, I edited the http in the mapprofile template to https but it still shows the above,,

https://www.jaguarfo....php/membermap/

any help is welcome

Gr

Dennis

Looking at the docs, there's a few things that need changing.

There's two lots of URLs for loading the JS, the one you've got there is for user profiles, there's another in /admin/applications_addon/other/membermap/modules_public/membermap/map.php

As well as changing to https://, you'll need to add &s=1 to the end of the URL to tell it to load it's own resources via https.

I have posted this to Tracker to implement. http://ipb.silvesterwebdesigns.com/tracker/issue-369-load-bing-api-via-https/

Posted

Never done this before... the Revert button is grayed out. Any help is appreciated.

Ok, something odd going on here then. Your CSS is from 1.x and your JavaScript is from 2.0.0 Beta 1. Have you upgraded to Beta 2 yet?

Posted

Looking at the docs, there's a few things that need changing.

There's two lots of URLs for loading the JS, the one you've got there is for user profiles, there's another in /admin/applications_addon/other/membermap/modules_public/membermap/map.php

As well as changing to https://, you'll need to add &s=1 to the end of the URL to tell it to load it's own resources via https.

I have posted this to Tracker to implement. http://ipb.silvesterwebdesigns.com/tracker/issue-369-load-bing-api-via-https/

hmm i now get this error:

[blocked] The page at 'https://www.jaguarforum.nl/forum/index.php/membermap/' was loaded over HTTPS, but ran insecure content from 'http://ecn.dev.virtualearth.net/mapcontrol/v7.0/7.0.20131202145924.46/js/en-us/veapicore.js': this content should also be loaded over HTTPS.

Posted

hmm i now get this error:

[blocked] The page at 'https://www.jaguarforum.nl/forum/index.php/membermap/' was loaded over HTTPS, but ran insecure content from 'http://ecn.dev.virtualearth.net/mapcontrol/v7.0/7.0.20131202145924.46/js/en-us/veapicore.js': this content should also be loaded over HTTPS.

That's because you need to append &s=1

I just copied all the Beta 2 files over

attachicon.gifScreen Shot 2014-01-22 at 11.14.41 AM.png

That is Beta 1, not Beta 2, your JavaScript file is also showing Beta 1 http://www.fujix-forum.com/public/js/jq.membermap.js

Posted

That's because you need to append &s=1

I did:

---

$this->registry->output->addToDocumentHead('javascript', $this->settings['public_cdn_url'].'js/jq.membermap.js');

---

		$this->registry->output->addToDocumentHead('javascript', 'https://ecn.dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=7.0&mkt=&s=1'.$this->lang->local);
		$this->registry->output->addToDocumentHead('javascript', $this->settings['public_cdn_url'].'js/jq.membermap.js');
Posted

hmm i now get this error:

[blocked] The page at 'https://www.jaguarforum.nl/forum/index.php/membermap/' was loaded over HTTPS, but ran insecure content from 'http://ecn.dev.virtualearth.net/mapcontrol/v7.0/7.0.20131202145924.46/js/en-us/veapicore.js': this content should also be loaded over HTTPS.

Ok, I looked at your page source, there's a typo, change it like this:

$this->registry->output->addToDocumentHead('javascript', 'https://ecn.dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=7.0&s=1&mkt='.$this->lang->local);

OK then where do I download Beta 2? Because I just downloaded this and used it for the install:

attachicon.gifScreen Shot 2014-01-22 at 11.18.57 AM.png

That is the latest beta, make sure you are uploading the contents of that folder, not that folder itself, you should be prompted to overwrite existing files

Posted

Great fixed it!!!!!

what should i do with the public template mapprofile is this one oke?:

<script type='text/javascript' src='https://ecn.dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=7.0&mkt=&s=1{$this->lang->local}'></script>
Posted

Great fixed it!!!!!

what should i do with the public template mapprofile is this one oke?:

<script type='text/javascript' src='https://ecn.dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=7.0&mkt=&s=1{$this->lang->local}'></script>

Change to:

<script type='text/javascript' src='https://ecn.dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=7.0&s=1&mkt={$this->lang->local}'></script>

Also as a side note, you may want to change your skin settings to use external style sheets.

Posted

This is really weird because the file I uploaded is beta 2. Here is a screen shot of the file I uploaded at 10:47 in the public/js directory:

attachicon.gifScreen Shot 2014-01-22 at 11.23.39 AM.png

The JS file shows beta 2 for me so that may well be a browser cache on that one, however from your screenshot of acp you have def not uploaded all of the files as it is beta 1 not beta 2 that is installed and if all files were there it would prompt you to update.

Posted

OK figured it out. :smile: Now, how to revert css?

It may be that IP.Board can't write to the CSS cache, in your ACP goto Support > Diagnostics > Permission Checker.

You should also be asked to run the upgrader now, to update to 2.0.0 Beta 2.

Guest
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...