0
Welcome Guest! Login
0 items Join Now

Gravatar https problem

  • Gravatar https problem

    Posted 13 years 8 months ago
    • I noticed a minor problem with the url used to get the gravatar image when accessing the back end over a secure connection.
      http://en.gravatar.com/site/implement/images/
      According to the above page on their website, when requesting a gravatar using a secure url, the request needs to use the url
      secure.gravatar.com/ ...
      instead of the usual
      www.gravatar.com/ ....
      In the current version of the template (1.6.3) it uses the url
      www.gravatar.com/ ... which fails.

      This isn't a problem that really bothers me now that I know why it's occurring. But it bothered enough to find out why it was misbehaving. :cheesy:
    • Andy Miller's Avatar
    • Andy Miller
    • Preeminent Rocketeer
    • Posts: 9919
    • Thanks: 96
    • Web Kahuna

    Re: Gravatar https problem

    Posted 13 years 8 months ago
    • ah! Didn' realize it needed a different url. Will fix in next version
  • Re: Gravatar https problem

    Posted 13 years 7 months ago
    • This is also occurring in the RokAdminAudit module. If anyone wants to temporarily fix this you can change the following code:

      For the Template Gravatar image
      Open administrator/templates/rt_missioncontrol_j15/lib/rtcore.class.php

      line 444, replace this:
      $url = $mode.'://www.gravatar.com/avatar/';

      with this:
      //$url = $mode.'://www.gravatar.com/avatar/';
      $url = ($mode == 'https') ? $mode.'://secure.gravatar.com/avatar/' : $mode.'://www.gravatar.com/avatar/';


      For the RokAdminAudit Module Gravatar image
      Open administrator/modules/mod_rokadminaudit/helper.php

      line 90, replace this:
      $url = $mode.'://www.gravatar.com/avatar/';

      with this:
      //$url = $mode.'://www.gravatar.com/avatar/';
      $url = ($mode == 'https') ? $mode.'://secure.gravatar.com/avatar/' : $mode.'://www.gravatar.com/avatar/';
    • Darren
    • Andy Miller's Avatar
    • Andy Miller
    • Preeminent Rocketeer
    • Posts: 9919
    • Thanks: 96
    • Web Kahuna

    Re: Gravatar https problem

    Posted 13 years 5 months ago
    • Just FYI, ths will be in the new 2.0 release

Time to create page: 0.053 seconds